Files
ICD.Common.Utils/ICD.Common.Utils/IStateDisposable.cs
2017-08-25 17:01:20 -04:00

18 lines
367 B
C#

using System;
using ICD.Common.Properties;
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>
[PublicAPI]
bool IsDisposed { get; }
}
}