Table of Contents

Class RefCountedObjectProfile

Namespace
ScanbotSDK.MAUI.Common
Assembly
ScanbotSDK.Shared.dll

Profile info of a reference-counted stored object.

public class RefCountedObjectProfile
Inheritance
RefCountedObjectProfile
Inherited Members

Properties

SerializedReferences

Number of serialized references to the object. The serialized reference count increases when an ImageRef is written to JSON or a Parcel on Android and decrease when the respective JSON or Parcel is deserialized.

Default is 0

public int SerializedReferences { get; init; }

Property Value

int

StrongReferences

Number of strong references associated with the object. The strong reference count increases when a new instance of a platform ImageRef class is created from the object's unique ID and decreases when the ImageRef instance is destroyed.

Default is 0

public int StrongReferences { get; init; }

Property Value

int

TimestampCreated

Timestamp (milliseconds since the UNIX epoch), at which the object was first created.

public required long TimestampCreated { get; init; }

Property Value

long

UniqueId

Unique ID of the object.

public required string UniqueId { get; init; }

Property Value

string