IWebSocketControl.ServerCredential 属性

定义

用于使用 IWebSocket 对象通过 HTTP 标头身份验证向 WebSocket 服务器进行身份验证的 凭据。

public:
 property PasswordCredential ^ ServerCredential { PasswordCredential ^ get(); void set(PasswordCredential ^ value); };
PasswordCredential ServerCredential();

void ServerCredential(PasswordCredential value);
public PasswordCredential ServerCredential { get; set; }
var passwordCredential = iWebSocketControl.serverCredential;
iWebSocketControl.serverCredential = passwordCredential;
Public Property ServerCredential As PasswordCredential

属性值

用于通过 HTTP 标头身份验证向 WebSocket 服务器进行身份验证的凭据。

注解

IWebSocket 对象上调用 ConnectAsync 方法之前,必须设置 ServerCredential 属性。 在调用 ConnectAsync 方法后尝试设置 ServerCredential 属性将导致错误。

适用于

另请参阅