Ejemplo n.º 1
0
 public ILinkObject GetLink(string resource)
 {
     return(ApiNavigation.Single(x => x.Key == resource).Value.First());
 }
Ejemplo n.º 2
0
        public bool IsTemplatedResource(string resource)
        {
            var link = ApiNavigation.Single(x => x.Key == resource);

            return(link.Value.First().Templated);
        }
Ejemplo n.º 3
0
 public bool CommandExists(string resource)
 {
     return(ApiNavigation.Any(x => x.Key == resource));
 }