InetTransport.UseSocks
InetTransport
See also
Specifies whether connection is established via SOCKS server.
[C++]
void setUseSocks(bool Value);
bool getUseSocks(void);
[Pascal]
property UseSocks : boolean;
[VB6]
Property IMCXInetTransport2.UseSocks As Boolean
[ActiveX]
HRESULT _stdcall IMCXInetTransport2.UseSocks([in] VARIANT_BOOL Value );
HRESULT _stdcall IMCXInetTransport2.UseSocks([out, retval] VARIANT_BOOL * Value );
[C#]
public bool UseSocks;
[VB.NET]
Public Property UseSocks As Boolean
[Java]
public void setUseSocks(boolean value);
public boolean getUseSocks();
[Java ME]
public void setUseSocks(boolean value);
public boolean getUseSocks();
[Palm]
void setUseSocks(bool Value);
bool getUseSocks(void);
[DLL]
void __stdcall MCInetTransportSetUseSocks(HMCInetTransport h, bool value);
bool __stdcall MCInetTransportGetUseSocks(HMCInetTransport h);
- h - handle to the object that was returned by Create method
This property defines whether the connection is established directly (when UseSocks is false) or via SOCKS server (when UseSocks is true).
|