NegotiateStream.AuthenticateAsClient 方法

定义

客户端调用此方法,以便对客户端/服务器连接中的客户端及服务器(可选)进行身份验证。

重载

AuthenticateAsClient()

客户端调用此方法,以便对客户端/服务器连接中的客户端及服务器(可选)进行身份验证。

AuthenticateAsClient(NetworkCredential, String)

客户端调用此方法,以便对客户端/服务器连接中的客户端及服务器(可选)进行身份验证。 身份验证过程使用指定的客户端凭据。

AuthenticateAsClient(NetworkCredential, ChannelBinding, String)

客户端调用此方法,以便对客户端/服务器连接中的客户端及服务器(可选)进行身份验证。 身份验证过程使用指定的客户端凭据和通道绑定。

AuthenticateAsClient(NetworkCredential, String, ProtectionLevel, TokenImpersonationLevel)

客户端调用此方法,以便对客户端/服务器连接中的客户端及服务器(可选)进行身份验证。 身份验证过程使用指定的凭据和身份验证选项。

AuthenticateAsClient(NetworkCredential, ChannelBinding, String, ProtectionLevel, TokenImpersonationLevel)

客户端调用此方法,以便对客户端/服务器连接中的客户端及服务器(可选)进行身份验证。 身份验证过程使用指定的凭据、身份验证选项和通道绑定。

AuthenticateAsClient()

Source:
NegotiateStream.cs
Source:
NegotiateStream.cs
Source:
NegotiateStream.cs

客户端调用此方法,以便对客户端/服务器连接中的客户端及服务器(可选)进行身份验证。

public:
 virtual void AuthenticateAsClient();
public virtual void AuthenticateAsClient ();
abstract member AuthenticateAsClient : unit -> unit
override this.AuthenticateAsClient : unit -> unit
Public Overridable Sub AuthenticateAsClient ()

例外

身份验证失败。 可以使用此对象尝试重新进行身份验证。

身份验证失败。 可以使用此对象尝试重新进行身份验证。

此对象已关闭。

已进行了身份验证。

- 或 -

此流先前被尝试作为服务器进行身份验证。 不能尝试将该流作为客户端重新进行身份验证。

注解

身份验证使用客户端的 DefaultCredentials。 未为服务器指定服务主体名称 (SPN) 。 模拟级别为 Identification,安全级别为 EncryptAndSign,请求相互身份验证。 类 NegotiateStream 将构造用于相互身份验证的 SPN。

身份验证成功后,必须检查 IsEncryptedIsSigned 属性来确定 所使用的NegotiateStream安全服务。 IsMutuallyAuthenticated检查 属性以确定是否发生了相互身份验证。

如果身份验证失败,则会收到 AuthenticationExceptionInvalidCredentialException。 在这种情况下,可以使用其他凭据重试身份验证。

适用于

AuthenticateAsClient(NetworkCredential, String)

Source:
NegotiateStream.cs
Source:
NegotiateStream.cs
Source:
NegotiateStream.cs

客户端调用此方法,以便对客户端/服务器连接中的客户端及服务器(可选)进行身份验证。 身份验证过程使用指定的客户端凭据。

public:
 virtual void AuthenticateAsClient(System::Net::NetworkCredential ^ credential, System::String ^ targetName);
public virtual void AuthenticateAsClient (System.Net.NetworkCredential credential, string targetName);
abstract member AuthenticateAsClient : System.Net.NetworkCredential * string -> unit
override this.AuthenticateAsClient : System.Net.NetworkCredential * string -> unit
Public Overridable Sub AuthenticateAsClient (credential As NetworkCredential, targetName As String)

参数

credential
NetworkCredential

用于确立客户端身份的 NetworkCredential

targetName
String

唯一标识要进行身份验证的服务器的服务主体名称 (SPN)。

例外

身份验证失败。 可以使用此对象尝试重新进行身份验证。

身份验证失败。 可以使用此对象尝试重新进行身份验证。

此对象已关闭。

已进行了身份验证。

- 或 -

此流先前被尝试作为服务器进行身份验证。 不能尝试将该流作为客户端重新进行身份验证。

targetNamenull

注解

模拟级别为 Identification,安全级别为 EncryptAndSign,请求相互身份验证。 类 NegotiateStream 将构造用于相互身份验证的 SPN。

