Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

StreamWebSocketControl.ServerCredential Property

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

The credential to use to authenticate to the WebSocket server through HTTP header authentication using a StreamWebSocket object.

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

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

Property Value

The credential to use to authenticate to the WebSocket server through HTTP header authentication.

Implements

Remarks

The ServerCredential property must be set before calling the ConnectAsync method on the StreamWebSocket object. An attempt to set the ServerCredential property after calling the ConnectAsync method will result in an error.

Applies to

See also


Feedback

Was this page helpful?