Moves an asset.

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

Syntax

C#
public void MoveAsset(
	string oldUri,
	string newUri
)
Visual Basic (Declaration)
Public Sub MoveAsset ( _
	oldUri As String, _
	newUri As String _
)
Visual C++
public:
virtual void MoveAsset(
	String^ oldUri, 
	String^ newUri
) sealed

Parameters

oldUri
Type: System..::.String
Old URI.
newUri
Type: System..::.String
New URI.

Implements

IMediaMgr..::.MoveAsset(String, String)

Remarks

This function moves the asset identified by oldUri to the location specified by newUri. If just the asset name portion of the URI is different, then this function acts as a rename. If the asset is locked or in use, this call will fail.

See Also