Click or drag to resize

ObjectId.Unpack Method

Note: This API is now obsolete.

Unpacks a byte array into the components of an ObjectId.

Namespace:  MongoDB.Bson
Assembly:  MongoDB.Bson (in MongoDB.Bson.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntax
[ObsoleteAttribute("This method will be removed in a later release.")]
public static void Unpack(
	byte[] bytes,
	out int timestamp,
	out int machine,
	out short pid,
	out int increment
)

Parameters

bytes
Type:System.Byte[]
A byte array.
timestamp
Type: System.Int32
The timestamp.
machine
Type: System.Int32
The machine hash.
pid
Type: System.Int16
The PID.
increment
Type: System.Int32
The increment.
See Also