Example #1
0
 /// <summary>
 /// Returns the timestamp previously stored in a COMB Guid value.
 /// </summary>
 public DateTime GetTimestamp(Guid value) => Comb.GetTimestamp(value);
Example #2
0
 /// <summary>
 /// Returns a new Guid COMB, consisting of the provided Guid and provided timestamp.
 /// </summary>
 public Guid Create(Guid value, DateTime timestamp) => Comb.Create(value, timestamp);
Example #3
0
 /// <summary>
 /// Returns a new Guid COMB, consisting of the specified Guid combined with the current UTC timestamp.
 /// </summary>
 public Guid Create(Guid value) => Comb.Create(value);
Example #4
0
 /// <summary>
 /// Returns a new Guid COMB, consisting of a random Guid combined with the provided timestamp.
 /// </summary>
 public Guid Create(DateTime timestamp) => Comb.Create(timestamp);
Example #5
0
 /// <summary>
 /// Returns a new Guid COMB, consisting of a random Guid combined with the current UTC timestamp.
 /// </summary>
 public Guid Create() => Comb.Create();