ResolveFirstByPaths() статический приватный Метод

static private ResolveFirstByPaths ( IEnumerable paths ) : NodeHead
paths IEnumerable
Результат NodeHead
Пример #1
0
 public NodeHead ResolveFirstByPaths(IEnumerable <string> paths)
 {
     if (UseCache && AppCache != null)
     {
         return(ResolveByPathsFromCache(paths, false, false).FirstOrDefault());
     }
     return(ApplicationResolver.ResolveFirstByPaths(paths));
 }