SchemaImporterExtensionCollection.Remove Method
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.
Removes an object from the collection.
Overloads
Remove(String) |
Removes the SchemaImporterExtension, specified by name, from the collection. |
Remove(SchemaImporterExtension) |
Removes the specified SchemaImporterExtension from the collection. |
Remove(String)
Removes the SchemaImporterExtension, specified by name, from the collection.
public:
void Remove(System::String ^ name);
public void Remove (string name);
member this.Remove : string -> unit
Public Sub Remove (name As String)
Parameters
- name
- String
The name of the SchemaImporterExtension to remove. The name is set using the Add(String, Type) method.
Applies to
Remove(SchemaImporterExtension)
Removes the specified SchemaImporterExtension from the collection.
public:
void Remove(System::Xml::Serialization::Advanced::SchemaImporterExtension ^ extension);
public void Remove (System.Xml.Serialization.Advanced.SchemaImporterExtension extension);
member this.Remove : System.Xml.Serialization.Advanced.SchemaImporterExtension -> unit
Public Sub Remove (extension As SchemaImporterExtension)
Parameters
- extension
- SchemaImporterExtension
The SchemaImporterExtension to remove.