diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-01-22 08:51:59 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-01-29 10:38:19 -0800 |
commit | ab5d29be79214e36d01031cc638a3bd935adb24a (patch) | |
tree | 1db5fc78344463acf4d71a0f230b8524c076622a /src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs | |
parent | 777f7a2fa69ec2319c23397c8a2ae02966097617 (diff) | |
download | DotNetOpenAuth-ab5d29be79214e36d01031cc638a3bd935adb24a.zip DotNetOpenAuth-ab5d29be79214e36d01031cc638a3bd935adb24a.tar.gz DotNetOpenAuth-ab5d29be79214e36d01031cc638a3bd935adb24a.tar.bz2 |
Added more support for HttpContextBase, HttpResponseBase, etc.
Diffstat (limited to 'src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs')
-rw-r--r-- | src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs b/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs index 9277734..2a94791 100644 --- a/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs +++ b/src/DotNetOpenAuth.Core/Messaging/MessagingUtilities.cs @@ -906,7 +906,7 @@ namespace DotNetOpenAuth.Messaging { /// </summary> /// <param name="headers">The headers to add.</param> /// <param name="response">The <see cref="HttpResponse"/> instance to set the appropriate values to.</param> - internal static void ApplyHeadersToResponse(WebHeaderCollection headers, HttpResponse response) { + internal static void ApplyHeadersToResponse(WebHeaderCollection headers, HttpResponseBase response) { Requires.NotNull(headers, "headers"); Requires.NotNull(response, "response"); |