다음을 통해 공유


ServiceDescriptionFormatExtensionCollection(Object) 생성자

정의

ServiceDescriptionFormatExtensionCollection 클래스의 새 인스턴스를 초기화합니다.

public:
 ServiceDescriptionFormatExtensionCollection(System::Object ^ parent);
public ServiceDescriptionFormatExtensionCollection (object parent);
new System.Web.Services.Description.ServiceDescriptionFormatExtensionCollection : obj -> System.Web.Services.Description.ServiceDescriptionFormatExtensionCollection
Public Sub New (parent As Object)

매개 변수

parent
Object

이 컬렉션을 멤버로 사용하는 개체입니다.

예제

ServiceDescription^ myServiceDescription = ServiceDescription::Read( "Sample_cpp.wsdl" );
ServiceDescriptionFormatExtensionCollection^ myCollection = gcnew ServiceDescriptionFormatExtensionCollection( myServiceDescription );
ServiceDescription myServiceDescription =
   ServiceDescription.Read("Sample_CS.wsdl");
ServiceDescriptionFormatExtensionCollection  myCollection =
   new ServiceDescriptionFormatExtensionCollection(myServiceDescription);
Dim myServiceDescription As ServiceDescription = _
        ServiceDescription.Read("Sample_VB.wsdl")
Dim myCollection As New ServiceDescriptionFormatExtensionCollection(myServiceDescription)

설명

이후 대부분의 클래스는 System.Web.Services.Description 네임 스페이스를 노출는 Extensions 속성을 나타내는 ServiceDescriptionFormatExtensionCollection, 생성자는 웹 서비스 설명 언어 (WSDL) 계층 구조 내 수준에 해당 하는 부모 개체를 할당 위치 현재 ServiceDescriptionFormatExtensionCollection 중첩 됩니다. WSDL에 대한 자세한 내용은 WSDL 사양을 참조하세요.

적용 대상