mscorlib(4.0.0.0) API with additions
ICredentials.cs
1 namespace System.Net
2 {
4  [global::__DynamicallyInvokable]
5  public interface ICredentials
6  {
11  [global::__DynamicallyInvokable]
12  NetworkCredential GetCredential(Uri uri, string authType);
13  }
14 }
Provides the base authentication interface for retrieving credentials for Web client authentication.
Definition: ICredentials.cs:5
NetworkCredential GetCredential(Uri uri, string authType)
Returns a T:System.Net.NetworkCredential object that is associated with the specified URI,...
Provides credentials for password-based authentication schemes such as basic, digest,...
Provides an object representation of a uniform resource identifier (URI) and easy access to the parts...
Definition: Uri.cs:19