| AscendingGuidGeneratorGenerateId Method (Int64, Byte, Int32) | 
 
            Generates a Guid for a document. Note - this is purely used for
            unit testing
            
 
    Namespace: 
   MongoDB.Bson.Serialization.IdGenerators
    Assembly:
   MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
 Syntax
Syntaxpublic Object GenerateId(
	long tickCount,
	byte[] machineProcessId,
	int increment
)
Public Function GenerateId ( 
	tickCount As Long,
	machineProcessId As Byte(),
	increment As Integer
) As Object
member GenerateId : 
        tickCount : int64 * 
        machineProcessId : byte[] * 
        increment : int -> Object 
Parameters
- tickCount
- Type: SystemInt64
 The time portion of the Guid
- machineProcessId
- Type: SystemByte
 A 5 byte array with the first 3 bytes
            representing a machine id and the next 2 representing a process
            id
- increment
- Type: SystemInt32
 The increment portion of the Guid. Used
            to distinguish between 2 Guids that have the timestamp. Note
            only the least significant 3 bytes are used.
Return Value
Type: 
ObjectA Guid.
 See Also
See Also