Generates a unique name.

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

Syntax

C#
public string GenerateUniqueName(
	string seed,
	string delimiter
)
Visual Basic (Declaration)
Public Function GenerateUniqueName ( _
	seed As String, _
	delimiter As String _
) As String
Visual C++
public:
virtual String^ GenerateUniqueName(
	String^ seed, 
	String^ delimiter
) sealed

Parameters

seed
Type: System..::.String
Seed.
delimiter
Type: System..::.String
Delimiter.

Return Value

Clip name.

Implements

ISimpleController..::.GenerateUniqueName(String, String)

Remarks

This function returns an asset name that is unique in the current bin at the instant it was called. It is used to generate clip names for crash records and sub-clips. Use the SetCurrentBin function to change the bin that is checked for unique asset names. By convention, source clip delimiters use the ‘_’ character and subclips use the ‘-‘ character.

See Also