Given a field name, returns whether the field exists (is not null) or not.

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 bool Exists(
	string fieldname
)
Visual Basic
Public MustOverride Function Exists ( _
	fieldname As String _
) As Boolean
Visual C++
public:
virtual bool Exists(
	String^ fieldname
) abstract

Parameters

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

Return Value

true if the field exists, false otherwise

See Also