Exemplo n.º 1
0
 public static List <T> FindAll <T>(this XmlKey key)
 {
     return(XmlFactory.Find(key.ToString()).FindAll <T>());
 }
Exemplo n.º 2
0
 public static T Find <T>(this XmlKey key, Predicate <T> match)
 {
     return(XmlFactory.Find(key.ToString()).Find(match));
 }
Exemplo n.º 3
0
 public static List <T> FindAll <T>(this XmlKey key, Predicate <T> match)
 {
     return(XmlService.Find(key.ToString()).FindAll(match));
 }