XmlSchemaCollection Constructors

Definition

Initializes a new instance of the XmlSchemaCollection class.

Overloads

XmlSchemaCollection()

Initializes a new instance of the XmlSchemaCollection class.

XmlSchemaCollection(XmlNameTable)

Initializes a new instance of the XmlSchemaCollection class with the specified XmlNameTable. The XmlNameTable is used when loading schemas.

Remarks

Important

The XmlSchemaCollection class is obsolete in the .NET Framework version 2.0 and has been replaced by the XmlSchemaSet class.

XmlSchemaCollection()

Source:
XmlSchemaCollection.cs
Source:
XmlSchemaCollection.cs
Source:
XmlSchemaCollection.cs

Initializes a new instance of the XmlSchemaCollection class.

public:
 XmlSchemaCollection();
public XmlSchemaCollection ();
Public Sub New ()

Remarks

Important

The XmlSchemaCollection class is obsolete in the .NET Framework version 2.0 and has been replaced by the XmlSchemaSet class.

Applies to

XmlSchemaCollection(XmlNameTable)

Source:
XmlSchemaCollection.cs
Source:
XmlSchemaCollection.cs
Source:
XmlSchemaCollection.cs

Initializes a new instance of the XmlSchemaCollection class with the specified XmlNameTable. The XmlNameTable is used when loading schemas.

public:
 XmlSchemaCollection(System::Xml::XmlNameTable ^ nametable);
public XmlSchemaCollection (System.Xml.XmlNameTable nametable);
new System.Xml.Schema.XmlSchemaCollection : System.Xml.XmlNameTable -> System.Xml.Schema.XmlSchemaCollection
Public Sub New (nametable As XmlNameTable)

Parameters

nametable
XmlNameTable

The XmlNameTable to use.

Applies to