diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-09-28 08:00:57 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-09-28 08:38:58 -0700 |
commit | 1e2f941bcdb7bfba15e90b78b19487c8c3e91be3 (patch) | |
tree | 86be80a5300096a9b2560c2851943794daf72ca5 /samples/DotNetOpenAuth.ApplicationBlock | |
parent | d1ba5762185773b1f75a4dee03a0a203530b2300 (diff) | |
download | DotNetOpenAuth-1e2f941bcdb7bfba15e90b78b19487c8c3e91be3.zip DotNetOpenAuth-1e2f941bcdb7bfba15e90b78b19487c8c3e91be3.tar.gz DotNetOpenAuth-1e2f941bcdb7bfba15e90b78b19487c8c3e91be3.tar.bz2 |
Reverted part of commit 2704b0fb445.
Reverses some of the Send->Respond changes made that are or may be invoked from ASP.NET web forms, since web forms will render HTML after the end of the protocol message.
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs b/samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs index 1861dbc..474a569 100644 --- a/samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs +++ b/samples/DotNetOpenAuth.ApplicationBlock/GoogleConsumer.cs @@ -182,7 +182,7 @@ namespace DotNetOpenAuth.ApplicationBlock { }; Uri callback = Util.GetCallbackUrlFromContext(); var request = consumer.PrepareRequestUserAuthorization(callback, extraParameters, null); - consumer.Channel.Respond(request); + consumer.Channel.Send(request); } /// <summary> |