Adds a value for the named parameter to the parameter bag for this PendingAction object.


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

Syntax

Visual Basic (Declaration)
Public Overridable Sub PutValue( _ 
   ByVal name As String,  _ 
   ByVal v As IEngineObject _ 
)
C#
public virtual void PutValue(
   string name,
   IEngineObject v
)
C++
public:
 virtual void PutValue(
   String name,
   IEngineObject v
)
J#
public virtual void PutValue(
   string name,
   IEngineObject v
)
JScript
public virtual  function PutValue(
   name : String,
   v : IEngineObject
)

Parameters

name
A String that specifies the parameter name to add to the parameter bag.
v
An IEngineObject object that specifies the value for the parameter.

See Also