//-----------------------------------------------------------------------
//
// Copyright (c) Outercurve Foundation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Test.Mocks {
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
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 HttpStatusCode HttpStatusCode { get; set; }
///
/// Gets the HTTP headers to add to the response.
///
/// May be an empty collection, but must not be null.
public WebHeaderCollection Headers {
get { return new WebHeaderCollection(); }
}
#endregion
}
}