// 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 callback, object state) { return new NullDisposable(); } private class NullDisposable : IDisposable { public void Dispose() { } } public override string ToString() => Filter; } }