UDPTransport.RoutingAllowed
UDPTransport
See also
Allows this transport to take part in routing of messages addressed to another transport.
[C++]
void setRoutingAllowed(bool Value);
bool getRoutingAllowed(void);
[Pascal]
property RoutingAllowed: Boolean;
[VB6]
Property RoutingAllowed As Boolean
[ActiveX]
HRESULT _stdcall RoutingAllowed([in] VARIANT_BOOL Value);
HRESULT _stdcall RoutingAllowed([out, retval] VARIANT_BOOL * Value );
[C#]
public bool RoutingAllowed;
[VB.NET]
Public Property RoutingAllowed As Boolean
[Java]
public void setRoutingAllowed(boolean value);
public boolean getRoutingAllowed();
[Java ME] MIDP 2.0 only
public void setRoutingAllowed(boolean value);
public boolean getRoutingAllowed();
[Palm]
not applicable;
[DLL]
void __stdcall MCUDPTransportSetRoutingAllowed(HMCUDPTransport h, bool value);
bool __stdcall MCUDPTransportGetRoutingAllowed(HMCUDPTransport h);
- h - handle to the object that was returned by Create method
Set this property to true if you want this transport to route messages which are addressed to another transport.
Default value is true (routing allowed).
|