aspnetcore/test/Microsoft.AspNetCore.Mvc.Vi.../TestFileChangeToken.cs

35 lines
873 B
C#

// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
namespace Microsoft.Extensions.Primitives
{
public class TestFileChangeToken : IChangeToken
{
public TestFileChangeToken(string filter = "")
{
Filter = filter;
}
public bool ActiveChangeCallbacks => false;
public bool HasChanged { get; set; }
public string Filter { get; }
public IDisposable RegisterChangeCallback(Action<object> callback, object state)
{
return new NullDisposable();
}
private class NullDisposable : IDisposable
{
public void Dispose()
{
}
}
public override string ToString() => Filter;
}
}