Locates the named parameter in the parameter bag and returns the value of the object it holds.

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

ToggleSyntax

Visual Basic (Declaration)
Public Overridable Function GetBinaryValue ( _
	name As String _
) As Byte()
C#
public virtual byte[] GetBinaryValue(
	string name
)
Visual C++
public:
virtual array<unsigned char>^ GetBinaryValue(
	String^ name
)
JavaScript
function getBinaryValue(name);

Parameters

name
Type: System..::.String
A String that specifies the parameter name to retrieve.

Return Value

The value of the parameter as an array of bytes. Returns Null if the parameter cannot be found in the parameter bag.

ToggleExceptions

ExceptionCondition
ExceptionCode..::.API_INVALID_PROPERTY_TYPE Thrown if the parameter is not of the type being requested.

ToggleSee Also