HttpTransport.ProxyAddress
HttpTransport
See also
Specifies the address of the proxy server.
[C++]
void setProxyAddress(const char* ProxyAddr);
const char* getProxyAddress(void);
[Pascal]
property ProxyAddress : string;
[VB6]
Property ProxyAddress As String
[ActiveX]
HRESULT ProxyAddress([in] BSTR Value);
HRESULT ProxyAddress([out, retval] BSTR* Value);
[C#]
public string ProxyAddress;
[VB.NET]
Public Property ProxyAddress As String
[Java]
public void setProxyAddress(String proxyAddress);
public String getProxyAddress();
[Java ME]
public void setProxyAddress(String proxyAddress);
public String getProxyAddress();
[Palm]
void setProxyAddress(const char* ProxyAddr);
const char* getProxyAddress(void);
[DLL]
void __stdcall MCHttpTransportSetProxyAddress(HMCHttpTransport h, char* ProxyAddress);
char* __stdcall MCHttpTransportGetProxyAddress(HMCHttpTransport h,);
- h - handle to the object that was returned by Create method
Use this property if you need to establish connection to the server via proxy server to specify its address.
You also have to specify ProxyPort in this case.
|