Gets the result property.

Namespace:  GrassValley.Mseries.MediaMgr
Assembly:  GrassValley.Mseries.MediaMgr (in GrassValley.Mseries.MediaMgr.dll) Version: 1.0.0.0

Syntax

C#
public void GetResultProperty(
	int resultCookie,
	string propertyQuery,
	int startIndex,
	int maxCount,
	out int count,
	out Object data
)
Visual Basic (Declaration)
Public Sub GetResultProperty ( _
	resultCookie As Integer, _
	propertyQuery As String, _
	startIndex As Integer, _
	maxCount As Integer, _
	<OutAttribute> ByRef count As Integer, _
	<OutAttribute> ByRef data As Object _
)
Visual C++
public:
virtual void GetResultProperty(
	int resultCookie, 
	String^ propertyQuery, 
	int startIndex, 
	int maxCount, 
	[OutAttribute] int% count, 
	[OutAttribute] Object^% data
) sealed

Parameters

resultCookie
Type: System..::.Int32
Result cookie.
propertyQuery
Type: System..::.String
Property query.
startIndex
Type: System..::.Int32
zero-based index.
maxCount
Type: System..::.Int32
maximum number of returned results
count
Type: System..::.Int32 %
number of results
data
Type: System..::.Object %
The data.

Implements

IMediaMgr..::.GetResultProperty(Int32, String, Int32, Int32, Int32%, Object%)

Remarks

Use this function as an alternative to GetXmlResults. Rather than returning an XML document, it returns the values of one or more properties from a particular item in the result set identified by resultCookie. Not all asset properties are available from this function, only those contained in the asset record.

See Also