summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth/OpenId/Messages/DirectErrorResponse.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-10 20:26:55 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-10 20:26:55 -0700
commitbd3b3f6b07dbd1d43c2ffdff4504fd5eec1eb388 (patch)
tree528b4dac98713b3a1026ff1d89993bc14b54bec1 /src/DotNetOpenAuth/OpenId/Messages/DirectErrorResponse.cs
parented93583c59e776b673ea96c350ae5b284435ca24 (diff)
downloadDotNetOpenAuth-bd3b3f6b07dbd1d43c2ffdff4504fd5eec1eb388.zip
DotNetOpenAuth-bd3b3f6b07dbd1d43c2ffdff4504fd5eec1eb388.tar.gz
DotNetOpenAuth-bd3b3f6b07dbd1d43c2ffdff4504fd5eec1eb388.tar.bz2
OpenID spec review up to (and excluding) section 8.
Diffstat (limited to 'src/DotNetOpenAuth/OpenId/Messages/DirectErrorResponse.cs')
-rw-r--r--src/DotNetOpenAuth/OpenId/Messages/DirectErrorResponse.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/DotNetOpenAuth/OpenId/Messages/DirectErrorResponse.cs b/src/DotNetOpenAuth/OpenId/Messages/DirectErrorResponse.cs
index 29ee18d..ad20ff7 100644
--- a/src/DotNetOpenAuth/OpenId/Messages/DirectErrorResponse.cs
+++ b/src/DotNetOpenAuth/OpenId/Messages/DirectErrorResponse.cs
@@ -6,6 +6,7 @@
namespace DotNetOpenAuth.OpenId.Messages {
using System;
+ using System.Net;
using DotNetOpenAuth.Messaging;
/// <summary>
@@ -30,9 +31,9 @@ namespace DotNetOpenAuth.OpenId.Messages {
/// <summary>
/// Gets the HTTP status code that the direct respones should be sent with.
/// </summary>
- /// <value><see cref="System.Net.HttpStatusCode.BadRequest"/></value>
- public System.Net.HttpStatusCode HttpStatusCode {
- get { return System.Net.HttpStatusCode.BadRequest; }
+ /// <value><see cref="HttpStatusCode.BadRequest"/></value>
+ HttpStatusCode IHttpDirectResponse.HttpStatusCode {
+ get { return HttpStatusCode.BadRequest; }
}
#endregion