身份验证成功后,必须检查 IsEncryptedIsSigned 属性来确定 所使用的NegotiateStream安全服务。 IsMutuallyAuthenticated检查 属性以确定是否发生了相互身份验证。

适用于

AuthenticateAsClient(NetworkCredential, ChannelBinding, String)

Source:
NegotiateStream.cs
Source:
NegotiateStream.cs
Source:
NegotiateStream.cs

客户端调用此方法,以便对客户端/服务器连接中的客户端及服务器(可选)进行身份验证。 身份验证过程使用指定的客户端凭据和通道绑定。

public:
 virtual void AuthenticateAsClient(System::Net::NetworkCredential ^ credential, System::Security::Authentication::ExtendedProtection::ChannelBinding ^ binding, System::String ^ targetName);
public virtual void AuthenticateAsClient (System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding? binding, string targetName);
public virtual void AuthenticateAsClient (System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName);
abstract member AuthenticateAsClient : System.Net.NetworkCredential * System.Security.Authentication.ExtendedProtection.ChannelBinding * string -> unit
override this.AuthenticateAsClient : System.Net.NetworkCredential * System.Security.Authentication.ExtendedProtection.ChannelBinding * string -> unit
Public Overridable Sub AuthenticateAsClient (credential As NetworkCredential, binding As ChannelBinding, targetName As String)

参数

credential
NetworkCredential

用于确立客户端身份的 NetworkCredential

binding
ChannelBinding

用于扩展保护的 ChannelBinding

targetName
String

唯一标识要进行身份验证的服务器的服务主体名称 (SPN)。

例外

targetNamenull

credentialnull

身份验证失败。 可以使用此对象尝试重新进行身份验证。

身份验证失败。 可以使用此对象尝试重新进行身份验证。

已进行了身份验证。

- 或 -

此流先前被尝试作为服务器进行身份验证。 不能尝试将该流作为客户端重新进行身份验证。

此对象已关闭。

注解

模拟级别为 Identification,安全级别为 EncryptAndSign,请求相互身份验证。 类 NegotiateStream 将构造用于相互身份验证的 SPN。

ChannelBinding应用程序将从关联的 SslStream上的 属性检索TransportContext传递给参数中binding此方法的用于扩展保护的 。

身份验证成功后,必须检查 IsEncryptedIsSigned 属性来确定 所使用的NegotiateStream安全服务。 IsMutuallyAuthenticated检查 属性以确定是否发生了相互身份验证。

另请参阅

适用于

AuthenticateAsClient(NetworkCredential, String, ProtectionLevel, TokenImpersonationLevel)

Source:
NegotiateStream.cs
Source:
NegotiateStream.cs
Source:
NegotiateStream.cs

客户端调用此方法,以便对客户端/服务器连接中的客户端及服务器(可选)进行身份验证。 身份验证过程使用指定的凭据和身份验证选项。

public:
 virtual void AuthenticateAsClient(System::Net::NetworkCredential ^ credential, System::String ^ targetName, System::Net::Security::ProtectionLevel requiredProtectionLevel, System::Security::Principal::TokenImpersonationLevel allowedImpersonationLevel);
public virtual void AuthenticateAsClient (System.Net.NetworkCredential credential, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel);
abstract member AuthenticateAsClient : System.Net.NetworkCredential * string * System.Net.Security.ProtectionLevel * System.Security.Principal.TokenImpersonationLevel -> unit
override this.AuthenticateAsClient : System.Net.NetworkCredential * string * System.Net.Security.ProtectionLevel * System.Security.Principal.TokenImpersonationLevel -> unit
Public Overridable Sub AuthenticateAsClient (credential As NetworkCredential, targetName As String, requiredProtectionLevel As ProtectionLevel, allowedImpersonationLevel As TokenImpersonationLevel)

参数

credential
NetworkCredential

用于确立客户端身份的 NetworkCredential

targetName
String

唯一标识要进行身份验证的服务器的服务主体名称 (SPN)。

requiredProtectionLevel
ProtectionLevel

ProtectionLevel 值之一,指示流的安全服务。

allowedImpersonationLevel
TokenImpersonationLevel

TokenImpersonationLevel 值之一,指示服务器使用客户端凭据访问资源的方式。

例外

allowedImpersonationLevel 不是有效值。

targetName 为 null。

