SoapNonNegativeInteger.Value Property

Definition

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

Property Value

A Decimal that indicates the numeric value of the current instance.

Exceptions

value is less than 0.

Examples

The following code example shows how to use the Value property. This code example is part of a larger example that is provided for the SoapNonNegativeInteger class.

// Print the value of the SoapNonNegativeInteger object.
Console::WriteLine( L"The value of the SoapNonNegativeInteger "
L"object is {0}.", xsdInteger->Value );
// Print the value of the SoapNonNegativeInteger object.
Console.WriteLine(
    "The value of the SoapNonNegativeInteger " +
    "object is {0}.", xsdInteger.Value);

Applies to