aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Net/DisposableManagedObjectBase.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-03-13 17:51:33 +0100
committerBond-009 <bond.009@outlook.com>2019-03-13 21:11:01 +0100
commite64aaebbacfa7a720c99ca2ab1aa11f7fcd63868 (patch)
tree1fcf1e2c31d506206590a23ad147d93fffdef50b /Emby.Server.Implementations/Net/DisposableManagedObjectBase.cs
parent1d443d2ff5ef9edaf7040633ec737d043afeafa6 (diff)
Improvements around streams
* Use ArrayPool instead of allocating new buffers each time * Remove NetworkStream copy * Remove some dead code
Diffstat (limited to 'Emby.Server.Implementations/Net/DisposableManagedObjectBase.cs')
-rw-r--r--Emby.Server.Implementations/Net/DisposableManagedObjectBase.cs66
1 files changed, 0 insertions, 66 deletions
diff --git a/Emby.Server.Implementations/Net/DisposableManagedObjectBase.cs b/Emby.Server.Implementations/Net/DisposableManagedObjectBase.cs
deleted file mode 100644
index 304b44565..000000000
--- a/Emby.Server.Implementations/Net/DisposableManagedObjectBase.cs
+++ /dev/null
@@ -1,66 +0,0 @@
-using System;
-
-namespace Emby.Server.Implementations.Net
-{
- /// <summary>
- /// Correclty implements the <see cref="IDisposable"/> interface and pattern for an object containing only managed resources, and adds a few common niceities not on the interface such as an <see cref="IsDisposed"/> property.
- /// </summary>
- public abstract class DisposableManagedObjectBase : IDisposable
- {
-
- #region Public Methods
-
- /// <summary>
- /// Override this method and dispose any objects you own the lifetime of if disposing is true;
- /// </summary>
- /// <param name="disposing">True if managed objects should be disposed, if false, only unmanaged resources should be released.</param>
- protected abstract void Dispose(bool disposing);
-
-
- //TODO Remove and reimplement using the IsDisposed property directly.
- /// <summary>
- /// Throws an <see cref="ObjectDisposedException"/> if the <see cref="IsDisposed"/> property is true.
- /// </summary>
- /// <seealso cref="IsDisposed"/>
- /// <exception cref="ObjectDisposedException">Thrown if the <see cref="IsDisposed"/> property is true.</exception>
- /// <seealso cref="Dispose()"/>
- protected virtual void ThrowIfDisposed()
- {
- if (IsDisposed) throw new ObjectDisposedException(GetType().Name);
- }
-
- #endregion
-
- #region Public Properties
-
- /// <summary>
- /// Sets or returns a boolean indicating whether or not this instance has been disposed.
- /// </summary>
- /// <seealso cref="Dispose()"/>
- public bool IsDisposed
- {
- get;
- private set;
- }
-
- #endregion
-
- #region IDisposable Members
-
- /// <summary>
- /// Disposes this object instance and all internally managed resources.
- /// </summary>
- /// <remarks>
- /// <para>Sets the <see cref="IsDisposed"/> property to true. Does not explicitly throw an exception if called multiple times, but makes no promises about behaviour of derived classes.</para>
- /// </remarks>
- /// <seealso cref="IsDisposed"/>
- public void Dispose()
- {
- IsDisposed = true;
-
- Dispose(true);
- }
-
- #endregion
- }
-}