Struct GuidPacketRepresentation
Namespace: Aspose.Imaging.FileFormats.Emf.Dtyp.CommonDataStructures
Assembly: Aspose.Imaging.dll (25.2.0)
The packet version is used within block protocols. The following diagram represents a GUID as an opaque sequence of bytes. A GUID, also known as a UUID, is a 16-byte structure, intended to serve as a unique identifier for an object. There are three representations of a GUID, as described in the following sections.
public struct GuidPacketRepresentation
Inherited Members
object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()
Constructors
GuidPacketRepresentation(int, short, short, long)
Initializes a new instance of the Aspose.Imaging.FileFormats.Emf.Dtyp.CommonDataStructures.GuidPacketRepresentation struct.
public GuidPacketRepresentation(int data1, short data2, short data3, long data4)
Parameters
data1
int
The data1.
data2
short
The data2.
data3
short
The data3.
data4
long
The data4.
Properties
Data1
Gets or sets the value of the Data1 member (section 2.3.4), in little-endian byte order.
public int Data1 { get; set; }
Property Value
Data2
Gets or sets the value of the Data2 member (section 2.3.4), in little-endian byte order.
public short Data2 { get; set; }
Property Value
Data3
Gets or sets the value of the Data3 member (section 2.3.4), in little-endian byte order.
public short Data3 { get; set; }
Property Value
Data4
Gets or sets the value of the Data4 member (section 2.3.4), in little-endian byte order.
public long Data4 { get; set; }
Property Value
Methods
ToString()
Returns a System.String that represents this instance.
public override string ToString()
Returns
A System.String that represents this instance.