TsgcWebSocketHTTPServer › Properties › Options
Bundles miscellaneous server behaviour flags: fragment handling, timeouts, HTTP test pages and UTF-8 validation.
public TsgcWSOptionsServer Options { get; set; }
FragmentedMessages=frgOnlyBuffer, HTMLFiles=True, JavascriptFiles=True, ReadTimeOut=10, WriteTimeOut=0
FragmentedMessages controls how fragmented frames are delivered: frgOnlyBuffer (default) buffers the message until complete and raises OnMessage/OnBinary; frgOnlyFragmented raises OnFragmented for every fragment; frgAll raises both. HTMLFiles and JavascriptFiles let the server serve the built-in browser test pages and JavaScript client (enabled by default). RaiseDisconnectExceptions throws when a disconnection is caused by a protocol error. ReadTimeOut is the polling interval in milliseconds (10 by default); WriteTimeOut (Windows only) caps the time a write can block (0 means no limit). ValidateUTF8 rejects text messages containing invalid UTF-8 sequences (disabled by default). Software holds the value sent in the HTTP Server header.
oServer = new TsgcWebSocketHTTPServer();
oServer.Options.FragmentedMessages = TwsFragmentedMessage.frgOnlyBuffer;
oServer.Options.ValidateUTF8 = true;
oServer.Options.HTMLFiles = false;
oServer.Active = true;