ServiceDescriptionImporter.ServiceDescriptions Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient la collection des instances ServiceDescription à importer.
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
Valeur de propriété
Instance de ServiceDescriptionCollection contenant les instances de ServiceDescription susceptibles d'être importées par l'instance de ServiceDescriptionImporter.
Exemples
L’exemple suivant illustre l’utilisation de la ServiceDescriptions propriété.
// 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);
Remarques
Comme pour toute collection qui forme une propriété en lecture seule, les membres peuvent être ajoutés à la collection, supprimés de la collection ou modifiés à l’aide des méthodes exposées par la collection. Vous pouvez également utiliser la AddServiceDescription méthode pour ajouter des membres à cette collection.