InetTransport.SocksServer
InetTransport
See also
Specifies the address of the SOCKS server.
[C++]
void setSocksServer(char* Value);
char* getSocksServer(void);
[Pascal]
property SocksServer : string;
[VB6]
Property IMCXInetTransport2.SocksServer As String
[ActiveX]
HRESULT _stdcall IMCXInetTransport2.SocksServer([in] BSTR Value );
HRESULT _stdcall IMCXInetTransport2.SocksServer([out, retval] BSTR * Value );
[C#]
public string SocksServer;
[VB.NET]
Public Property SocksServer As String
[Java]
public void setSocksServer(String value;
public String getSocksServer;
[Java ME]
public void setSocksServer(String value);
public String getSocksServer();
[Palm]
void setSocksServer(char* Value);
char* getSocksServer(void);
[DLL]
void __stdcall MCInetTransportSetSocksServer(HMCInetTransport h, char* value);
char* __stdcall MCInetTransportGetSocksServer(HMCInetTransport h);
- h - handle to the object that was returned by Create method
This property specifies the IP address or host name of the SOCKS server.
This property is used only when UseSocks is set.
|