ServiceDescriptionCollection.GetPortType(XmlQualifiedName) Método

Definición

ServiceDescriptionCollection Busca y devuelve con PortType el nombre especificado que es miembro de una de las ServiceDescription instancias contenidas en la colección.

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

Parámetros

name
XmlQualifiedName

, XmlQualifiedNamepasado por referencia, cuya Name propiedad se comparte mediante el PortType devuelto.

Devoluciones

PortType con el nombre especificado.

Excepciones

El objeto especificado PortType no es miembro de ninguna ServiceDescription instancia de la colección.

Ejemplos

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

// Get the PortType from the collection.
myCollection->GetPortType( myXmlQualifiedName );
// Construct an XML qualified name.
XmlQualifiedName myXmlQualifiedName =
   new XmlQualifiedName("MathServiceSoap","http://tempuri2.org/");
// Get the PortType from the collection.
PortType myPort = myCollection.GetPortType(myXmlQualifiedName);
' Construct an XML qualified name.
Dim myXmlQualifiedName As _
   New XmlQualifiedName("MathServiceSoap", "http://tempuri2.org/")
' Get the PortType from the collection.
Dim myPort As PortType = myCollection.GetPortType(myXmlQualifiedName)

Se aplica a