SoapAnyUri Class
.NET Framework 2.0
Wraps an XSD anyURI type.
Namespace: System.Runtime.Remoting.Metadata.W3cXsd2001
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class SoapAnyUri Implements ISoapXsd 'Usage Dim instance As SoapAnyUri
/** @attribute SerializableAttribute() */ /** @attribute ComVisibleAttribute(true) */ public final class SoapAnyUri implements ISoapXsd
SerializableAttribute ComVisibleAttribute(true) public final class SoapAnyUri implements ISoapXsd
For more information about XSD data types, see the "XML Data Types Reference" in the MSDN Library at http://msdn.microsoft.com/library.
The following code example shows how to use the members in the SoapAnyUri class to convert between a SoapAnyUri object and an XSD anyURI 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 SoapAnyUri object.
String xsdAnyUri = "http://localhost:8080/WebService";
SoapAnyUri anyUri = SoapAnyUri.Parse(xsdAnyUri);
// Print the value of the SoapAnyUri object in XSD format.
Console.WriteLine("The SoapAnyUri object in XSD format is {0}.",
anyUri.ToString());
// Print the XSD type string of the SoapAnyUri object.
Console.WriteLine("The XSD type of the SoapAnyUri " + "object is {0}.",
anyUri.GetXsdType());
// Print the value of the SoapAnyUri object.
Console.WriteLine("The value of the SoapAnyUri object is {0}.",
anyUri.get_Value());
// Print the XSD type string of the SoapAnyUri class.
Console.WriteLine("The XSD type of the SoapAnyUri class " + "is {0}.",
SoapAnyUri.get_XsdType());
} //main
} //Demo
Windows 98, Windows 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 .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: