Given a name, returns the boolean value stored in the field with that name.

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

Syntax

C#
public abstract Nullable<bool> GetBoolean(
	string fieldName
)
Visual Basic
Public MustOverride Function GetBoolean ( _
	fieldName As String _
) As Nullable(Of Boolean)
Visual C++
public:
virtual Nullable<bool> GetBoolean(
	String^ fieldName
) abstract

Parameters

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

Return Value

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

See Also