Class QRCode
Encapsulates information about a QR code.
Inherited Members
Namespace: Evergine.Framework.XR.QR
Assembly: Evergine.Framework.dll
Syntax
public abstract class QRCode
Constructors
QRCode(Guid, string)
Initializes a new instance of the QRCode class.
Declaration
public QRCode(Guid id, string data)
Parameters
Type | Name | Description |
---|---|---|
Guid | id | The unique id that identifies this QR code. |
string | data | The decoded QR code data. |
Properties
Data
Gets the decoded QR code data.
Declaration
public string Data { get; }
Property Value
Type | Description |
---|---|
string |
Id
Gets a unique id that identifies this QR code for this session.
Declaration
public Guid Id { get; }
Property Value
Type | Description |
---|---|
Guid |
LastDetectedTime
Gets the last detected time.
Declaration
public abstract DateTimeOffset LastDetectedTime { get; }
Property Value
Type | Description |
---|---|
DateTimeOffset |
PhysicalSideLength
Gets the physical width and height of this QR code in meters.
Declaration
public abstract float PhysicalSideLength { get; }
Property Value
Type | Description |
---|---|
float |
Transform
Gets the transform of this QR code.
Declaration
public abstract Matrix4x4? Transform { get; }
Property Value
Type | Description |
---|---|
Matrix4x4? |