diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-02-26 20:38:31 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-02-26 20:38:31 -0800 |
commit | e769dd8bbc744bc896454a5e5b64251d9dc13b2a (patch) | |
tree | c780ad6cb158902fd2391d69e1274cd1410d09ac /src | |
parent | a1553f37eee3a0a05aae214692f5ef2e60a6a870 (diff) | |
download | DotNetOpenAuth-e769dd8bbc744bc896454a5e5b64251d9dc13b2a.zip DotNetOpenAuth-e769dd8bbc744bc896454a5e5b64251d9dc13b2a.tar.gz DotNetOpenAuth-e769dd8bbc744bc896454a5e5b64251d9dc13b2a.tar.bz2 |
Added some more scripts toward getting the OpenIdSelector working in MVC.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/Messaging/OutgoingWebResponse.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth/Messaging/OutgoingWebResponse.cs b/src/DotNetOpenAuth/Messaging/OutgoingWebResponse.cs index cf22bb2..c0fb06c 100644 --- a/src/DotNetOpenAuth/Messaging/OutgoingWebResponse.cs +++ b/src/DotNetOpenAuth/Messaging/OutgoingWebResponse.cs @@ -183,12 +183,15 @@ namespace DotNetOpenAuth.Messaging { /// would transmit the message that normally would be transmitted via a user agent redirect. /// </summary> /// <param name="channel">The channel to use for encoding.</param> - /// <returns>The URL that would transmit the original message.</returns> + /// <returns> + /// The URL that would transmit the original message. This URL may exceed the normal 2K limit, + /// and should therefore be broken up manually and POSTed as form fields when it exceeds this length. + /// </returns> /// <remarks> /// This is useful for desktop applications that will spawn a user agent to transmit the message /// rather than cause a redirect. /// </remarks> - internal Uri GetDirectUriRequest(Channel channel) { + public Uri GetDirectUriRequest(Channel channel) { Contract.Requires<ArgumentNullException>(channel != null); var message = this.OriginalMessage as IDirectedProtocolMessage; |