Gets the XML changes.

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

Syntax

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

Parameters

maxCount
Type: System..::.Int32
Max count.
count
Type: System..::.Int32 %
Count.
xmlData
Type: System..::.String %
XML data.

Implements

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

Remarks

This function returns an XML document whose elements represent asset changes from the last time GetXmlChanges was called. XML attributes indicate the specific change. Applications that need to process change information should call this function several times a second to keep up (~300ms).

See Also