Exemple #1
0
 void SetValue(string value, XMLParseController controller)
 {
     controller.SetValue(value);
 }
Exemple #2
0
 void AddAttributeValue(string value, XMLParseController controller)
 {
     controller.AddAttributeValue(value);
 }
Exemple #3
0
 XMLParseNode CloseElement(string value, XMLParseController controller)
 {
     controller.CloseElement(value);
     return(null);
 }
Exemple #4
0
 void AddAttributeName(string name, XMLParseController controller)
 {
     controller.AddAttributeName(name);
 }
Exemple #5
0
 void AddElement(string value, XMLParseController controller)
 {
     controller.AddElement(value);
 }