共用方式為


PaymentCurrencyAmount 建構函式

定義

多載

PaymentCurrencyAmount(String, String)

建立新的 PaymentCurrencyAmount 物件

PaymentCurrencyAmount(String, String, String)

建立新的 PaymentCurrencyAmount 物件。

PaymentCurrencyAmount(String, String)

建立新的 PaymentCurrencyAmount 物件

public:
 PaymentCurrencyAmount(Platform::String ^ value, Platform::String ^ currency);
 PaymentCurrencyAmount(winrt::hstring const& value, winrt::hstring const& currency);
public PaymentCurrencyAmount(string value, string currency);
function PaymentCurrencyAmount(value, currency)
Public Sub New (value As String, currency As String)

參數

value
String

Platform::String

winrt::hstring

貨幣值。 如果此值不符合下列 RegEx 模式,將會擲回例外狀況。

^-?[0-9]+(\.[0-9]+)?$
currency
String

Platform::String

winrt::hstring

貨幣識別碼。 預設 CurrencySystem 為 urn:iso:std:iso:4217。

重要

不會強制執行貨幣值的有效性。

適用於

PaymentCurrencyAmount(String, String, String)

建立新的 PaymentCurrencyAmount 物件。

public:
 PaymentCurrencyAmount(Platform::String ^ value, Platform::String ^ currency, Platform::String ^ currencySystem);
 PaymentCurrencyAmount(winrt::hstring const& value, winrt::hstring const& currency, winrt::hstring const& currencySystem);
public PaymentCurrencyAmount(string value, string currency, string currencySystem);
function PaymentCurrencyAmount(value, currency, currencySystem)
Public Sub New (value As String, currency As String, currencySystem As String)

參數

value
String

Platform::String

winrt::hstring

貨幣值。 如果此值不符合下列 RegEx 模式,將會擲回例外狀況。

^-?[0-9]+(\.[0-9]+)?$
currency
String

Platform::String

winrt::hstring

貨幣。 有效值是由 currencySystem決定。 例如,如果 currencySystem 是 urn:iso:std:iso:4217, 則 USD 是有效的貨幣值。

重要

不會強制執行貨幣值的有效性。

currencySystem
String

Platform::String

winrt::hstring

貨幣系統。

適用於