blob: c9ab73ba2daeb0c90fc71b6d620bc4d796154909 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//-----------------------------------------------------------------------
// <copyright file="IHttpIndirectResponse.cs" company="Outercurve Foundation">
// Copyright (c) Outercurve Foundation. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace DotNetOpenAuth.Messaging {
using System.Net;
/// <summary>
/// An interface that allows indirect response messages to specify
/// HTTP transport specific properties.
/// </summary>
public interface IHttpIndirectResponse {
/// <summary>
/// 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.
/// </summary>
bool Include301RedirectPayloadInFragment { get; }
}
}
|