InetTransport.SocksPort
InetTransport
See also
Specifies the port being bound for the SOCKS server.
[C++]
void setSocksPort(unsigned Value);
unsigned getSocksPort(void);
[Pascal]
property SocksPort : word;
[VB6]
Property SocksPort As Long
[ActiveX]
HRESULT _stdcall IMCXInetTransport2.SocksPort([in] unsigned long Value );
HRESULT _stdcall IMCXInetTransport2.SocksPort([out, retval] unsigned long * Value );
[C#]
public int SocksPort;
[VB.NET]
Public Property SocksPort As Integer
[Java]
public void setSocksPort(int value);
public int getSocksPort();
[Java ME]
public void setSocksPort(int value);
public int getSocksPort();
[Palm]
void setSocksPort(unsigned Value);
unsigned getSocksPort(void);
[DLL]
void __stdcall MCInetTransportSetSocksPort(HMCInetTransport h, unsigned short value);
unsigned short __stdcall MCInetTransportGetSocksPort(HMCInetTransport h);
- h - handle to the object that was returned by Create method
Specifies the port that SOCKS server is bound to.
This property is used only when UseSocks is set.
|