UUID(Int64, Int64) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Constructs a new UUID
using the specified data.
[Android.Runtime.Register(".ctor", "(JJ)V", "")]
public UUID (long mostSigBits, long leastSigBits);
[<Android.Runtime.Register(".ctor", "(JJ)V", "")>]
new Java.Util.UUID : int64 * int64 -> Java.Util.UUID
Parameters
- mostSigBits
- Int64
The most significant bits of the UUID
- leastSigBits
- Int64
The least significant bits of the UUID
- Attributes
Remarks
Constructs a new UUID
using the specified data. mostSigBits
is used for the most significant 64 bits of the UUID
and leastSigBits
becomes the least significant 64 bits of the UUID
.
Java documentation for java.util.UUID.UUID(long, long)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.