Condividi tramite


ServiceDescriptionCollection.GetPortType(XmlQualifiedName) Metodo

Definizione

Effettua una ricerca in ServiceDescriptionCollection e restituisce l'oggetto PortType con il nome specificato che è un membro di una delle istanze di ServiceDescription contenute nell'insieme.

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

Parametri

name
XmlQualifiedName

Oggetto XmlQualifiedName, passato per riferimento, la cui proprietà Name è condivisa dall'oggetto PortType restituito.

Restituisce

PortType con il nome specificato.

Eccezioni

L'oggetto PortType specificato non è un membro delle istanze di ServiceDescription all'interno dell'insieme.

Esempio

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

Si applica a