5 implementations of Match
Microsoft.Extensions.FileSystemGlobbing (5)
Internal\PathSegments\CurrentPathSegment.cs (1)
12public bool Match(string value) => false;
Internal\PathSegments\LiteralPathSegment.cs (1)
26public bool Match(string value)
Internal\PathSegments\ParentPathSegment.cs (1)
14public bool Match(string value)
Internal\PathSegments\RecursiveWildcardSegment.cs (1)
12public bool Match(string value) => false;
Internal\PathSegments\WildcardPathSegment.cs (1)
42public bool Match(string value)
3 references to Match
Microsoft.Extensions.FileSystemGlobbing (3)
Internal\PatternContexts\PatternContextLinear.cs (1)
93return Pattern.Segments[Frame.SegmentIndex].Match(value);
Internal\PatternContexts\PatternContextRagged.cs (2)
152return Frame.SegmentGroup[Frame.SegmentIndex].Match(value); 168if (scan == null || !segment.Match(scan.Name))