Selects the assets.

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

Syntax

C#
public int SelectAssetsEx(
	string query,
	ref int count,
	int userToken
)
Visual Basic (Declaration)
Public Function SelectAssetsEx ( _
	query As String, _
	ByRef count As Integer, _
	userToken As Integer _
) As Integer
Visual C++
public:
virtual int SelectAssetsEx(
	String^ query, 
	int% count, 
	int userToken
) sealed

Parameters

query
Type: System..::.String
Query.
count
Type: System..::.Int32 %
Count.
userToken
Type: System..::.Int32
The user token containing credential information.

Return Value

result cookie

Implements

IMediaMgr2..::.SelectAssetsEx(String, Int32%, Int32)

Remarks

This function allows you to perform complex SQL queries on the asset database. The results of this query are returned as an XML document using the GetXmlResults function. Any call to SelectAssets must be balanced with a call to CloseResults.

See Also