ServiceDescriptionImporter.Schemas Propiedad

Definición

Obtiene el objeto XmlSchemas utilizado por la propiedad ServiceDescriptions.

public:
 property System::Xml::Serialization::XmlSchemas ^ Schemas { System::Xml::Serialization::XmlSchemas ^ get(); };
public System.Xml.Serialization.XmlSchemas Schemas { get; }
member this.Schemas : System.Xml.Serialization.XmlSchemas
Public ReadOnly Property Schemas As XmlSchemas

Valor de propiedad

XmlSchemas

Objeto XmlSchemas que contiene los esquemas XML utilizados por las instancias de ServiceDescription de la colección ServiceDescriptions.

Ejemplos

En el ejemplo siguiente se muestra el uso de la Schemas propiedad .

// 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);

Se aplica a