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

2/27/2008

Gets a list of cash units supported in the cash changer for the currency represented by the CurrencyCode property.

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

Syntax

'Declaration
Public MustOverride ReadOnly Property CurrencyCashList As CashUnits
public abstract CashUnits CurrencyCashList { get; }
public:
virtual property CashUnits CurrencyCashList {
    CashUnits get () abstract;
}
/** @property */
public abstract CashUnits get_CurrencyCashList ()
public abstract function get CurrencyCashList () : CashUnits

Remarks

CurrencyCashList holds a CashUnits structure that contains an array of supported cash units in the currency represented by the CurrencyCode property.

This property is initialized by the Open method, and is updated when the CurrencyCode property is set.

Example

Given a currency code of JPY, and the following CashUnits structure:

Coins = 1, 5, 10, 50, 100, 500
Bills = 1000, 5000, 10000

The cash changer can use 1, 5, 10, 50, 100, and 500-yen coins; and can use 1000, 5000, and 10000-yen bills.

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
CashUnits
CurrencyCode