DispatchSource.DataOr Class
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.
Dispatch sources that allow applications to trigger an event handler on the target queue.
public class DispatchSource.DataOr : CoreFoundation.DispatchSource.Data
type DispatchSource.DataOr = class
inherit DispatchSource.Data
- Inheritance
- Inheritance
Remarks
Applications can post data onto a DispatchSource.DataOr by calling the MergeData(IntPtr) method. The data is surfaced is then available in to the handler in the PendingData property which will contain the cumulative logical or of all the values posted with MergeData.
Constructors
DispatchSource.DataOr(DispatchQueue) |
Creates a DataOr source that delivers events on the specified queue. |
DispatchSource.DataOr(IntPtr) |
Creates a DataOr DispatchSource from an unmanaged pointer. |
DispatchSource.DataOr(IntPtr, Boolean) |
Creates a DataOr DispatchSource from an unmanaged pointer. |
Properties
Handle | (Inherited from DispatchObject) |
IsCanceled |
Determine whether the specified source has been canceled. (Inherited from DispatchSource) |
PendingData |
Retrieves the data that has been posted for this event source. (Inherited from DispatchSource.Data) |
Methods
Activate() | (Inherited from DispatchObject) |
Cancel() |
Asynchronously cancels the dispatch source. (Inherited from DispatchSource) |
Check() |
Obsolete.
(Inherited from DispatchObject)
|
Dispose() | (Inherited from DispatchObject) |
Dispose(Boolean) |
Releases the resources used by the DispatchSource object. (Inherited from DispatchSource) |
Equals(Object) | (Inherited from DispatchObject) |
GetHashCode() |
Returns the hashcode for this object (Inherited from DispatchObject) |
InitializeHandle(IntPtr) | (Inherited from NativeObject) |
MergeData(IntPtr) |
Posts the specific value and triggers the event handler on the target queue. (Inherited from DispatchSource.Data) |
Release() | (Inherited from DispatchObject) |
Resume() |
Resumes the dispatch source. (Inherited from DispatchSource) |
Retain() | (Inherited from DispatchObject) |
SetCancelHandler(Action) |
Provides a cancellation handler (Inherited from DispatchSource) |
SetEventHandler(Action) |
Specified a handler to execute when events are received on the dispatch source. (Inherited from DispatchSource) |
SetRegistrationHandler(Action) |
Provides a registration handler (Inherited from DispatchSource) |
SetTargetQueue(DispatchQueue) | (Inherited from DispatchObject) |
Suspend() |
Suspends the dispatch source. (Inherited from DispatchSource) |