InetTransport.NoTransformerFallback
InetTransport
See also
Defines the behaviour of the transport if it couldn't agree on transformers when connecting.
[C++]
void setNoTransformerFallback(bool Value);
bool getNoTransformerFallback(void);
[Pascal]
property NoTransformerFallback: Boolean;
[VB6]
Property NoTransformerFallback As Boolean
[ActiveX]
HRESULT _stdcall IMCInetTransport3.NoTransformerFallback([in] VARIANT_BOOL Value);
HRESULT _stdcall IMCInetTransport3.NoTransformerFallback([out, retval] VARIANT_BOOL * Value );
[C#]
public bool NoTransformerFallback;
[VB.NET]
Public Property NoTransformerFallback As Boolean
[Java]
public void setNoTransformerFallback(boolean value);
public boolean getNoTransformerFallback();
[Java ME]
public void setNoTransformerFallback(boolean value);
public boolean getNoTransformerFallback();
[Palm]
void setNoTransformerFallback(bool Value);
bool getNoTransformerFallback(void);
[DLL]
void __stdcall MCInetTransportSetNoTransformerFallback(HMCInetTransport h, bool value);
bool __stdcall MCInetTransportGetNoTransformerFallback(HMCInetTransport h);
- h - handle to the object that was returned by Create method
When this property is set to true and the transport can't agree with remote side about what transformers are used, the transport breaks connection (and doesn't fall back to "no transformer" mode for the part, on which transports failed to agree).
Default value is false (fallback is allowed).
|