summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthChannel.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-01-14 22:14:59 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2013-01-14 22:14:59 -0800
commitcd06898c37264cc123cf162e7264486a252e4897 (patch)
treedfb86528653fd3eb9218b0f8c1dfeb1de32b278f /src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthChannel.cs
parentd912b95afeeeb3cd1ed76644cd72d70e31c4a44d (diff)
downloadDotNetOpenAuth-cd06898c37264cc123cf162e7264486a252e4897.zip
DotNetOpenAuth-cd06898c37264cc123cf162e7264486a252e4897.tar.gz
DotNetOpenAuth-cd06898c37264cc123cf162e7264486a252e4897.tar.bz2
All product projects now build.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthChannel.cs')
-rw-r--r--src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthChannel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthChannel.cs b/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthChannel.cs
index e69815d..f3c5897 100644
--- a/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthChannel.cs
+++ b/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthChannel.cs
@@ -302,7 +302,7 @@ namespace DotNetOpenAuth.OAuth.ChannelElements {
var httpRequest = new HttpRequestMessage(GetHttpMethod(requestMessage), recipientBuilder.Uri);
this.PrepareHttpWebRequest(httpRequest);
- httpRequest.Headers.Authorization = new AuthenticationHeaderValue(MessagingUtilities.AssembleAuthorizationHeader(Protocol.AuthorizationHeaderScheme, fields));
+ httpRequest.Headers.Authorization = new AuthenticationHeaderValue(Protocol.AuthorizationHeaderScheme, MessagingUtilities.AssembleAuthorizationHeader(fields));
if (hasEntity) {
var requestMessageWithBinaryData = requestMessage as IMessageWithBinaryData;