mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 05:05:05 +00:00
Removing Utils directory to better match namespaces
This commit is contained in:
15
ICD.Common.Utils/IStateDisposable.cs
Normal file
15
ICD.Common.Utils/IStateDisposable.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user