InetTransport.SocksUserCode
InetTransport
See also
Specifies the usercode (username) to access the SOCKS server.
[C++]
void setSocksUserCode(char* Value);
char* getSocksUserCode(void);
[Pascal]
property SocksUserCode : string;
[VB6]
Property IMCXInetTransport2.SocksUserCode As String
[ActiveX]
HRESULT _stdcall IMCXInetTransport2.SocksUserCode([in] BSTR Value );
HRESULT _stdcall IMCXInetTransport2.SocksUserCode([out, retval] BSTR * Value );
[C#]
public string SocksUserCode;
[VB.NET]
Public Property SocksUserCode As String
[Java]
public void setSocksUserCode(String value;
public String getSocksUserCode;
[Java ME]
public void setSocksUserCode(String value);
public String getSocksUserCode();
[Palm]
void setSocksUserCode(char* Value);
char* getSocksUserCode(void);
[DLL]
void __stdcall MCInetTransportSetSocksUserCode(HMCInetTransport h, char* value);
char* __stdcall MCInetTransportGetSocksUserCode(HMCInetTransport h);
- h - handle to the object that was returned by Create method
This property specifies the user code (username) to access the SOCKS server.
This property is used only when UseSocks is set and SocksAuthentication is set to saUsercode.
|