blob: d6923207f10ce49e36a7f3d9d94fcd9a096c2c7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//-----------------------------------------------------------------------
// <copyright file="TestDirectResponseMessageWithHttpStatus.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
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 or sets the HTTP status code that the direct respones should be sent with.
/// </summary>
/// <value></value>
public System.Net.HttpStatusCode HttpStatusCode { get; set; }
#endregion
}
}
|