Gets localized object from the collection.

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static T GetValue<T>(
	IEntityCollection2 collection,
	IEntityField2 textField,
	IEntityField2 languageIdField
)
Visual Basic
Public Shared Function GetValue(Of T) ( 
	collection As IEntityCollection2,
	textField As IEntityField2,
	languageIdField As IEntityField2
) As T
Visual C++
public:
generic<typename T>
static T GetValue(
	IEntityCollection2^ collection, 
	IEntityField2^ textField, 
	IEntityField2^ languageIdField
)
F#
static member GetValue : 
        collection : IEntityCollection2 * 
        textField : IEntityField2 * 
        languageIdField : IEntityField2 -> 'T 

Parameters

collection
Type: IEntityCollection2
Collection to search/fill
textField
Type: IEntityField2
Text field
languageIdField
Type: IEntityField2
Language id field

Type Parameters

T
Type of the value

Return Value

Type: T
Requested field value

See Also