ID Capture Session

Defined in namespace Scandit.DataCapture.ID.Capture

IdCaptureSession
class IdCaptureSession

Added in version 6.10.0

The ID capture session is responsible for keeping the CapturedId data.

Important

The capture session should only be accessed from within OnIdCaptured() to which it is provided as an argument. It is not safe to be accessed from anywhere else since it may be concurrently modified. References to the individual captured IDs can be kept and processed later as they are not further modified.

NewlyCapturedId
CapturedId NewlyCapturedId { get; }

Added in version 6.10.0

Parsed data from a document recognized in the last frame, if any.

NewlyLocalizedOnlyId
LocalizedOnlyId NewlyLocalizedOnlyId { get; }

Added in version 6.10.0

An information about a document or its part localized in the last frame, if any. A document or its part is considered localized when it’s detected in a frame, but its data is not yet extracted.

NewlyRejectedId
RejectedId NewlyRejectedId { get; }

Added in version 6.10.0

An information about a document or its part recognized in a frame, but rejected. A document is rejected if (a) it’s not enabled in the settings (see IdCaptureSettings.SupportedDocuments), (b) it’s a barcode of a correct symbology or a Machine Readable Zone (MRZ), but the data is encoded in an unexpected/incorrect format.

FrameSequenceId
long FrameSequenceId { get; }

Added in version 6.10.0

The identifier of the current frame sequence.

Important

As long as there is no interruptions of frames coming from the camera, the FrameSequenceId will stay the same.