1 instantiation of FilePatternMatch
Microsoft.Extensions.FileSystemGlobbing (1)
Internal\MatcherContext.cs (1)
106
_files.Add(new
FilePatternMatch
(
23 references to FilePatternMatch
Microsoft.AspNetCore.Mvc.TagHelpers (1)
GlobbingUrlBuilder.cs (1)
156
foreach (
var
matchedPath in matches.Files)
Microsoft.Extensions.FileProviders.Physical (2)
PollingWildCardChangeToken.cs (2)
119
IOrderedEnumerable<
FilePatternMatch
> files = result.Files.OrderBy(f => f.Path, StringComparer.Ordinal);
122
foreach (
FilePatternMatch
file in files)
Microsoft.Extensions.FileSystemGlobbing (18)
FilePatternMatch.cs (6)
13
public struct FilePatternMatch : IEquatable<
FilePatternMatch
>
34
/// Initializes a new instance of the <see cref="
FilePatternMatch
" /> struct.
52
public bool Equals(
FilePatternMatch
other)
62
/// <returns>True when <see cref="Equals(
FilePatternMatch
)" /></returns>
64
obj is
FilePatternMatch
match && Equals(match);
67
/// Gets a hash code for the current <see cref="
FilePatternMatch
" />.
Internal\MatcherContext.cs (1)
22
private readonly List<
FilePatternMatch
> _files;
MatcherExtensions.cs (2)
63
IEnumerable<
FilePatternMatch
> matches = patternMatchingResult.Files;
65
foreach (
FilePatternMatch
match in matches)
PatternMatchingResult.cs (9)
11
/// Represents a collection of <see cref="
FilePatternMatch
" />
16
/// Initializes a new instance of the <see cref="PatternMatchingResult" /> class with a collection of <see cref="
FilePatternMatch
" />.
18
/// <param name="files">A collection of <see cref="
FilePatternMatch
" /></param>
19
public PatternMatchingResult(IEnumerable<
FilePatternMatch
> files)
26
/// Initializes a new instance of the <see cref="PatternMatchingResult" /> class with a collection of <see cref="
FilePatternMatch
" />.
28
/// <param name="files">A collection of <see cref="
FilePatternMatch
" /></param>
30
public PatternMatchingResult(IEnumerable<
FilePatternMatch
> files, bool hasMatches)
39
/// A collection of <see cref="
FilePatternMatch
" />
41
public IEnumerable<
FilePatternMatch
> Files { get; set; }
vstest.console (1)
Internal\FilePatternParser.cs (1)
85
foreach (
var
match in matches.Files)
vstest.console.arm64 (1)
src\vstest\src\vstest.console\Internal\FilePatternParser.cs (1)
85
foreach (
var
match in matches.Files)