ModelMemberCollection<TItemType,TKeyType>.Find Method

Definition

Overloads

Find(String)
Find(TKeyType)
Find(String, Boolean)
Find(TKeyType, Boolean)

Find(String)

public:
 TItemType Find(System::String ^ name);
public TItemType Find (string name);
member this.Find : string -> 'ItemType
Public Function Find (name As String) As TItemType

Parameters

name
String

Returns

TItemType

Applies to

Find(TKeyType)

public:
 TItemType Find(TKeyType value);
public TItemType Find (TKeyType value);
member this.Find : 'KeyType -> 'ItemType
Public Function Find (value As TKeyType) As TItemType

Parameters

value
TKeyType

Returns

TItemType

Applies to

Find(String, Boolean)

protected:
 abstract TItemType Find(System::String ^ name, bool throwOnError);
protected abstract TItemType Find (string name, bool throwOnError);
abstract member Find : string * bool -> 'ItemType
Protected MustOverride Function Find (name As String, throwOnError As Boolean) As TItemType

Parameters

name
String
throwOnError
Boolean

Returns

TItemType

Applies to

Find(TKeyType, Boolean)

protected:
 abstract TItemType Find(TKeyType value, bool throwOnError);
protected abstract TItemType Find (TKeyType value, bool throwOnError);
abstract member Find : 'KeyType * bool -> 'ItemType
Protected MustOverride Function Find (value As TKeyType, throwOnError As Boolean) As TItemType

Parameters

value
TKeyType
throwOnError
Boolean

Returns

TItemType

Applies to