XmlSchemaSet.Remove(XmlSchema) Method

Definition

Removes the specified XML Schema definition language (XSD) schema from the XmlSchemaSet.

C#
public System.Xml.Schema.XmlSchema? Remove(System.Xml.Schema.XmlSchema schema);
C#
public System.Xml.Schema.XmlSchema Remove(System.Xml.Schema.XmlSchema schema);

Parameters

schema
XmlSchema

The XmlSchema object to remove from the XmlSchemaSet.

Returns

The XmlSchema object removed from the XmlSchemaSet or null if the schema was not found in the XmlSchemaSet.

Exceptions

The schema is not a valid schema.

The XmlSchema passed as a parameter is null.

Examples

The following example illustrates adding multiple schemas to an XmlSchemaSet, then removing one of the schemas using the Remove method.

C#
XmlSchemaSet schemaSet = new XmlSchemaSet();
schemaSet.Add("http://www.contoso.com/retail", "http://www.contoso.com/retail.xsd");
schemaSet.Add("http://www.contoso.com/books", "http://www.contoso.com/books.xsd");
schemaSet.Add("http://www.contoso.com/music", "http://www.contoso.com/music.xsd");

foreach (XmlSchema schema in schemaSet.Schemas())
{
    if (schema.TargetNamespace == "http://www.contoso.com/music")
    {
        schemaSet.Remove(schema);
    }
}

Remarks

Removing a schema from the XmlSchemaSet sets the IsCompiled property to false.

Applies to

Produkt Verzie
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1