Compartir a través de


ServiceDescriptionCollection.GetService(XmlQualifiedName) Método

Definición

Busca ServiceDescriptionCollection y devuelve Service con el nombre especificado que forma parte de una de las instancias de ServiceDescription incluidas en la colección.

public:
 System::Web::Services::Description::Service ^ GetService(System::Xml::XmlQualifiedName ^ name);
public System.Web.Services.Description.Service GetService (System.Xml.XmlQualifiedName name);
member this.GetService : System.Xml.XmlQualifiedName -> System.Web.Services.Description.Service
Public Function GetService (name As XmlQualifiedName) As Service

Parámetros

name
XmlQualifiedName

XmlQualifiedName, pasada por referencia, cuya propiedad Name la comparte el objeto Service devuelto.

Devoluciones

Servicio con el nombre especificado.

Excepciones

El Service especificado no forma parte de ninguna de las instancias de ServiceDescription incluidas en la colección.

Ejemplos

// Construct an XML qualified name.
XmlQualifiedName^ myXmlQualifiedName =
   gcnew XmlQualifiedName( "MathService","http://tempuri2.org/" );

// Get the Service from the collection.
myCollection->GetService( myXmlQualifiedName );
// Construct an XML qualified name.
XmlQualifiedName myXmlQualifiedName =
   new XmlQualifiedName("MathService", "http://tempuri2.org/");

// Get the Service from the collection.
Service myService = myCollection.GetService(myXmlQualifiedName);
' Construct an XML qualified name.
Dim myXmlQualifiedName As _
   New XmlQualifiedName("MathService", "http://tempuri2.org/")

' Get the Service from the collection.
Dim myService As Service = myCollection.GetService(myXmlQualifiedName)

Se aplica a