Exemplo n.º 1
0
 public IActionResult AllTestXml()
 {
     return(Ok(new
     {
         value1 = _xmlConfig.GetValue("aa", XmlConfig.DEFAULT_NODE),
         value2 = _xmlConfig.GetNodes(),
         value3 = _xmlConfig.GetAllValue()
     }));
 }