public static T Find <T>(this XmlKey key, Predicate <T> match) { return(XmlService.Find(key.ToString()).Find(match)); }
public static List <T> FindAll <T>(this XmlKey key) { return(XmlService.Find(key.ToString()).FindAll <T>()); }