C# Class YamlDotNet.Core.Events.NodeEvent

Contains the behavior that is common between node events.
Inheritance: ParsingEvent
Exibir arquivo Open project: aaubry/YamlDotNet Class Usage Examples

Protected Methods

Method Description
NodeEvent ( string anchor, string tag ) : System

Initializes a new instance of the NodeEvent class.

NodeEvent ( string anchor, string tag, Mark start, Mark end ) : System

Initializes a new instance of the NodeEvent class.

Method Details

NodeEvent() protected method

Initializes a new instance of the NodeEvent class.
protected NodeEvent ( string anchor, string tag ) : System
anchor string
tag string
return System

NodeEvent() protected method

Initializes a new instance of the NodeEvent class.
protected NodeEvent ( string anchor, string tag, Mark start, Mark end ) : System
anchor string The anchor.
tag string The tag.
start System.Text.RegularExpressions.Mark The start position of the event.
end System.Text.RegularExpressions.Mark The end position of the event.
return System