3 types derived from FileInfoBase
Microsoft.AspNetCore.Mvc.TagHelpers (1)
FileProviderGlobbingFile.cs (1)
9internal sealed class FileProviderGlobbingFile : FileInfoBase
Microsoft.Extensions.FileSystemGlobbing (2)
Abstractions\FileInfoWrapper.cs (1)
12public class FileInfoWrapper : FileInfoBase
Internal\InMemoryFileInfo.cs (1)
9internal sealed class InMemoryFileInfo : FileInfoBase
16 references to FileInfoBase
Microsoft.AspNetCore.Mvc.TagHelpers (1)
FileProviderGlobbingDirectory.cs (1)
79public 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> 31public abstract FileInfoBase? GetFile(string path);
Abstractions\DirectoryInfoWrapper.cs (1)
102public 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> 148public override FileInfoBase? GetFile(string path)
Internal\IPatternContext.cs (1)
19PatternTestResult Test(FileInfoBase file);
Internal\MatcherContext.cs (1)
90if (entity is FileInfoBase fileInfo)
Internal\PatternContexts\PatternContext.cs (1)
17public abstract PatternTestResult Test(FileInfoBase file);
Internal\PatternContexts\PatternContextLinear.cs (2)
20public override PatternTestResult Test(FileInfoBase file) 96protected string CalculateStem(FileInfoBase matchedFile)
Internal\PatternContexts\PatternContextRagged.cs (2)
19public override PatternTestResult Test(FileInfoBase file) 177protected string CalculateStem(FileInfoBase matchedFile)