C# 클래스 Nxdb.Node.Document

Representation of an XML document node.
상속: ContainerNode
파일 보기 프로젝트 열기: daveaglick/Nxdb 1 사용 예제들

공개 메소드들

메소드 설명
Document ( string name ) : System

Initializes a new instance of the Document class. Manually constructed nodes are immutable and are not added to the database.

InsertAfter ( System xmlReader ) : void

Document does not support inserting content after it. This method will always throw a NotSupportedException.

InsertBefore ( System xmlReader ) : void

Document does not support inserting content before it. This method will always throw a NotSupportedException.

보호된 메소드들

메소드 설명
CreateXmlNode ( ) : XmlNode

비공개 메소드들

메소드 설명
Document ( ANode aNode, Database database ) : System

메소드 상세

CreateXmlNode() 보호된 메소드

protected CreateXmlNode ( ) : XmlNode
리턴 System.Xml.XmlNode

Document() 공개 메소드

Initializes a new instance of the Document class. Manually constructed nodes are immutable and are not added to the database.
public Document ( string name ) : System
name string The name of the document.
리턴 System

InsertAfter() 공개 메소드

Document does not support inserting content after it. This method will always throw a NotSupportedException.
public InsertAfter ( System xmlReader ) : void
xmlReader System The XML reader to get content from.
리턴 void

InsertBefore() 공개 메소드

Document does not support inserting content before it. This method will always throw a NotSupportedException.
public InsertBefore ( System xmlReader ) : void
xmlReader System The XML reader to get content from.
리턴 void