Share via


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

2/27/2008

Get or sets the Boolean value that indicates whether the DepositAmount and DepositCounts properties are updated in real time.

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

Syntax

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

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

public function set RealTimeDataEnabled (value : boolean)

Remarks

If true and CapRealTimeData is true, each data event fired updates the DepositAmount and DepositCounts properties. Otherwise, DepositAmount and DepositCounts are updated when FixDeposit is called. Setting RealTimeDataEnabled does not cause any change in system behavior until a later BeginDeposit method is performed. This prevents confusion about what would occur if it were modified between a BeginDeposit -EndDeposit pairing.

This property is initialized 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

CashChanger Class
CashChanger Members
Microsoft.PointOfService Namespace
CashChanger.CapRealTimeData Property
CashChanger.DepositAmount Property
CashChanger.DepositCounts Property
CashChanger.BeginDeposit Method
CashChanger.EndDeposit Method
CashChanger.FixDeposit Method