summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.Test/Hosting/AspNetHost.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/DotNetOpenAuth.Test/Hosting/AspNetHost.cs')
-rw-r--r--src/DotNetOpenAuth.Test/Hosting/AspNetHost.cs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.Test/Hosting/AspNetHost.cs b/src/DotNetOpenAuth.Test/Hosting/AspNetHost.cs
index a61c0cf..08b7c18 100644
--- a/src/DotNetOpenAuth.Test/Hosting/AspNetHost.cs
+++ b/src/DotNetOpenAuth.Test/Hosting/AspNetHost.cs
@@ -22,9 +22,12 @@ namespace DotNetOpenAuth.Test.Hosting {
private HttpHost httpHost;
/// <summary>
+ /// Initializes a new instance of the <see cref="AspNetHost"/> class.
+ /// </summary>
+ /// <remarks>
/// DO NOT CALL DIRECTLY. This is only here for ASP.NET to call.
/// Call the static <see cref="AspNetHost.CreateHost"/> method instead.
- /// </summary>
+ /// </remarks>
[Obsolete("Use the CreateHost static method instead.")]
public AspNetHost() {
this.httpHost = HttpHost.CreateHost(this);
@@ -78,7 +81,7 @@ namespace DotNetOpenAuth.Test.Hosting {
protected void Dispose(bool disposing) {
if (disposing) {
- CloseHttp();
+ this.CloseHttp();
}
}