Given a name, returns the long value 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.4.0.001)

Syntax

C#
public abstract Nullable<long> GetLong(
	string fieldName
)
Visual Basic
Public MustOverride Function GetLong ( 
	fieldName As String
) As Nullable(Of Long)
Visual C++
public:
virtual Nullable<long long> GetLong(
	String^ fieldName
) abstract
F#
abstract GetLong : 
        fieldName : string -> Nullable<int64> 

Parameters

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

Return Value

Type: Nullable<(Of <(<'Int64>)>)>
The value of the field or null if no field with that name exists in the Tuple

See Also