| 
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.Extensions.FileProviders;
using Microsoft.Extensions.Primitives;
 
namespace Microsoft.AspNetCore.Components.WebView;
 
public class TestFileProvider : IFileProvider
{
    public IDirectoryContents GetDirectoryContents(string subpath)
    {
        throw new System.NotImplementedException();
    }
 
    public IFileInfo GetFileInfo(string subpath)
    {
        throw new System.NotImplementedException();
    }
 
    public IChangeToken Watch(string filter)
    {
        throw new System.NotImplementedException();
    }
}
 |