mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-06 16:25:04 +00:00
18 lines
367 B
C#
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; }
|
|
}
|
|
}
|