Gets the value of the field on a specific entity.

Namespace:  Mindscape.LightSpeed.MetaData
Assembly:  Mindscape.LightSpeed.MetaData (in Mindscape.LightSpeed.MetaData.dll)
Version: 4.0.1000.1 (4.0.0.0)

Syntax

C#
public bool TryGetValue(
	Entity entity,
	out Object value
)
Visual Basic (Declaration)
Public Function TryGetValue ( _
	entity As Entity, _
	<OutAttribute> ByRef value As Object _
) As Boolean

Parameters

entity
Type: Mindscape.LightSpeed..::.Entity
The entity on which to get the field.
value
Type: System..::.Object %
Receives the field value, or null if the field is not defined on the entity.

Return Value

true if the field is defined on the entity; otherwise false.

See Also