summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-07-02 20:34:38 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2011-07-02 20:34:38 -0700
commit05f80cd62a2cab69598cebade7f906c31b7b2f7b (patch)
treea45d6c8e8043cf9b5e9341bc321af11a44ca50ca /src/DotNetOpenAuth.OAuth/OAuth/ChannelElements
parentac7b3b8bd58a220bb1d9e310456e75f601b99b58 (diff)
downloadDotNetOpenAuth-05f80cd62a2cab69598cebade7f906c31b7b2f7b.zip
DotNetOpenAuth-05f80cd62a2cab69598cebade7f906c31b7b2f7b.tar.gz
DotNetOpenAuth-05f80cd62a2cab69598cebade7f906c31b7b2f7b.tar.bz2
OAuth project now builds.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth/OAuth/ChannelElements')
-rw-r--r--src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/SigningBindingElementBase.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/SigningBindingElementBase.cs b/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/SigningBindingElementBase.cs
index 31b5149..24382fe 100644
--- a/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/SigningBindingElementBase.cs
+++ b/src/DotNetOpenAuth.OAuth/OAuth/ChannelElements/SigningBindingElementBase.cs
@@ -154,7 +154,7 @@ namespace DotNetOpenAuth.OAuth.ChannelElements {
Contract.Requires<ArgumentNullException>(message != null);
Contract.Requires<ArgumentException>(!string.IsNullOrEmpty(message.HttpMethod));
Contract.Requires<ArgumentNullException>(messageDictionary != null);
- Contract.Requires<ArgumentException>(messageDictionary.Message == message);
+ ErrorUtilities.VerifyArgument(messageDictionary.Message == message, "Message references are not equal.");
List<string> signatureBaseStringElements = new List<string>(3);