다음을 통해 공유


ServiceDescriptionCollection.GetPortType(XmlQualifiedName) 메서드

정의

지정된 이름을 사용하여 ServiceDescriptionCollection을 검색하고 컬렉션에 들어 있는 PortType 인스턴스 중 하나의 멤버인 ServiceDescription를 반환합니다.

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

매개 변수

name
XmlQualifiedName

참조로 전달된 XmlQualifiedName이며 반환된 Name를 통해 해당 PortType 속성을 공유합니다.

반환

PortType

지정된 이름을 가진 PortType입니다.

예외

지정된 PortType가 컬렉션에 있는 ServiceDescription 인스턴스의 멤버가 아닌 경우

예제

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

적용 대상