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