[]
        
(Showing Draft Content)

GrapeCity.Documents.DX.GetValueFastDelegate-1

Delegate GetValueFastDelegate<T>

Namespace
GrapeCity.Documents.DX
Assembly
GcDocs.DX.Windows.dll

A Delegate to get a property value from an object.

public delegate void GetValueFastDelegate<T>(object obj, out T value)

Parameters

obj object

The obj to get the property from.

value T

The value to get.

Type Parameters

T

Type of the getter.

Constructors

GetValueFastDelegate(object, IntPtr)

public GetValueFastDelegate(object @object, IntPtr method)

Parameters

object object
method System.IntPtr

Methods

BeginInvoke(object, out T, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(object obj, out T value, AsyncCallback callback, object @object)

Parameters

obj object
value T
callback System.AsyncCallback
object object

Returns

System.IAsyncResult

EndInvoke(out T, IAsyncResult)

public virtual void EndInvoke(out T value, IAsyncResult result)

Parameters

value T
result System.IAsyncResult

Invoke(object, out T)

public virtual void Invoke(object obj, out T value)

Parameters

obj object
value T