次の方法で共有


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クラスの多くは を表すプロパティをExtensionsServiceDescriptionFormatExtensionCollection公開するため、コンストラクターは、現在ServiceDescriptionFormatExtensionCollectionのが入れ子になっている Web サービス記述言語 (WSDL) 階層内のレベルに対応する親オブジェクトを割り当てます。 WSDL の詳細については、WSDL 仕様を参照してください。

適用対象