diff options
Diffstat (limited to 'src/DotNetOpenAuth/Messaging/IHttpIndirectResponse.cs')
-rw-r--r-- | src/DotNetOpenAuth/Messaging/IHttpIndirectResponse.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/Messaging/IHttpIndirectResponse.cs b/src/DotNetOpenAuth/Messaging/IHttpIndirectResponse.cs index f3dde51..7d0fe0c 100644 --- a/src/DotNetOpenAuth/Messaging/IHttpIndirectResponse.cs +++ b/src/DotNetOpenAuth/Messaging/IHttpIndirectResponse.cs @@ -1,5 +1,5 @@ //----------------------------------------------------------------------- -// <copyright file="IHttpDirectResponse.cs" company="Andrew Arnott"> +// <copyright file="IHttpIndirectResponse.cs" company="Andrew Arnott"> // Copyright (c) Andrew Arnott. All rights reserved. // </copyright> //----------------------------------------------------------------------- @@ -13,6 +13,10 @@ namespace DotNetOpenAuth.Messaging { /// 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; } } } |