Locates a PropertyContent 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)
<ComVisibleAttribute(False)>
Function GetInputStreamValue( _ 
   ByVal propertyName As String _ 
) As Stream
C#
[ComVisibleAttribute(False)]
Stream GetInputStreamValue(
   string propertyName
)
C++
[ComVisibleAttribute(False)]
Stream GetInputStreamValue(
   String propertyName
) abstract 
J#
/** @attribute ComVisibleAttribute(False) */
Stream GetInputStreamValue(
   string propertyName
)
JScript
function GetInputStreamValue(
   propertyName : String
) : Stream

Parameters

propertyName
A String specifying a property name.

Return Value

An InputStream 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 PropertyContent instance.

See Also