Files
ICD.Common.Utils/ICD.Common/Utils/IStateDisposable.cs
2017-06-21 22:41:54 -04:00

16 lines
324 B
C#

using System;
namespace ICD.Common.Utils
{
/// <summary>
/// Provides features for managing the disposed state of an IDisposable.
/// </summary>
public interface IStateDisposable : IDisposable
{
/// <summary>
/// Returns true if this instance has been disposed.
/// </summary>
bool IsDisposed { get; }
}
}