ServiceDescriptionImporter.ServiceDescriptions プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
インポートされる ServiceDescription インスタンスのコレクションを取得します。
public:
property System::Web::Services::Description::ServiceDescriptionCollection ^ ServiceDescriptions { System::Web::Services::Description::ServiceDescriptionCollection ^ get(); };
public System.Web.Services.Description.ServiceDescriptionCollection ServiceDescriptions { get; }
member this.ServiceDescriptions : System.Web.Services.Description.ServiceDescriptionCollection
Public ReadOnly Property ServiceDescriptions As ServiceDescriptionCollection
プロパティ値
ServiceDescriptionCollection インスタンスによってインポートされる予定の ServiceDescription インスタンスを格納する ServiceDescriptionImporter インスタンス。
例
次の例は、 プロパティの使用方法を ServiceDescriptions 示しています。
// Report on the service descriptions.
Console::WriteLine( "Importing {0} service descriptions with {1} associated schemas.", importer->ServiceDescriptions->Count, importer->Schemas->Count );
// Report on the service descriptions.
Console.WriteLine("Importing {0} service descriptions with {1} associated schemas.",
importer.ServiceDescriptions.Count, importer.Schemas.Count);
注釈
読み取り専用プロパティを形成するコレクションと同様に、メンバーをコレクションに追加したり、コレクションから削除したり、コレクションによって公開されるメソッドを使用して変更したりできます。 メソッドを使用して、 AddServiceDescription このコレクションにメンバーを追加することもできます。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET