summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth/OAuth/ChannelElements/SigningBindingElementBase.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-04-30 16:19:31 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2011-04-30 19:44:53 -0700
commita1c4a5cb840e14d700fa55d4e3b36c101ffcc0cc (patch)
tree4cfcefdf9b39357f82e62d2937741bbd6e167aa9 /src/DotNetOpenAuth/OAuth/ChannelElements/SigningBindingElementBase.cs
parent4946b890db2c423e7dadaee11842b9b312ccd029 (diff)
downloadDotNetOpenAuth-a1c4a5cb840e14d700fa55d4e3b36c101ffcc0cc.zip
DotNetOpenAuth-a1c4a5cb840e14d700fa55d4e3b36c101ffcc0cc.tar.gz
DotNetOpenAuth-a1c4a5cb840e14d700fa55d4e3b36c101ffcc0cc.tar.bz2
Removed the explicit namespaces from all the SuppressMessageAttribute references.
Diffstat (limited to 'src/DotNetOpenAuth/OAuth/ChannelElements/SigningBindingElementBase.cs')
-rw-r--r--src/DotNetOpenAuth/OAuth/ChannelElements/SigningBindingElementBase.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OAuth/ChannelElements/SigningBindingElementBase.cs b/src/DotNetOpenAuth/OAuth/ChannelElements/SigningBindingElementBase.cs
index 8c05402..31b5149 100644
--- a/src/DotNetOpenAuth/OAuth/ChannelElements/SigningBindingElementBase.cs
+++ b/src/DotNetOpenAuth/OAuth/ChannelElements/SigningBindingElementBase.cs
@@ -8,6 +8,7 @@ namespace DotNetOpenAuth.OAuth.ChannelElements {
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
+ using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.Contracts;
using System.Globalization;
using System.Linq;
@@ -148,7 +149,7 @@ namespace DotNetOpenAuth.OAuth.ChannelElements {
/// <remarks>
/// This method implements OAuth 1.0 section 9.1.
/// </remarks>
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Maintainability", "CA1506:AvoidExcessiveClassCoupling", Justification = "Unavoidable")]
+ [SuppressMessage("Microsoft.Maintainability", "CA1506:AvoidExcessiveClassCoupling", Justification = "Unavoidable")]
internal static string ConstructSignatureBaseString(ITamperResistantOAuthMessage message, MessageDictionary messageDictionary) {
Contract.Requires<ArgumentNullException>(message != null);
Contract.Requires<ArgumentException>(!string.IsNullOrEmpty(message.HttpMethod));