SoapNonPositiveInteger.Parse(String) Method

Definition

Converts the specified String into a SoapNonPositiveInteger object.

public:
 static System::Runtime::Remoting::Metadata::W3cXsd2001::SoapNonPositiveInteger ^ Parse(System::String ^ value);
public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger Parse (string value);
static member Parse : string -> System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNonPositiveInteger
Public Shared Function Parse (value As String) As SoapNonPositiveInteger

Parameters

value
String

The String to convert.

Returns

A SoapNonPositiveInteger object that is obtained from value.

Examples

The following code example shows how to use the Parse method. This code example is part of a larger example that is provided for the SoapNonPositiveInteger class.

// Parse an XSD formatted string to create a SoapNonPositiveInteger
// object.
String^ xsdIntegerString = L"-13";
SoapNonPositiveInteger^ xsdInteger =
   SoapNonPositiveInteger::Parse( xsdIntegerString );
// Parse an XSD formatted string to create a SoapNonPositiveInteger
// object.
string xsdIntegerString = "-13";
SoapNonPositiveInteger xsdInteger =
    SoapNonPositiveInteger.Parse(xsdIntegerString);

Applies to