ServiceDescriptionImporter::Schemas Property

 

Gets the XmlSchemas used by the ServiceDescriptions property.

Namespace:   System.Web.Services.Description
Assembly:  System.Web.Services (in System.Web.Services.dll)

public:
property XmlSchemas^ Schemas {
	XmlSchemas^ get();
}

Property Value

Type: System.Xml.Serialization::XmlSchemas^

An XmlSchemas object that contains the XML schemas used by the ServiceDescription instances in the ServiceDescriptions collection.

The following example illustrates the use of the Schemas property.

// Report on the service descriptions.
Console::WriteLine( "Importing {0} service descriptions with {1} associated schemas.", importer->ServiceDescriptions->Count, importer->Schemas->Count );

.NET Framework
Available since 1.1
Return to top
Show: