Table of Contents

Delegate Action

Namespace
System
Assembly
mscorlib.dll

Encapsulates a method that has no parameters and does not return a value.

public delegate void Action()
Extension Methods

Constructors

Action(object, IntPtr)

public Action(object @object, IntPtr method)

Parameters

object object
method IntPtr

Methods

BeginInvoke(AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(AsyncCallback callback, object @object)

Parameters

callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke()

public virtual void Invoke()