[]
        
(Showing Draft Content)

GrapeCity.Documents.Common.StructAction-1

Delegate StructAction<T>

Namespace
GrapeCity.Documents.Common
Assembly
GcDocs.Imaging.dll

Encapsulates a method that has a single parameter (passed by reference) and does not return a value.

public delegate void StructAction<T>(ref T item) where T : struct

Parameters

item T

The parameter of the method that this delegate encapsulates.

Type Parameters

T

The type of the parameter of the method that this delegate encapsulates.

Constructors

StructAction(object, IntPtr)

public StructAction(object @object, IntPtr method)

Parameters

object object
method System.IntPtr

Methods

BeginInvoke(ref T, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(ref T item, AsyncCallback callback, object @object)

Parameters

item T
callback System.AsyncCallback
object object

Returns

System.IAsyncResult

EndInvoke(ref T, IAsyncResult)

public virtual void EndInvoke(ref T item, IAsyncResult result)

Parameters

item T
result System.IAsyncResult

Invoke(ref T)

public virtual void Invoke(ref T item)

Parameters

item T