Given a name, stores the double 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.2.0.015)

Syntax

C#
public abstract Object PutDouble(
	string fieldName,
	double value
)
Visual Basic
Public MustOverride Function PutDouble ( 
	fieldName As String,
	value As Double
) As Object
Visual C++
public:
virtual Object^ PutDouble(
	String^ fieldName, 
	double value
) abstract
F#
abstract PutDouble : 
        fieldName : string * 
        value : float -> Object 

Parameters

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

Return Value

Type: Object
Old value if it exists, null otherwise

See Also