TsgcWebSocketClientProperties › Proxy

Proxy Property

Routes the WebSocket connection through an HTTP or SOCKS proxy server.

Syntax

property Proxy: TsgcWSProxy_Options read FProxy write SetProxy;

Default Value

Enabled=False, Port=8080

Remarks

Set Proxy.Enabled to True and fill in Host and Port to tunnel the connection through a proxy. Supported proxy types (ProxyType) are pxyHTTP, pxySocks4, pxySocks4A and pxySocks5. Username and Password are optional; leave them blank for anonymous authentication.

Example


Client := TsgcWebSocketClient.Create(nil);
Client.Proxy.Enabled := true;
Client.Proxy.Username := 'user';
Client.Proxy.Password := 'secret';
Client.Proxy.Host := '80.55.44.12';
Client.Proxy.Port := 8080;
Client.Active := True;

Back to Properties