Gives information on the way the message has been delivered to the notification receiver
| C# | Visual Basic | Visual C++ |
[FlagsAttribute] public enum MessageDeliveryOptions
<FlagsAttribute> _ Public Enumeration MessageDeliveryOptions
[FlagsAttribute] public enum class MessageDeliveryOptions
| Member | Description |
|---|---|
| None |
No flags specified.
|
| NoHandleCreated |
No HWND handle has been created as a result of the message delivery.
|
| InvocationUsed |
BeginInvoke() of a delegate or the Control has been used to deliver the message.
|
| AsyncDelegate |
A delegate has been used to deliver the message asynchronously.
|
| WindowsMessage |
A windows message has been used to deliver the message in the Control's own thread.
|
| Blocking |
A direct call has been used to deliver the message and the NotificationManager is waiting for the call to complete before it can deliver any other mesages.
|
| HWNDCreated |
A HWND for the receiver control has been created as requested by the receiver
|