SoapNormalizedString.Parse(String) Method

Definition

Converts the specified String into a SoapNormalizedString object.

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

Parameters

value
String

The String to convert.

Returns

A SoapNormalizedString object obtained from value.

Exceptions

value contains invalid characters (0xD, 0xA, or 0x9).

Examples

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

// Parse the test string.
SoapNormalizedString^ normalized = SoapNormalizedString::Parse(
   testString );
// Parse the test string.
SoapNormalizedString normalized =
    SoapNormalizedString.Parse(testString);

Applies to