Gets the XML results.

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

Syntax

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

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.

Implements

IMediaMgr..::.GetXmlResults(Int32, Int32, Int32, Int32%, String%)

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