次の方法で共有


PaymentCurrencyAmount コンストラクター

定義

オーバーロード

PaymentCurrencyAmount(String, String)

新しい PaymentCurrencyAmount オブジェクトを作成 します

PaymentCurrencyAmount(String, String, String)

新しい PaymentCurrencyAmount オブジェクトを作成します。

PaymentCurrencyAmount(String, String)

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

通貨値。 この値が次の正規表現パターンと一致しない場合は、例外がスローされます。

^-?[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

通貨値。 この値が次の正規表現パターンと一致しない場合は、例外がスローされます。

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

Platform::String

winrt::hstring

通貨。 有効な値は currencySystem によって決まります。 たとえば、 currencySystem が urn:iso:std:iso:4217 の場合、 USD は有効な通貨値です。

重要

通貨値の有効性は適用されません。

currencySystem
String

Platform::String

winrt::hstring

通貨システム。

適用対象