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