diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-31 18:47:48 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-03-31 18:47:48 -0700 |
commit | ca35efa9ffe8469328d0001f754a0c3a0d90c57e (patch) | |
tree | 39363ab298b90c5d1f1f02b896ab2554a0ecfd4a /src/DotNetOpenAuth.OAuth2.Client/OAuth2/ChannelElements/OAuth2ClientChannel.cs | |
parent | 7c456b35c0570df86a2626dd8907726711ab6755 (diff) | |
download | DotNetOpenAuth-ca35efa9ffe8469328d0001f754a0c3a0d90c57e.zip DotNetOpenAuth-ca35efa9ffe8469328d0001f754a0c3a0d90c57e.tar.gz DotNetOpenAuth-ca35efa9ffe8469328d0001f754a0c3a0d90c57e.tar.bz2 |
Moved localizable strings into specific OAuth 2 assemblies.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.Client/OAuth2/ChannelElements/OAuth2ClientChannel.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2.Client/OAuth2/ChannelElements/OAuth2ClientChannel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.Client/OAuth2/ChannelElements/OAuth2ClientChannel.cs b/src/DotNetOpenAuth.OAuth2.Client/OAuth2/ChannelElements/OAuth2ClientChannel.cs index 95ec983..4f80a1e 100644 --- a/src/DotNetOpenAuth.OAuth2.Client/OAuth2/ChannelElements/OAuth2ClientChannel.cs +++ b/src/DotNetOpenAuth.OAuth2.Client/OAuth2/ChannelElements/OAuth2ClientChannel.cs @@ -78,7 +78,7 @@ namespace DotNetOpenAuth.OAuth2.ChannelElements { } else if (response.ContentType.MediaType == HttpFormUrlEncoded || response.ContentType.MediaType == PlainTextEncoded) { return HttpUtility.ParseQueryString(body).ToDictionary(); } else { - throw ErrorUtilities.ThrowProtocol(OAuthStrings.UnexpectedResponseContentType, response.ContentType.MediaType); + throw ErrorUtilities.ThrowProtocol(OAuth2Strings.UnexpectedResponseContentType, response.ContentType.MediaType); } } |