2020-12-23 11:00:37 +11:00
|
|
|
using System;
|
2018-03-20 18:21:37 +01:00
|
|
|
|
2021-02-18 11:06:02 +01:00
|
|
|
namespace Umbraco.Cms.Core
|
2018-03-20 18:21:37 +01:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Abstract implementation of managed IDisposable.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
2020-12-23 11:00:37 +11:00
|
|
|
/// This is for objects that do NOT have unmanaged resources.
|
2018-03-20 18:21:37 +01:00
|
|
|
///
|
|
|
|
|
/// Can also be used as a pattern for when inheriting is not possible.
|
|
|
|
|
///
|
|
|
|
|
/// See also: https://msdn.microsoft.com/en-us/library/b1yfkh5e%28v=vs.110%29.aspx
|
|
|
|
|
/// See also: https://lostechies.com/chrispatterson/2012/11/29/idisposable-done-right/
|
|
|
|
|
///
|
|
|
|
|
/// Note: if an object's ctor throws, it will never be disposed, and so if that ctor
|
|
|
|
|
/// has allocated disposable objects, it should take care of disposing them.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
public abstract class DisposableObjectSlim : IDisposable
|
|
|
|
|
{
|
2020-12-23 11:00:37 +11:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance is disposed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// for internal tests only (not thread safe)
|
|
|
|
|
/// </remarks>
|
2018-03-20 18:21:37 +01:00
|
|
|
public bool Disposed { get; private set; }
|
|
|
|
|
|
2020-12-23 11:00:37 +11:00
|
|
|
/// <summary>
|
|
|
|
|
/// Disposes managed resources
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected abstract void DisposeResources();
|
2018-03-20 18:21:37 +01:00
|
|
|
|
2020-12-23 11:00:37 +11:00
|
|
|
/// <summary>
|
|
|
|
|
/// Disposes managed resources
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="disposing">True if disposing via Dispose method and not a finalizer. Always true for this class.</param>
|
|
|
|
|
protected virtual void Dispose(bool disposing)
|
2018-03-20 18:21:37 +01:00
|
|
|
{
|
2020-12-23 11:00:37 +11:00
|
|
|
if (!Disposed)
|
2018-03-20 18:21:37 +01:00
|
|
|
{
|
2020-12-23 11:00:37 +11:00
|
|
|
if (disposing)
|
|
|
|
|
{
|
|
|
|
|
DisposeResources();
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-20 18:21:37 +01:00
|
|
|
Disposed = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-23 11:00:37 +11:00
|
|
|
/// <inheritdoc/>
|
|
|
|
|
#pragma warning disable CA1063 // Implement IDisposable Correctly
|
|
|
|
|
public void Dispose() => Dispose(disposing: true); // We do not use GC.SuppressFinalize because this has no finalizer
|
|
|
|
|
#pragma warning restore CA1063 // Implement IDisposable Correctly
|
2018-03-20 18:21:37 +01:00
|
|
|
}
|
|
|
|
|
}
|