Share via


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

2/27/2008

Gets a list of cash units supported by the bill dispenser 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.

The CashUnits structure actually contains two integer arrays that contain units of bills and coins that can be used with both Cash Changers, Bill Dispensers, and other devices.

Bill Dispensers only use the Bills array of CashUnits.

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

Example

The following is a sample of typical CurrencyCashList values in Japan:

  • 1000, 5000, 10000

These values in the Bills array of the CashUnits structure held by CurrencyCashList would indicate that 1000, 5000, and 10000-yen bills may be used with this bill dispenser.

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

BillDispenser Class
BillDispenser Members
Microsoft.PointOfService Namespace
CurrencyCode
CashUnits