remove regions

This commit is contained in:
telans
2020-06-20 18:20:33 +12:00
parent 8de6452967
commit 8e3d874802
20 changed files with 13 additions and 331 deletions

View File

@@ -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
}
}