Microsoft.Extensions.FileProviders.NullFileProvider
An empty file provider with no contents.
namespace Microsoft.Extensions.FileProviders
{
public class NullFileProvider : IFileProvider
{
public IDirectoryContents GetDirectoryContents(string subpath);
public IFileInfo GetFileInfo(string subpath);
public IChangeToken Watch(string filter);
public NullFileProvider();
}
}