Compartilhar via


ServiceDescriptionCollection.GetPortType(XmlQualifiedName) Método

Definição

Pesquisa a ServiceDescriptionCollection e retorna o PortType com o nome que é um membro de uma das instâncias de ServiceDescription contidas na coleção.

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

O XmlQualifiedName, passado por referência, cuja propriedade Name é compartilhada pelo PortType retornado.

Retornos

PortType

O PortType com o nome especificado.

Exceções

O PortType especificado não é um membro de nenhuma instância de ServiceDescription dentro da coleção.

Exemplos

// 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)

Aplica-se a