using System; namespace System.Net { /// Provides the base authentication interface for retrieving credentials for Web client authentication. // Token: 0x0200023D RID: 573 public interface ICredentials { /// Returns a object that is associated with the specified URI, and authentication type. /// The that is associated with the specified URI and authentication type, or, if no credentials are available, null. /// The that the client is providing authentication for. /// The type of authentication, as defined in the property. // Token: 0x0600146C RID: 5228 NetworkCredential GetCredential(global::System.Uri uri, string authType); } }