//-----------------------------------------------------------------------
//
// Copyright (c) Outercurve Foundation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Messaging {
using System.Net;
///
/// An interface that allows direct request messages to capture the details of the HTTP request they arrived on.
///
public interface IHttpDirectRequest : IMessage {
///
/// Gets the HTTP headers of the request.
///
/// May be an empty collection, but must not be null.
System.Net.Http.Headers.HttpRequestHeaders Headers { get; }
}
}