Sets the current bin.

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

Syntax

C#
public void SetCurrentBin(
	string volume,
	string bin
)
Visual Basic (Declaration)
Public Sub SetCurrentBin ( _
	volume As String, _
	bin As String _
)
Visual C++
public:
virtual void SetCurrentBin(
	String^ volume, 
	String^ bin
) sealed

Parameters

volume
Type: System..::.String
Volume.
bin
Type: System..::.String
Bin.

Implements

IMediaMgr..::.SetCurrentBin(String, String)

Remarks

Each instance of a MediaManager object has a “current bin” setting. This includes both a disk volume and bin name. The cached current bin setting does not influence any function in this interface, instead, it is provided for backwards compatibility with applications that need the concept of a current bin. This function caches the given bin and disk volume names with this MediaMgr object.

See Also