SoapHexBinary Class
.NET Framework 3.0
Wraps an XSD hexBinary type.
Namespace: System.Runtime.Remoting.Metadata.W3cXsd2001
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class SoapHexBinary Implements ISoapXsd 'Usage Dim instance As SoapHexBinary
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public final class SoapHexBinary implements ISoapXsd
SerializableAttribute ComVisibleAttribute(true) public final class SoapHexBinary implements ISoapXsd
Not applicable.
The following code example shows how to use the members in the SoapHexBinary class to convert between a SoapHexBinary object and an XSD hexBinary string.
import System.*;
import System.Runtime.Remoting.Metadata.W3cXsd2001.*;
public class Demo
{
public static void main(String[] args)
{
// Parse an XSD formatted string to create a SoapHexBinary object.
String xsdHexBinary = "3f789ABC";
SoapHexBinary hexBinary = SoapHexBinary.Parse(xsdHexBinary);
// Print the value of the SoapHexBinary object in XSD format.
Console.WriteLine("The SoapHexBinary object in XSD format is {0}.",
hexBinary.ToString());
// Print the XSD type string of this particular SoapHexBinary object.
Console.WriteLine("The XSD type of the SoapHexBinary object is {0}.",
hexBinary.GetXsdType());
// Print the value of the SoapHexBinary object.
Console.Write("hexBinary.Value contains:");
for (int i = 0; i < hexBinary.get_Value().get_Length(); ++i) {
Console.Write(" " + hexBinary.get_Value().get_Item(i));
}
Console.WriteLine();
// Print the XSD type string of the SoapHexBinary class.
Console.WriteLine("The XSD type of the class SoapHexBinary is {0}.",
SoapHexBinary.get_XsdType());
} //main
} //Demo
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: