3 types derived from FileInfoBase
Microsoft.AspNetCore.Mvc.TagHelpers (1)
FileProviderGlobbingFile.cs (1)
9
internal sealed class FileProviderGlobbingFile :
FileInfoBase
Microsoft.Extensions.FileSystemGlobbing (2)
Abstractions\FileInfoWrapper.cs (1)
12
public class FileInfoWrapper :
FileInfoBase
Internal\InMemoryFileInfo.cs (1)
9
internal sealed class InMemoryFileInfo :
FileInfoBase
16 references to FileInfoBase
Microsoft.AspNetCore.Mvc.TagHelpers (1)
FileProviderGlobbingDirectory.cs (1)
79
public override
FileInfoBase
GetFile(string path)
Microsoft.Extensions.FileSystemGlobbing (15)
Abstractions\DirectoryInfoBase.cs (3)
27
/// Returns an instance of <see cref="
FileInfoBase
" /> that represents a file in the directory
30
/// <returns>Instance of <see cref="
FileInfoBase
" /> even if file does not exist</returns>
31
public abstract
FileInfoBase
? GetFile(string path);
Abstractions\DirectoryInfoWrapper.cs (1)
102
public override
FileInfoBase
GetFile(string name)
Abstractions\FileInfoWrapper.cs (1)
10
/// Wraps an instance of <see cref="System.IO.FileInfo" /> to provide implementation of <see cref="
FileInfoBase
" />.
InMemoryDirectoryInfo.cs (3)
144
/// Returns an instance of <see cref="
FileInfoBase
"/> that matches the <paramref name="path"/> given.
147
/// <returns>Instance of <see cref="
FileInfoBase
"/> if the file exists, null otherwise.</returns>
148
public override
FileInfoBase
? GetFile(string path)
Internal\IPatternContext.cs (1)
19
PatternTestResult Test(
FileInfoBase
file);
Internal\MatcherContext.cs (1)
90
if (entity is
FileInfoBase
fileInfo)
Internal\PatternContexts\PatternContext.cs (1)
17
public abstract PatternTestResult Test(
FileInfoBase
file);
Internal\PatternContexts\PatternContextLinear.cs (2)
20
public override PatternTestResult Test(
FileInfoBase
file)
96
protected string CalculateStem(
FileInfoBase
matchedFile)
Internal\PatternContexts\PatternContextRagged.cs (2)
19
public override PatternTestResult Test(
FileInfoBase
file)
177
protected string CalculateStem(
FileInfoBase
matchedFile)