TsgcWebSocketClient › Properties › Host
IP address or DNS name of the WebSocket server the client will connect to.
public string Host { get; set; }
(empty string)
Set Host together with Port to specify the WebSocket endpoint. Alternatively, assign the full URL property and Host, Port, TLS and Parameters are populated automatically. Host accepts either an IPv4/IPv6 address or a DNS name; the resolver used depends on IPVersion.
oClient = new TsgcWebSocketClient();
oClient.Host = "www.esegece.com";
oClient.Port = 2053;
oClient.TLS = true;
oClient.Active = true;