//-----------------------------------------------------------------------
//
// Copyright (c) Outercurve Foundation. All rights reserved.
//
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Messaging {
using System.Diagnostics.Contracts;
using System.Net;
///
/// An interface that allows indirect response messages to specify
/// HTTP transport specific properties.
///
public interface IHttpIndirectResponse {
///
/// Gets a value indicating whether the payload for the message should be included
/// in the redirect fragment instead of the query string or POST entity.
///
bool Include301RedirectPayloadInFragment { get; }
}
}