Given a name, returns the datetime 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.2.0.015)

Syntax

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

Parameters

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

Return Value

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

See Also