ICurrencyConverterServiceGetExchangeRate Method (String, String, Int32) |
Calculates exchange rate for conversion from one currency to another.
Namespace: CMS.EcommerceAssembly: CMS.Ecommerce (in CMS.Ecommerce.dll) Version: 13.0.131
Syntax decimal GetExchangeRate(
string fromCurrencyCode,
string toCurrencyCode,
int siteID
)
Parameters
- fromCurrencyCode
- Type: SystemString
Code of currency in which amount is expressed, e.g. USD, EUR. - toCurrencyCode
- Type: SystemString
Code of currency to convert amount to, e.g. USD, EUR. - siteID
- Type: SystemInt32
ID of the site for which the rate is calculated.
Return Value
Type:
DecimalExchange rate from one currency to another currency on specific site.
Exceptions Exception | Condition |
---|
ArgumentException | Thrown when currency with given code does not exist in the system. |
InvalidCurrencyConversionException | Thrown when conversion fails (e.g. exchange rate not found). |
See Also