[]
        
(Showing Draft Content)

GrapeCity.Documents.Common.StructPredicate-1

Delegate StructPredicate<T>

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

Represents the method that defines a set of criteria and determines whether the specified struct meets those criteria.

public delegate bool StructPredicate<T>(in T item) where T : struct

Parameters

item T

The struct to compare against the criteria defined within the method represented by this delegate.

Returns

bool

true if item meets the criteria defined within the method represented by this delegate; otherwise, false.

Type Parameters

T

The type of the struct to compare.

Constructors

StructPredicate(object, IntPtr)

public StructPredicate(object @object, IntPtr method)

Parameters

object object
method System.IntPtr

Methods

BeginInvoke(in T, AsyncCallback, object)

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

Parameters

item T
callback System.AsyncCallback
object object

Returns

System.IAsyncResult

EndInvoke(in T, IAsyncResult)

public virtual bool EndInvoke(in T item, IAsyncResult result)

Parameters

item T
result System.IAsyncResult

Returns

bool

Invoke(in T)

public virtual bool Invoke(in T item)

Parameters

item T

Returns

bool