Share via


Biometrics.RealTimeDataEnabled Property (POS for .NET v1.12 SDK Documentation)

2/27/2008

Gets or sets a Boolean value that indicates whether biometrics data is queued as it is captured.

Namespace: Microsoft.PointOfService
Assembly: Microsoft.PointOfService (in microsoft.pointofservice.dll)

Syntax

'Declaration
Public MustOverride Property RealTimeDataEnabled As Boolean
public abstract bool RealTimeDataEnabled { get; set; }
public:
virtual property bool RealTimeDataEnabled {
    bool get () abstract;
    void set (bool value) abstract;
}
/** @property */
public abstract boolean get_RealTimeDataEnabled ()

/** @property */
public abstract void set_RealTimeDataEnabled (boolean value)
public abstract function get RealTimeDataEnabled () : boolean

public abstract function set RealTimeDataEnabled (value : boolean)

Remarks

If true and CapRealTimeData is true, a series of partial biometric data events is queued as the biometric is captured until biometric capture is stopped. Otherwise, the captured biometric data is queued as a single StatusUpdateEvent when biometric capture is stopped.

Setting RealTimeDataEnabled does not cause any change in system behavior until a later BeginEnrollCapture or BeginVerifyCapture method is performed. This prevents confusion about what would occur if it were modified between a BeginEnrollCapture - EndCapture or BeginVerifyCapture - EndCapture pairing.

This property is initialized to false by the Open method.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread-safe. Any instance members are not guaranteed to be thread-safe.

See Also

Reference

Biometrics Class
Biometrics Members
Microsoft.PointOfService Namespace
Biometrics.EndCapture Method
Biometrics.CapRealTimeData Property
Biometrics.BeginEnrollCapture Method
Biometrics.BeginVerifyCapture Method