9 references to ParentFiles
Microsoft.DotNet.SignCheckLibrary (9)
Verification\Exclusion.cs (1)
74
return String.Format("FilePattern: {0} | Parent: {1} | Comment: {2}", FilePatterns,
ParentFiles
, Comment);
Verification\Exclusions.cs (8)
82
if ((e.
ParentFiles
.Length == 0) || (e.
ParentFiles
.All(pf => String.IsNullOrEmpty(pf))) || IsMatch(e.
ParentFiles
, parent))
90
if ((IsMatch(e.FilePatterns, path) || IsMatch(e.FilePatterns, containerPath)) && (e.
ParentFiles
.All(pf => String.IsNullOrEmpty(pf))))
98
return exclusions.Any(e => (e.FilePatterns.All(fp => String.IsNullOrEmpty(fp)) && IsMatch(e.
ParentFiles
, parent)));
138
/// Returns true if any <see cref="Exclusion.
ParentFiles
"/> matches the value of <paramref name="parent"/>.
140
/// <param name="parent">The value to match against any <see cref="Exclusion.
ParentFiles
"/>.</param>
144
return _exclusions.Any(e => IsMatch(e.
ParentFiles
, parent));