Gets the XML results.

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

Syntax

C#
void GetXmlResults(
	int resultCookie,
	int startIndex,
	int maxCount,
	ref int count,
	out string xmlData
)
Visual Basic (Declaration)
Sub GetXmlResults ( _
	resultCookie As Integer, _
	startIndex As Integer, _
	maxCount As Integer, _
	ByRef count As Integer, _
	<OutAttribute> ByRef xmlData As String _
)
Visual C++
void GetXmlResults(
	int resultCookie, 
	int startIndex, 
	int maxCount, 
	int% count, 
	[OutAttribute] String^% xmlData
)

Parameters

resultCookie
Type: System..::.Int32
Result cookie.
startIndex
Type: System..::.Int32
Start index.
maxCount
Type: System..::.Int32
Max count.
count
Type: System..::.Int32 %
Count.
xmlData
Type: System..::.String %
XML data.

Remarks

This function converts records from the result set identified by resultCookie into elements in an XML document. Since building an XML document is CPU intensive, this function allows you distribute the conversion across multiple calls.

See Also