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