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クラスの多くは を表すプロパティをExtensions
ServiceDescriptionFormatExtensionCollection公開するため、コンストラクターは、現在ServiceDescriptionFormatExtensionCollection
のが入れ子になっている Web サービス記述言語 (WSDL) 階層内のレベルに対応する親オブジェクトを割り当てます。 WSDL の詳細については、WSDL 仕様を参照してください。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET