SoapNegativeInteger.Value Propriété
Définition
Obtient ou définit la valeur numérique de l'instance actuelle.Gets or sets the numeric value of the current instance.
public:
property System::Decimal Value { System::Decimal get(); void set(System::Decimal value); };
public decimal Value { get; set; }
member this.Value : decimal with get, set
Public Property Value As Decimal
Valeur de propriété
Decimal qui indique la valeur numérique de l'instance actuelle.A Decimal that indicates the numeric value of the current instance.
Exceptions
value
est supérieur à -1.value
is greater than -1.
Exemples
L'exemple de code suivant montre comment utiliser la propriété Value.The following code example shows how to use the Value property. Cet exemple de code fait partie d’un exemple plus complet fourni pour la SoapNegativeInteger classe.This code example is part of a larger example that is provided for the SoapNegativeInteger class.
// Print the value of the SoapNegativeInteger object.
Console::WriteLine( L"The value of the SoapNegativeInteger "
L"object is {0}.", xsdInteger->Value );
// Print the value of the SoapNegativeInteger object.
Console.WriteLine(
"The value of the SoapNegativeInteger " +
"object is {0}.", xsdInteger.Value);