C# 클래스 NppXmlTreeviewPlugin.Parsers.NppXmlNode

Represents a Notepadd++ Xml Node.
파일 보기 프로젝트 열기: joaoasrosa/nppxmltreeview 1 사용 예제들

공개 메소드들

메소드 설명
FindNppXmlNodeByLine ( int lineNumber, int positionInLine ) : NppXmlNode

Returns the first NppXmlNode for the line number.

TryParse ( string xml, NppXmlNode &nppXmlNode ) : bool

Method to try parse the XML.

비공개 메소드들

메소드 설명
NppXmlNode ( string name, NppXmlNodePosition startPosition ) : System

The default constructor for the class.

NppXmlNode ( string name, NppXmlNodePosition startPosition, NppXmlNode parent ) : System

The default constructor for the class.

ReadChildOrSibling ( XmlTextReader xmlTextReader, int currentDepth, NppXmlNode node ) : void

Method to read a child or a sibling of the node.

메소드 상세

FindNppXmlNodeByLine() 공개 메소드

Returns the first NppXmlNode for the line number.
public FindNppXmlNodeByLine ( int lineNumber, int positionInLine ) : NppXmlNode
lineNumber int The line number.
positionInLine int The position in line.
리턴 NppXmlNode

TryParse() 공개 정적인 메소드

Method to try parse the XML.
public static TryParse ( string xml, NppXmlNode &nppXmlNode ) : bool
xml string The XMl as string.
nppXmlNode NppXmlNode The Notepad++ XmlNode.
리턴 bool