SoapHexBinary.Parse(String) Method

Definition

Converts the specified String into a SoapHexBinary object.

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

Parameters

value
String

The String to convert.

Returns

A SoapHexBinary 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 SoapHexBinary class.

// Parse an XSD formatted string to create a SoapHexBinary object.
String^ xsdHexBinary = L"3f789ABC";
SoapHexBinary^ hexBinary = SoapHexBinary::Parse( xsdHexBinary );
// Parse an XSD formatted string to create a SoapHexBinary object.
string xsdHexBinary = "3f789ABC";
SoapHexBinary hexBinary = SoapHexBinary.Parse(xsdHexBinary);

Applies to