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许多类公开表示 a ServiceDescriptionFormatExtensionCollection属性的属性,因此构造函数会分配一个Extensions与 Web 服务描述语言中的级别对应的父对象, (WSDL) 层次结构(其中当前ServiceDescriptionFormatExtensionCollection为嵌套)。 有关 WSDL 的更多信息,请参阅 WSDL 规范。

适用于