//-----------------------------------------------------------------------
//
// Copyright (c) Andrew Arnott. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Test.Mocks {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using DotNetOpenAuth.Messaging;
internal class TestDirectResponseMessageWithHttpStatus : TestMessage, IHttpDirectResponse {
///
/// Initializes a new instance of the class.
///
internal TestDirectResponseMessageWithHttpStatus() {
}
#region IHttpDirectResponse Members
///
/// Gets or sets the HTTP status code that the direct respones should be sent with.
///
///
public System.Net.HttpStatusCode HttpStatusCode { get; set; }
#endregion
}
}