TsgcWebSocketServer › Properties › Version
Read-only string with the sgcWebSockets library version embedded in the binary.
public string Version { get; }
— (read-only, populated at build time)
Version returns the library version (e.g. the build string produced by sgcWebSockets) and is useful when logging startup information or when correlating client/server issues during support. The property is read-only; writing to it has no effect.
oServer = new TsgcWebSocketServer();
Console.WriteLine("sgcWebSockets version: " + oServer.Version);