C# 클래스 Entry.Start.Text, simplexml

The Text object is used to represent a text event. If wraps a node that holds text consumed from the document. These are used by InputNode objects to extract the text values for elements For debugging this exposes the node.
상속: EventToken
파일 보기 프로젝트 열기: ngallagher/simplexml

공개 메소드들

메소드 설명
IsText ( ) : bool

This is true as this event represents a text token. Text tokens are required to provide a value only. So namespace details and the node name will always return null.

Text ( Node, node ) : System

Constructor for the Text object. This creates an event that provides text to the core reader. Text can be in the form of a CDATA section or a normal text entry.

메소드 상세

IsText() 공개 메소드

This is true as this event represents a text token. Text tokens are required to provide a value only. So namespace details and the node name will always return null.
public IsText ( ) : bool
리턴 bool

Text() 공개 메소드

Constructor for the Text object. This creates an event that provides text to the core reader. Text can be in the form of a CDATA section or a normal text entry.
public Text ( Node, node ) : System
node Node, /// this is the node that represents the text value ///
리턴 System