SoapAnyUri Clase
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Ajusta un tipo XSD anyURI
.
public ref class SoapAnyUri sealed : System::Runtime::Remoting::Metadata::W3cXsd2001::ISoapXsd
[System.Serializable]
public sealed class SoapAnyUri : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class SoapAnyUri : System.Runtime.Remoting.Metadata.W3cXsd2001.ISoapXsd
[<System.Serializable>]
type SoapAnyUri = class
interface ISoapXsd
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type SoapAnyUri = class
interface ISoapXsd
Public NotInheritable Class SoapAnyUri
Implements ISoapXsd
- Herencia
-
SoapAnyUri
- Atributos
- Implementaciones
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar los miembros de la SoapAnyUri clase para convertir entre un SoapAnyUri objeto y una cadena XSD anyURI
.
#using <System.dll>
#using <System.Runtime.Remoting.dll>
using namespace System;
using namespace System::Runtime::Remoting::Metadata::W3cXsd2001;
int main()
{
// Parse an XSD formatted string to create a SoapAnyUri object.
String^ xsdAnyUri = L"http://localhost:8080/WebService";
SoapAnyUri^ anyUri = SoapAnyUri::Parse( xsdAnyUri );
// Print the value of the SoapAnyUri object in XSD format.
Console::WriteLine( L"The SoapAnyUri object in XSD format is {0}.", anyUri );
// Print the XSD type string of the SoapAnyUri object.
Console::WriteLine( L"The XSD type of the SoapAnyUri "
L"object is {0}.", anyUri->GetXsdType() );
// Print the value of the SoapAnyUri object.
Console::WriteLine( L"The value of the SoapAnyUri object is {0}.", anyUri->Value );
// Print the XSD type string of the SoapAnyUri class.
Console::WriteLine( L"The XSD type of the SoapAnyUri class "
L"is {0}.", SoapAnyUri::XsdType );
return 1;
}
using System;
using 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.Value);
// Print the XSD type string of the SoapAnyUri class.
Console.WriteLine(
"The XSD type of the SoapAnyUri class " +
"is {0}.", SoapAnyUri.XsdType);
}
}
Comentarios
Para obtener más información sobre los tipos de datos XSD, vea la Referencia de tipos de datos XML.
Constructores
SoapAnyUri() |
Inicializa una nueva instancia de la clase SoapAnyUri. |
SoapAnyUri(String) |
Inicializa una nueva instancia de la clase SoapAnyUri con el identificador URI especificado. |
Propiedades
Value |
Obtiene o establece un identificador URI. |
XsdType |
Obtiene el lenguaje de definición de esquemas XML (XSD) del tipo SOAP actual. |
Métodos
Equals(Object) |
Determina si el objeto especificado es igual que el objeto actual. (Heredado de Object) |
GetHashCode() |
Sirve como la función hash predeterminada. (Heredado de Object) |
GetType() |
Obtiene el Type de la instancia actual. (Heredado de Object) |
GetXsdType() |
Devuelve el lenguaje de definición de esquemas XML (XSD) del tipo SOAP actual. |
MemberwiseClone() |
Crea una copia superficial del Object actual. (Heredado de Object) |
Parse(String) |
Convierte el objeto String especificado en un objeto SoapAnyUri. |
ToString() |