mscorlib(4.0.0.0) API with additions
ICredentialsByHost.cs
1 namespace System.Net
2 {
4  [global::__DynamicallyInvokable]
5  public interface ICredentialsByHost
6  {
12  [global::__DynamicallyInvokable]
13  NetworkCredential GetCredential(string host, int port, string authenticationType);
14  }
15 }
NetworkCredential GetCredential(string host, int port, string authenticationType)
Returns the credential for the specified host, port, and authentication protocol.
Provides the interface for retrieving credentials for a host, port, and authentication type.
Provides credentials for password-based authentication schemes such as basic, digest,...