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