WebSocket SetHeader Method (String, String)C# API
Sets an HTTP header to use in the opening handshake request for this WebSocket, as a name/value pair.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public virtual void SetHeader(
	string header,
	string value
)

Parameters

header
Type: System String
The header to set.
value
Type: System String
The value to assign to the header.
Remarks

The header will be sent to the web server when this WebSocket is opened.
Examples

The following example demonstrates setting the "X-Requested-With" header on the request.
webSocket.SetHeader("X-Requested-With", "XMLHttpRequest");
See Also