C# Class HandCoded.Xml.MutableNodeList

The MutableNodeList class implements a XmlNodeList that can have its contents changed.
Inheritance: System.Xml.XmlNodeList
Afficher le fichier Open project: formicary/fpml-toolkit-csharp Class Usage Examples

Méthodes publiques

Свойство Type Description
EMPTY System.Xml.XmlNodeList

Méthodes publiques

Méthode Description
Add ( XmlNode node ) : void

Adds the indicated XmlNode instance to the current MutableNodeList.

AddAll ( XmlNodeList list ) : void

Adds the contents of the given XmlNodeList into the current MutableNodeList.

Clear ( ) : void

Removes all XmlNode instances from the underlying collection.

GetEnumerator ( ) : IEnumerator

Returns an IEnumerator than can be used to iterate through the underlying collection.

Item ( int index ) : XmlNode

Returns the indicated item from the underlying collection.

MutableNodeList ( ) : System

Constructs an empty MutableNodeList instance.

Remove ( XmlNode node ) : void

Removes in indicated XmlNode from the collection held within the MutableNodeList.

RemoveAll ( XmlNodeList list ) : void

Removes each of the XmlNode instances in the given XmlNodeList from the collection held within the MutableNodeList.

Method Details

Add() public méthode

Adds the indicated XmlNode instance to the current MutableNodeList.
public Add ( XmlNode node ) : void
node System.Xml.XmlNode The to be added.
Résultat void

AddAll() public méthode

Adds the contents of the given XmlNodeList into the current MutableNodeList.
public AddAll ( XmlNodeList list ) : void
list System.Xml.XmlNodeList The to be added.
Résultat void

Clear() public méthode

Removes all XmlNode instances from the underlying collection.
public Clear ( ) : void
Résultat void

GetEnumerator() public méthode

Returns an IEnumerator than can be used to iterate through the underlying collection.
public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

Item() public méthode

Returns the indicated item from the underlying collection.
public Item ( int index ) : XmlNode
index int The position of the required item.
Résultat System.Xml.XmlNode

MutableNodeList() public méthode

Constructs an empty MutableNodeList instance.
public MutableNodeList ( ) : System
Résultat System

Remove() public méthode

Removes in indicated XmlNode from the collection held within the MutableNodeList.
public Remove ( XmlNode node ) : void
node System.Xml.XmlNode The to be removed.
Résultat void

RemoveAll() public méthode

Removes each of the XmlNode instances in the given XmlNodeList from the collection held within the MutableNodeList.
public RemoveAll ( XmlNodeList list ) : void
list System.Xml.XmlNodeList The of instance to remove.
Résultat void

Property Details

EMPTY public_oe static_oe property

An empty XmlNodeList
public static XmlNodeList,System.Xml EMPTY
Résultat System.Xml.XmlNodeList