ServiceDescriptionFormatExtensionCollection(Object) 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 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 规范。