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 멤버를 추가할 수도 있습니다.