BaseTransport.IgnoreIncomingPriorities
BaseTransport
Defines whether Priority parameter of the incoming message is taken into account.
[C++]
void setIgnoreIncomingPriorities(bool v);
bool getIgnoreIncomingPriorities();
[Pascal]
property IgnoreIncomingPriorities : boolean;
[VB6]
Not implemented;
[ActiveX]
Not implemented;
[C#]
public bool IgnoreIncomingPriorities;
[VB.NET]
Public Property IgnoreIncomingPriorities As Boolean
[Java]
public void setIgnoreIncomingPriorities(boolean value);
public boolean getIgnoreIncomingPriorities();
[Java ME]
public void setIgnoreIncomingPriorities(boolean value);
public boolean getIgnoreIncomingPriorities();
[Palm]
void setIgnoreIncomingPriorities(bool v);
bool getIgnoreIncomingPriorities(void);
[DLL]
void __stdcall MCBaseTransportSetIgnoreIncomingPriorities(HMCBaseTransport h, bool value);
bool __stdcall MCBaseTransportGetIgnoreIncomingPriorities(HMCBaseTransport h);
- h - handle to the object that was returned by Create method
This property defines if Priority parameter of incoming message is taken into account when placing the message to the queue of incoming messages. If the property is true, then Priority is ignored and only IsSent flag is used. See more in Message priorities description.
|