diff options
Diffstat (limited to 'src/DotNetOpenAuth.Test/Mocks/TestDirectResponseMessageWithHttpStatus.cs')
-rw-r--r-- | src/DotNetOpenAuth.Test/Mocks/TestDirectResponseMessageWithHttpStatus.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.Test/Mocks/TestDirectResponseMessageWithHttpStatus.cs b/src/DotNetOpenAuth.Test/Mocks/TestDirectResponseMessageWithHttpStatus.cs new file mode 100644 index 0000000..1dd7444 --- /dev/null +++ b/src/DotNetOpenAuth.Test/Mocks/TestDirectResponseMessageWithHttpStatus.cs @@ -0,0 +1,25 @@ +namespace DotNetOpenAuth.Test.Mocks { + using System; + using System.Collections.Generic; + using System.Linq; + using System.Text; + using DotNetOpenAuth.Messaging; + + internal class TestDirectResponseMessageWithHttpStatus : TestMessage, IHttpDirectResponse { + /// <summary> + /// Initializes a new instance of the <see cref="TestDirectResponseMessageWithHttpStatus"/> class. + /// </summary> + internal TestDirectResponseMessageWithHttpStatus() { + } + + #region IHttpDirectResponse Members + + /// <summary> + /// Gets the HTTP status code that the direct respones should be sent with. + /// </summary> + /// <value></value> + public System.Net.HttpStatusCode HttpStatusCode { get; set; } + + #endregion + } +} |