CLSDataStore.FindContextsMatchingAsync Method

Definition

Overloads

FindContextsMatchingAsync(NSPredicate)

Searches for a context that matches the supplied predicate and returns a task that contains the result.

FindContextsMatchingAsync(String[])

Finds the contexts identifed by a set of identifier paths and returns a task that contains the reults.

FindContextsMatchingAsync(NSPredicate)

Searches for a context that matches the supplied predicate and returns a task that contains the result.

public virtual System.Threading.Tasks.Task<ClassKit.CLSContext[]> FindContextsMatchingAsync (Foundation.NSPredicate predicate);
abstract member FindContextsMatchingAsync : Foundation.NSPredicate -> System.Threading.Tasks.Task<ClassKit.CLSContext[]>
override this.FindContextsMatchingAsync : Foundation.NSPredicate -> System.Threading.Tasks.Task<ClassKit.CLSContext[]>

Parameters

predicate
NSPredicate

The search predicate.

Returns

A task that contains the search results

Applies to

FindContextsMatchingAsync(String[])

Finds the contexts identifed by a set of identifier paths and returns a task that contains the reults.

public virtual System.Threading.Tasks.Task<ClassKit.CLSContext[]> FindContextsMatchingAsync (string[] identifierPath);
abstract member FindContextsMatchingAsync : string[] -> System.Threading.Tasks.Task<ClassKit.CLSContext[]>
override this.FindContextsMatchingAsync : string[] -> System.Threading.Tasks.Task<ClassKit.CLSContext[]>

Parameters

identifierPath
String[]

The identifier paths for the contexts to find.

Returns

A task that contains the search results

Applies to