Delegate WndProcInvoker
Represents a delegate that is used for invoking the base implementation of System.Windows.Forms.Control.WndProc(System.Windows.Forms.Message@) of a form.
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.UI.dll
Syntax
public delegate void WndProcInvoker(ref Message m);
Parameters
System.Windows.Forms.Message
m
A System.Windows.Forms.Message that represents the Windows message to process. |
Constructors
WndProcInvoker(Object, IntPtr)
Declaration
public WndProcInvoker(object object, IntPtr method)
Parameters
System.Object
object
|
System.IntPtr
method
|
Methods
BeginInvoke(ref Message, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(ref Message m, AsyncCallback callback, object object)
Parameters
System.Windows.Forms.Message
m
|
System.AsyncCallback
callback
|
System.Object
object
|
Returns
System.IAsyncResult
|
EndInvoke(ref Message, IAsyncResult)
Declaration
public virtual void EndInvoke(ref Message m, IAsyncResult result)
Parameters
System.Windows.Forms.Message
m
|
System.IAsyncResult
result
|
Invoke(ref Message)
Declaration
public virtual void Invoke(ref Message m)
Parameters
System.Windows.Forms.Message
m
|