SoapNormalizedString.Parse(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);