Share via


BillAcceptor.DepositCounts Property (POS for .NET v1.12 SDK Documentation)

2/27/2008

Gets the total count of all the cash in the Bill Acceptor.

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

Syntax

'Declaration
Public MustOverride ReadOnly Property DepositCounts As CashCount()
public abstract CashCount[] DepositCounts { get; }
public:
virtual property array<CashCount>^ DepositCounts {
    array<CashCount>^ get () abstract;
}
/** @property */
public abstract CashCount[] get_DepositCounts ()
public abstract function get DepositCounts () : CashCount[]

Remarks

Holds the total count of all the cash in the Bill Acceptor. Currency codes inside the string are the same as the DepositCashList property, and follow the same order.

For example, if the currency is Japanese yen and string of the DepositCounts property is set to 1000:80,5000:77,10000:0,50000:54,100:0,500000:87, after the call to the BeginDeposit method there would be 80 one thousand yen bills, 77 five thousand yen bills, 54 fifty thousand yen bills, and 87 five hundred thousand yen bills in the Bill Acceptor.

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

BillAcceptor Class
BillAcceptor Members
Microsoft.PointOfService Namespace
BillAcceptor.CurrencyCode Property