C# 클래스 HandCoded.Xml.MutableNodeList

The MutableNodeList class implements a XmlNodeList that can have its contents changed.
상속: System.Xml.XmlNodeList
파일 보기 프로젝트 열기: formicary/fpml-toolkit-csharp 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
EMPTY System.Xml.XmlNodeList

공개 메소드들

메소드 설명
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.

메소드 상세

Add() 공개 메소드

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

AddAll() 공개 메소드

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

Clear() 공개 메소드

Removes all XmlNode instances from the underlying collection.
public Clear ( ) : void
리턴 void

GetEnumerator() 공개 메소드

Returns an IEnumerator than can be used to iterate through the underlying collection.
public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

Item() 공개 메소드

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

MutableNodeList() 공개 메소드

Constructs an empty MutableNodeList instance.
public MutableNodeList ( ) : System
리턴 System

Remove() 공개 메소드

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

RemoveAll() 공개 메소드

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.
리턴 void

프로퍼티 상세

EMPTY 공개적으로 정적으로 프로퍼티

An empty XmlNodeList
public static XmlNodeList,System.Xml EMPTY
리턴 System.Xml.XmlNodeList