diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-01-14 22:14:59 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-01-14 22:14:59 -0800 |
commit | cd06898c37264cc123cf162e7264486a252e4897 (patch) | |
tree | dfb86528653fd3eb9218b0f8c1dfeb1de32b278f /src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/OAuthChannel.cs | |
parent | d912b95afeeeb3cd1ed76644cd72d70e31c4a44d (diff) | |
download | DotNetOpenAuth-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.cs | 2 |
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; |