TsgcWebSocketServer_HTTPAPIProperties › Version

Version Property

Read-only string with the sgcWebSockets library version embedded in the binary.

Syntax

public string Version { get; }

Default Value

— (read-only, populated at build time)

Remarks

Version returns the library version string (the build string produced by sgcWebSockets) and is useful when logging start-up information or when correlating client/server issues during support. The property is read-only; writing to it has no effect.

Example


oServer = new TsgcWebSocketServer_HTTPAPI();
Console.WriteLine("sgcWebSockets version: " + oServer.Version);

Back to Properties