Database.XmlSchemaCollections Property
Represents a collection of XmlSchemaCollection objects. Each XmlSchemaCollection object represents an XML schema defined on the database.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Deklaracja
<SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, GetType(XmlSchemaCollection))> _
Public ReadOnly Property XmlSchemaCollections As XmlSchemaCollectionCollection
[SfcObjectAttribute(SfcContainerRelationship.ObjectContainer, SfcContainerCardinality.ZeroToAny, typeof(XmlSchemaCollection))]
public XmlSchemaCollectionCollection XmlSchemaCollections { get; }
[SfcObjectAttribute(SfcContainerRelationship::ObjectContainer, SfcContainerCardinality::ZeroToAny, typeof(XmlSchemaCollection))]
public:
property XmlSchemaCollectionCollection^ XmlSchemaCollections {
XmlSchemaCollectionCollection^ get ();
}
/** @property */
public XmlSchemaCollectionCollection get_XmlSchemaCollections ()
public function get XmlSchemaCollections () : XmlSchemaCollectionCollection
Property Value
A XmlSchemaCollectionCollection object that represents all the XML schemas defined on the database.
Remarks
Specific XML schema collections can be referenced by using this collection by specifying the name of the XML schema collection. To add a new XML schema collection to the collection, call the XML schema collection constructor XmlSchemaCollection.
Example
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")
'Display all the XML schema collections in the database.
Dim xsc As XmlSchemaCollection
For Each xsc In db.XmlSchemaCollections
Console.WriteLine(xsc.Name)
Next
Thread Safety
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms
Development Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.
Target Platforms
For a list of the supported platforms, see Hardware and Software Requirements for Installing SQL Server.