InetTransport.WebTunnelAuthentication
InetTransport
See also
Specifies whether authentication is used when connecting to HTTP Proxy server.
[C++]
void setWebTunnelAuthentication(MCWebTunnelAuthentication Value);
MCWebTunnelAuthentication getWebTunnelAuthentication(void);
[Pascal]
property WebTunnelAuthentication : TMCWebTunnelAuthentication;
[VB6]
Property IMCXInetTransport2.WebTunnelAuthentication As TMCXWebTunnelAuthentication
[ActiveX]
HRESULT _stdcall IMCXInetTransport2.WebTunnelAuthentication([in] MCXWebTunnelAuthentication Value );
HRESULT _stdcall IMCXInetTransport2.WebTunnelAuthentication([out, retval] MCXWebTunnelAuthentication * Value );
[C#]
public MCWebTunnelAuthentication WebTunnelAuthentication;
[VB.NET]
Public Property WebTunnelAuthentication As MCXWebTunnelAuthentication
[Java]
public void setWebTunnelAuthentication(byte value);
public byte getWebTunnelAuthentication();
[Java ME]
public void setWebTunnelAuthentication(byte value);
public byte getWebTunnelAuthentication();
[Palm]
not implemented;
[DLL]
void __stdcall MCInetTransportSetWebTunnelAuthentication(HMCInetTransport h, unsigned long value);
unsigned long __stdcall MCInetTransportGetWebTunnelAuthentication(HMCInetTransport h);
MCWebTunnelAuthentication
wtaNoAuthentication = 0;
wtaRequiresAuthentication = 1;
- h - handle to the object that was returned by Create method
This property specifies the method of authentication to use with HTTP Proxy server. The methods supported are "do not authenticate" and "authenticate using UserId and Password".
This property is used only when UseWebTunneling is set.
|