Delegate DispatchProc
Represents a function which is called when an event occurs.
public delegate void DispatchProc(ref UioHookEvent e, nint userData)
Parameters
eUioHookEventThe event that has occured.
userDatanintThe data that was passed to SetDispatchProc(DispatchProc?, nint). Usually should not be used.
Constructors
DispatchProc(object, nint)
public DispatchProc(object @object, nint method)
Parameters
Methods
BeginInvoke(ref UioHookEvent, nint, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(ref UioHookEvent e, nint userData, AsyncCallback callback, object @object)
Parameters
eUioHookEventuserDatanintcallbackAsyncCallbackobjectobject
Returns
EndInvoke(ref UioHookEvent, IAsyncResult)
public virtual void EndInvoke(ref UioHookEvent e, IAsyncResult result)
Parameters
eUioHookEventresultIAsyncResult
Invoke(ref UioHookEvent, nint)
public virtual void Invoke(ref UioHookEvent e, nint userData)
Parameters
eUioHookEventuserDatanint