Adds an object as the value for the named parameter to the parameter bag for this PendingAction object. If the named parameter already exists, it is overwritten with the new value.

Namespace:  FileNet.Api.Action
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Overridable Sub PutObjectValue ( _
	name As String, _
	v As Object _
)
C#
public virtual void PutObjectValue(
	string name,
	Object v
)
Visual C++
public:
virtual void PutObjectValue(
	String^ name, 
	Object^ v
)
JavaScript
function putObjectValue(name, v);

Parameters

name
Type: System..::.String
A String that specifies the parameter name to add to the parameter bag.
v
Type: System..::.Object
An Object that specifies the value for the parameter.

ToggleSee Also