C# Class WixSharp.GuidGenerators

Collection of the deterministic GUID generation algorithms
Afficher le fichier Open project: Eun/WixSharp

Méthodes publiques

Méthode Description
Default ( object seed ) : System.Guid

Default GUID generation algorithm.

Sequential ( object seed ) : System.Guid

Returns sequentially incremented GUID. The specified seed is ignored. Every consecutive call to this method will increase the last returned GUID by 1 and return its value.

Method Details

Default() public static méthode

Default GUID generation algorithm.
public static Default ( object seed ) : System.Guid
seed object The seed.
Résultat System.Guid

Sequential() public static méthode

Returns sequentially incremented GUID. The specified seed is ignored. Every consecutive call to this method will increase the last returned GUID by 1 and return its value.
public static Sequential ( object seed ) : System.Guid
seed object The seed.
Résultat System.Guid