mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-10 02:05:20 +00:00
16 lines
324 B
C#
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; }
|
|
}
|
|
}
|