Find

Find(object, Type, EachField<T>.OnFind)

public static void Find(object obj, Type type, EachField<T>.OnFind onFind) ;

Description

Find the field.

Parameters

Parameter Name Description
obj Object
type Type of object
onFind Callback If you find

Find(object, Type, EachField<T>.OnFindEx)

public static void Find(object obj, Type type, EachField<T>.OnFindEx onFind) ;

Description

Find the field.

Parameters

Parameter Name Description
obj Object
type Type of object
onFind Callback If you find

Find(object, Type)

public static List<T> Find(object obj, Type type) ;

Description

Find the field and return it as a List.

Parameters

Parameter Name Description
obj Object
type Type of object

Returns

List of values found

Find(object, Type, List<T>)

public static void Find(object obj, Type type, List<T> list) ;

Description

Find the field and add it to the List.

Parameters

Parameter Name Description
obj Object
type Type of object
list List to store

Find(object, Type, EachField<T>.IFindReceiver)

public static void Find(object obj, Type type, EachField<T>.IFindReceiver receiver) ;

Description

Find the field and call OnFind of IFindReceiver.

Parameters

Parameter Name Description
obj Object
type Type of object
receiver Receiver