Method | Description | |
---|---|---|
Currency ( ) : System.Collections.Generic | ||
GetRates ( string currency ) : Rates |
Retrieve the rates of a given currency.
|
|
SetRate ( string currency, string bid, string ask ) : Rates |
Set a currency rate.
|
|
UpdateRate ( string currency, string bid, string ask ) : Rates |
Update a currency rate.
|
public Currency ( ) : System.Collections.Generic | ||
return | System.Collections.Generic |
public GetRates ( string currency ) : Rates | ||
currency | string | The currency. |
return | Rates |
public SetRate ( string currency, string bid, string ask ) : Rates | ||
currency | string | The currency to add. |
bid | string | The 'bid' rate. |
ask | string | The 'ask' rate. |
return | Rates |
public UpdateRate ( string currency, string bid, string ask ) : Rates | ||
currency | string | The currency to update. |
bid | string | The 'bid' rate. |
ask | string | The 'ask' rate. |
return | Rates |