Given a name, stores the char value 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.4.0.001)

Syntax

C#
public abstract Object Put(
	string fieldName,
	char value
)
Visual Basic
Public MustOverride Function Put ( 
	fieldName As String,
	value As Char
) As Object
Visual C++
public:
virtual Object^ Put(
	String^ fieldName, 
	wchar_t value
) abstract
F#
abstract Put : 
        fieldName : string * 
        value : char -> Object 

Parameters

fieldName
Type: System..::..String
Name of field
value
Type: System..::..Char
true or false

Return Value

Type: Object
Old value if it exists, null otherwise

See Also