Beispiel #1
0
 private static bool MatchEnd(IDependencyNode dependencyNode, IEnumerable<string> endPaths)
 {
     return endPaths.Any(p => p == dependencyNode.GetPath());
 }
Beispiel #2
0
 private static bool MatchEnd(IDependencyNode dependencyNode, IEnumerable <string> endPaths)
 {
     return(endPaths.Any(p => p == dependencyNode.GetPath()));
 }
Beispiel #3
0
        private bool Excluded(IDependencyNode node)
        {
            var path = node.GetPath();

            return(Excluded(path));
        }
Beispiel #4
0
 private bool Excluded(IDependencyNode node)
 {
     var path = node.GetPath();
     return Excluded(path);
 }