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