Delegate DispatchProc
Represents a function which is called when an event occurs.
public delegate void DispatchProc(ref UioHookEvent e, nint userData)
Parameters
e
UioHookEventThe event that has occured.
userData
nintThe data that was passed to SetDispatchProc(DispatchProc?, nint). Should not be used.
Constructors
DispatchProc(object, nint)
public DispatchProc(object @object, nint method)
Parameters
- See Also
Methods
BeginInvoke(ref UioHookEvent, nint, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(ref UioHookEvent e, nint userData, AsyncCallback callback, object @object)
Parameters
e
UioHookEventuserData
nintcallback
AsyncCallbackobject
object
Returns
- See Also
EndInvoke(ref UioHookEvent, IAsyncResult)
public virtual void EndInvoke(ref UioHookEvent e, IAsyncResult result)
Parameters
e
UioHookEventresult
IAsyncResult
- See Also
Invoke(ref UioHookEvent, nint)
public virtual void Invoke(ref UioHookEvent e, nint userData)
Parameters
e
UioHookEventuserData
nint
- See Also