Compartilhar via


PaymentCurrencyAmount Construtores

Definição

Sobrecargas

PaymentCurrencyAmount(String, String)

Cria um novo objeto PaymentCurrencyAmount

PaymentCurrencyAmount(String, String, String)

Cria um novo objeto PaymentCurrencyAmount.

PaymentCurrencyAmount(String, String)

Cria um novo objeto 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)

Parâmetros

value
String

Platform::String

winrt::hstring

O valor monetário. Uma exceção será gerada se esse valor não corresponder ao padrão regex a seguir.

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

Platform::String

winrt::hstring

O identificador de moeda. O CurrencySystem padrão é urn:iso:std:iso:4217.

Importante

A validade dos valores de moeda não é imposta.

Aplica-se a

PaymentCurrencyAmount(String, String, String)

Cria um novo objeto 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)

Parâmetros

value
String

Platform::String

winrt::hstring

O valor monetário. Uma exceção será gerada se esse valor não corresponder ao padrão regex a seguir.

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

Platform::String

winrt::hstring

A moeda. Os valores válidos são determinados por currencySystem. Por exemplo, se currencySystem for urn:iso:std:iso:4217, USD será um valor de moeda válido.

Importante

A validade dos valores de moeda não é imposta.

currencySystem
String

Platform::String

winrt::hstring

O sistema de moedas.

Aplica-se a