EventDispatchBehavior Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Controls how events are dispatched to subscribers.
public enum EventDispatchBehavior
type EventDispatchBehavior =
Public Enum EventDispatchBehavior
- Inheritance
-
EventDispatchBehavior
Fields
Name | Value | Description |
---|---|---|
BlockingSequential | 0 | Fires events sequentially and blocks until they are all processed. |
BlockingConcurrent | 1 | Fires events concurrently and blocks until they are all processed. |
NonBlockingSequential | 2 | Fires events sequentially but does not block. |
NonBlockingConcurrent | 3 | Fires events concurrently but does not block. |