Struct GuidPacketRepresentation
- Namespace
- Aspose.Imaging.FileFormats.Emf.Dtyp.CommonDataStructures
- Assembly
- Aspose.Imaging.dll
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
Constructors
GuidPacketRepresentation(int, short, short, long)
Initializes a new instance of the GuidPacketRepresentation struct.
public GuidPacketRepresentation(int data1, short data2, short data3, long data4)
Parameters
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
- int
The data1.
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
- short
The data2.
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
- short
The data3.
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
- long
The data4.
Methods
ToString()
Returns a string that represents this instance.
public override string ToString()