ICredentialsByHost.GetCredential(String, Int32, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定的主机、端口和身份验证协议的凭据。
public:
System::Net::NetworkCredential ^ GetCredential(System::String ^ host, int port, System::String ^ authenticationType);
public System.Net.NetworkCredential GetCredential (string host, int port, string authenticationType);
public System.Net.NetworkCredential? GetCredential (string host, int port, string authenticationType);
abstract member GetCredential : string * int * string -> System.Net.NetworkCredential
Public Function GetCredential (host As String, port As Integer, authenticationType As String) As NetworkCredential
参数
- host
- String
对客户端进行身份验证的主机。
- port
- Int32
客户端将与之通信的 host
上的端口。
- authenticationType
- String
身份验证协议。
返回
指定的主机、端口和身份验证协议的 NetworkCredential;如果指定的主机、端口和身份验证协议没有可用的凭据,则为 null
。
注解
的值 authType
对应于 IAuthenticationModule.AuthenticationType 属性。