OScript API/Built-in Package Index |
The GUID package provides services for manipulating globally unique identifiers (GUIDs). The major functionalities offered in the GUID package are the following:
Specifies a value of type GUID.
Creates a new, random GUID.
Creates a new GUID value from a Bytes array.
Creates a new GUID value from a String.
Convert a GUID value to its Bytes representation.
Creates a String value from a GUID.
Convert a GUID value to its Bytes representation.
Creates a String value from a GUID.
Specifies a value of type GUID.
Creates a new, random GUID. This is a version 4 UUID as described in RFC 4122, section 4.4.
A randomly generated identifier.
Creates a new GUID value from an array of Bytes. A GUID consists of 16 bytes of data.
The value to convert
The GUID value created from the Bytes.
Creates a new GUID value from a String.
The string representation of a GUID begins with '@[' and ends with ']', and consists of 32 digits separated by hyphens:
@[00000000-0000-0000-0000-000000000000]
The value to convert
The GUID value created from the String.
Convert a GUID value to its Bytes representation. A GUID consists of 16 bytes of data.
The value to convert
Bytes representation of the GUID.
Creates a new String value from a GUID.
The string representation of a GUID begins with '@[' and ends with ']', and consists of 32 digits separated by hyphens:
@[00000000-0000-0000-0000-000000000000]
The value to convert
The String representation of the GUID value.
Convert a GUID value to its Bytes representation. A GUID consists of 16 bytes of data.
Bytes representation of the GUID.
Creates a new String value from a GUID. The string representation of a GUID begins with '@[' and ends with ']', and consists of 32 digits separated by hyphens:
@[00000000-0000-0000-0000-000000000000]
The String representation of the GUID value.
Copyright © 2023 OpenText Corporation. All rights reserved. |