Partager via


PaymentCurrencyAmount Constructeurs

Définition

Surcharges

PaymentCurrencyAmount(String, String)

Crée un objet PaymentCurrencyAmount

PaymentCurrencyAmount(String, String, String)

Crée un objet 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)

Paramètres

value
String

Platform::String

winrt::hstring

Valeur monétaire. Une exception est levée si cette valeur ne correspond pas au modèle regex suivant.

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

Platform::String

winrt::hstring

Identificateur de devise. Le CurrencySystem par défaut est urn:iso:std:iso:4217.

Important

La validité des valeurs monétaires n’est pas appliquée.

S’applique à

PaymentCurrencyAmount(String, String, String)

Crée un objet 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)

Paramètres

value
String

Platform::String

winrt::hstring

Valeur monétaire. Une exception est levée si cette valeur ne correspond pas au modèle regex suivant.

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

Platform::String

winrt::hstring

Devise. Les valeurs valides sont déterminées par currencySystem. Par exemple, si currencySystem est urn:iso:std:iso:4217, USD est une valeur monétaire valide.

Important

La validité des valeurs monétaires n’est pas appliquée.

currencySystem
String

Platform::String

winrt::hstring

Système monétaire.

S’applique à