Exemplo n.º 1
0
 public YamlNodeEvent(YamlNodeEventType type, string anchor, string tag, string value)
 {
     Type   = type;
     Anchor = anchor;
     Tag    = tag;
     Value  = value;
 }
Exemplo n.º 2
0
 public YamlNodeEvent(YamlNodeEventType type, AnchorName anchor, TagName tag, string value)
 {
     Type   = type;
     Anchor = anchor;
     Tag    = tag;
     Value  = value;
 }
Exemplo n.º 3
0
			public YamlNodeEvent(YamlNodeEventType type, string anchor, string tag, string value) {
				Type = type;
				Anchor = anchor;
				Tag = tag;
				Value = value;
			}