InetTransport.UseWebTunneling
InetTransport
See also
Specifies whether connection is established via HTTP Proxy using HTTP CONNECT method.
[C++]
void setUseWebTunneling(bool Value);
bool getUseWebTunneling(void);
[Pascal]
property UseWebTunneling : boolean;
[VB6]
Property IMCXInetTransport2.UseWebTunneling As Boolean
[ActiveX]
HRESULT _stdcall IMCXInetTransport2.UseWebTunneling([in] VARIANT_BOOL Value );
HRESULT _stdcall IMCXInetTransport2.UseWebTunneling([out, retval] VARIANT_BOOL * Value );
[C#]
public bool UseWebTunneling;
[VB.NET]
Public Property UseWebTunneling As Boolean
[Java]
public void setUseWebTunneling(boolean value);
public boolean getUseWebTunneling();
[Java ME]
public void setUseWebTunneling(boolean value);
public boolean getUseWebTunneling();
[Palm]
not implemented;
[DLL]
void __stdcall MCInetTransportSetUseWebTunneling(HMCInetTransport h, bool value);
bool __stdcall MCInetTransportGetUseWebTunneling(HMCInetTransport h);
- h - handle to the object that was returned by Create method
This property defines whether the connection is established directly (when UseWebTunneling is false) or via HTTP Proxy using HTTP CONNECT (when UseWebTunneling is true).
|