Convenience function: given a name, returns the value as Object stored in the field with that name.

Namespace: Com.Tibco.As.Space
Assembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.2.0.015)

Syntax

C#
public abstract Object Get(
	string fieldName
)
Visual Basic
Public MustOverride Function Get ( 
	fieldName As String
) As Object
Visual C++
public:
virtual Object^ Get(
	String^ fieldName
) abstract
F#
abstract Get : 
        fieldName : string -> Object 

Parameters

fieldName
Type: System..::..String
Name of field

Return Value

Type: Object
The value of the field or null if no field with that name exists in the Tuple

See Also