Given a name, returns the double value stored in the field with that name.
Namespace: Com.Tibco.As.SpaceAssembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.4.0.001)
Syntax
C# |
---|
public abstract Nullable<double> GetDouble(
string fieldName
) |
Visual Basic |
---|
Public MustOverride Function GetDouble (
fieldName As String
) As Nullable(Of Double) |
Visual C++ |
---|
public:
virtual Nullable<double> GetDouble(
String^ fieldName
) abstract |
F# |
---|
abstract GetDouble :
fieldName : string -> Nullable<float>
|
Return Value
Type:
Nullable<(Of <(<'Double>)>)>The value of the field or
null if no field with that name exists in the Tuple
See Also