身份验证失败。 可以使用此对象尝试重新进行身份验证。

身份验证失败。 可以使用此对象尝试重新进行身份验证。

此对象已关闭。

已进行了身份验证。

- 或 -

此流先前被尝试作为服务器进行身份验证。 不能尝试将该流作为客户端重新进行身份验证。

注解

requiredProtectionLevel使用 参数为使用经过身份验证的流传输的数据请求安全服务。 例如,若要对数据进行加密和签名,请 EncryptAndSign 指定 值。 成功的身份验证不保证已授予请求 ProtectionLevel 的 。 必须检查 IsEncryptedIsSigned 属性来确定 所使用的NegotiateStream安全服务。

如果身份验证失败,则会收到 AuthenticationExceptionInvalidCredentialException。 在这种情况下,可以使用其他凭据重试身份验证。

适用于

AuthenticateAsClient(NetworkCredential, ChannelBinding, String, ProtectionLevel, TokenImpersonationLevel)

Source:
NegotiateStream.cs
Source:
NegotiateStream.cs
Source:
NegotiateStream.cs

客户端调用此方法,以便对客户端/服务器连接中的客户端及服务器(可选)进行身份验证。 身份验证过程使用指定的凭据、身份验证选项和通道绑定。

public:
 virtual void AuthenticateAsClient(System::Net::NetworkCredential ^ credential, System::Security::Authentication::ExtendedProtection::ChannelBinding ^ binding, System::String ^ targetName, System::Net::Security::ProtectionLevel requiredProtectionLevel, System::Security::Principal::TokenImpersonationLevel allowedImpersonationLevel);
public virtual void AuthenticateAsClient (System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding? binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel);
public virtual void AuthenticateAsClient (System.Net.NetworkCredential credential, System.Security.Authentication.ExtendedProtection.ChannelBinding binding, string targetName, System.Net.Security.ProtectionLevel requiredProtectionLevel, System.Security.Principal.TokenImpersonationLevel allowedImpersonationLevel);
abstract member AuthenticateAsClient : System.Net.NetworkCredential * System.Security.Authentication.ExtendedProtection.ChannelBinding * string * System.Net.Security.ProtectionLevel * System.Security.Principal.TokenImpersonationLevel -> unit
override this.AuthenticateAsClient : System.Net.NetworkCredential * System.Security.Authentication.ExtendedProtection.ChannelBinding * string * System.Net.Security.ProtectionLevel * System.Security.Principal.TokenImpersonationLevel -> unit
Public Overridable Sub AuthenticateAsClient (credential As NetworkCredential, binding As ChannelBinding, targetName As String, requiredProtectionLevel As ProtectionLevel, allowedImpersonationLevel As TokenImpersonationLevel)

参数

credential
NetworkCredential

用于确立客户端身份的 NetworkCredential

binding
ChannelBinding

用于扩展保护的 ChannelBinding

targetName
String

唯一标识要进行身份验证的服务器的服务主体名称 (SPN)。

requiredProtectionLevel
ProtectionLevel

ProtectionLevel 值之一,指示流的安全服务。

allowedImpersonationLevel
TokenImpersonationLevel

TokenImpersonationLevel 值之一,指示服务器使用客户端凭据访问资源的方式。

例外

targetNamenull

credentialnull

allowedImpersonationLevel 不是有效值。

身份验证失败。 可以使用此对象尝试重新进行身份验证。

身份验证失败。 可以使用此对象尝试重新进行身份验证。

已进行了身份验证。

- 或 -

此流先前被尝试作为服务器进行身份验证。 不能尝试将该流作为客户端重新进行身份验证。

此对象已关闭。

注解

requiredProtectionLevel使用 参数为使用经过身份验证的流传输的数据请求安全服务。 例如,若要对数据进行加密和签名,请 EncryptAndSign 指定 值。 成功的身份验证不保证已授予请求 ProtectionLevel 的 。 必须检查 IsEncryptedIsSigned 属性来确定 所使用的NegotiateStream安全服务。

ChannelBinding应用程序将从关联的 SslStream上的 属性检索TransportContext传递给参数中binding此方法的用于扩展保护的 。

如果身份验证失败,则会收到 AuthenticationExceptionInvalidCredentialException。 在这种情况下,可以使用其他凭据重试身份验证。

另请参阅

适用于