Adds an object as the value for the named parameter to the parameter bag for this
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)
Syntax
Visual Basic (Declaration) |
---|
Public Overridable Sub PutObjectValue( _ ByVal name As String, _ ByVal v As Object _ ) |
C# |
---|
public virtual void PutObjectValue( string name, object v ) |
C++ |
---|
public: virtual void PutObjectValue( String name, Object v ) |
J# |
---|
public virtual void PutObjectValue( string name, object v ) |
JScript |
---|
public virtual
function PutObjectValue( name : String, v : Object ) |
Parameters
- name
- A
that specifies the parameter name to add to the parameter bag.String
- v
- An
that specifies the value for the parameter.Object