aboutsummaryrefslogtreecommitdiff
path: root/RSSDP/DisposableManagedObjectBase.cs
diff options
context:
space:
mode:
authortelans <telans@protonmail.com>2020-06-20 18:20:33 +1200
committertelans <telans@protonmail.com>2020-06-20 18:20:33 +1200
commit8e3d8748021fe0336e2fc1211810cc9bbe2c8850 (patch)
tree87f4660c36e489b19f76c6ac5da2a357cab5a55d /RSSDP/DisposableManagedObjectBase.cs
parent8de6452967d229624c81e06d992b1cb0cb6715b1 (diff)
remove regions
Diffstat (limited to 'RSSDP/DisposableManagedObjectBase.cs')
-rw-r--r--RSSDP/DisposableManagedObjectBase.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/RSSDP/DisposableManagedObjectBase.cs b/RSSDP/DisposableManagedObjectBase.cs
index 39589f022..befa4ccff 100644
--- a/RSSDP/DisposableManagedObjectBase.cs
+++ b/RSSDP/DisposableManagedObjectBase.cs
@@ -9,9 +9,6 @@ namespace Rssdp.Infrastructure
/// </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>
@@ -29,10 +26,6 @@ namespace Rssdp.Infrastructure
if (this.IsDisposed) throw new ObjectDisposedException(this.GetType().FullName);
}
- #endregion
-
- #region Public Properties
-
/// <summary>
/// Sets or returns a boolean indicating whether or not this instance has been disposed.
/// </summary>
@@ -42,9 +35,6 @@ namespace Rssdp.Infrastructure
get;
private set;
}
-
- #endregion
-
public string BuildMessage(string header, Dictionary<string, string> values)
{
var builder = new StringBuilder();
@@ -63,8 +53,6 @@ namespace Rssdp.Infrastructure
return builder.ToString();
}
- #region IDisposable Members
-
/// <summary>
/// Disposes this object instance and all internally managed resources.
/// </summary>
@@ -79,7 +67,5 @@ namespace Rssdp.Infrastructure
Dispose(true);
}
-
- #endregion
}
}