| 123456789101112131415161718 |
- //
- // System.Net.ICredential.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- // Duncan Mak ([email protected])
- //
- namespace System.Net {
- // <remarks>
- // Base authentication interface for Web clients.
- // </remarks>
- public interface ICredentials
- {
- NetworkCredential GetCredential (Uri uri, string authType);
- }
- }
|