Given a name, returns the int 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<int> GetInt(
string fieldName
) |
Visual Basic |
---|
Public MustOverride Function GetInt (
fieldName As String
) As Nullable(Of Integer) |
Visual C++ |
---|
public:
virtual Nullable<int> GetInt(
String^ fieldName
) abstract |
F# |
---|
abstract GetInt :
fieldName : string -> Nullable<int>
|
Return Value
Type:
Nullable<(Of <(<'Int32>)>)>The value of the field or
null if no field with that name exists in the Tuple
See Also