Locates a PropertyBinary property by name in this Properties collection and returns the value it holds.


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

Syntax

Visual Basic (Declaration)
Function GetBinaryValue( _ 
   ByVal propertyName As String _ 
) As Byte()
C#
byte[] GetBinaryValue(
   string propertyName
)
C++
array<char>^ GetBinaryValue(
   String propertyName
) abstract 
J#
byte[] GetBinaryValue(
   string propertyName
)
JScript
function GetBinaryValue(
   propertyName : String
) : Byte[]

Parameters

propertyName
A String specifying a property name.

Return Value

A byte array specifying the value of the property.

Exceptions

Exception TypeCondition
EngineRuntimeException Thrown if the property cannot be found in the collection or or is not a PropertyBinary instance.

See Also