Enumerates the assets.

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

Syntax

C#
int EnumerateAssets(
	string volume,
	string bin,
	ref int count
)
Visual Basic (Declaration)
Function EnumerateAssets ( _
	volume As String, _
	bin As String, _
	ByRef count As Integer _
) As Integer
Visual C++
int EnumerateAssets(
	String^ volume, 
	String^ bin, 
	int% count
)

Parameters

volume
Type: System..::.String
Volume.
bin
Type: System..::.String
Bin.
count
Type: System..::.Int32 %
Count.

Return Value

result cookie

Remarks

This function performs a simple query to return the asset records for all items in the given bin. The results of this query are returned as an XML document using the GetXmlResults function. This result set will not include any assets that begin with the ‘~’ character. Any call to EnumerateAssets must be balanced with a call to CloseResults.

See Also