TsgcWebSocketHTTPServer › Properties › Specifications
Enables or disables the WebSocket protocol specifications the server will accept.
public TsgcWSSpecifications Specifications { get; set; }
RFC6455=True, Hixie76=True
Keep RFC6455 enabled — this is the standard, recommended WebSocket specification. Hixie76 is an obsolete draft only useful to support legacy browsers such as Safari 4.2; disable it unless you specifically need that compatibility. The handshake negotiates which specification is used per connection; if the client requests a spec that is disabled the handshake fails and the connection is rejected.
oServer = new TsgcWebSocketHTTPServer();
oServer.Specifications.RFC6455 = true;
oServer.Specifications.Hixie76 = false;
oServer.Active = true;