XmlSchemaSet Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the XmlSchemaSet class.
Overloads
XmlSchemaSet() |
Initializes a new instance of the XmlSchemaSet class. |
XmlSchemaSet(XmlNameTable) |
Initializes a new instance of the XmlSchemaSet class with the specified XmlNameTable. |
XmlSchemaSet()
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
Initializes a new instance of the XmlSchemaSet class.
public:
XmlSchemaSet();
public XmlSchemaSet ();
Public Sub New ()
Applies to
XmlSchemaSet(XmlNameTable)
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
- Source:
- XmlSchemaSet.cs
Initializes a new instance of the XmlSchemaSet class with the specified XmlNameTable.
public:
XmlSchemaSet(System::Xml::XmlNameTable ^ nameTable);
public XmlSchemaSet (System.Xml.XmlNameTable nameTable);
new System.Xml.Schema.XmlSchemaSet : System.Xml.XmlNameTable -> System.Xml.Schema.XmlSchemaSet
Public Sub New (nameTable As XmlNameTable)
Parameters
- nameTable
- XmlNameTable
The XmlNameTable object to use.
Exceptions
The XmlNameTable object passed as a parameter is null
.