summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/IAccessTokenAnalyzer.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-04-22 13:46:19 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-04-22 13:46:19 -0700
commita376c2abb992863500cd51b6a1791c1d3fed5b6c (patch)
tree51157a43514cf3b53d92179a6023389f5db8abe4 /src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/IAccessTokenAnalyzer.cs
parent93d79a7974c10e4e81ed737f14a746518daa8a80 (diff)
downloadDotNetOpenAuth-a376c2abb992863500cd51b6a1791c1d3fed5b6c.zip
DotNetOpenAuth-a376c2abb992863500cd51b6a1791c1d3fed5b6c.tar.gz
DotNetOpenAuth-a376c2abb992863500cd51b6a1791c1d3fed5b6c.tar.bz2
Removed old FxCop suppression attributes.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/IAccessTokenAnalyzer.cs')
-rw-r--r--src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/IAccessTokenAnalyzer.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/IAccessTokenAnalyzer.cs b/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/IAccessTokenAnalyzer.cs
index c153bfa..5c5a526 100644
--- a/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/IAccessTokenAnalyzer.cs
+++ b/src/DotNetOpenAuth.OAuth2.ResourceServer/OAuth2/IAccessTokenAnalyzer.cs
@@ -26,8 +26,6 @@ namespace DotNetOpenAuth.OAuth2 {
/// <param name="accessToken">The access token's serialized representation.</param>
/// <returns>The deserialized, validated token.</returns>
/// <exception cref="ProtocolException">Thrown if the access token is expired, invalid, or from an untrusted authorization server.</exception>
- [SuppressMessage("Microsoft.Design", "CA1021:AvoidOutParameters", MessageId = "1#", Justification = "Try pattern")]
- [SuppressMessage("Microsoft.Design", "CA1021:AvoidOutParameters", MessageId = "2#", Justification = "Try pattern")]
AccessToken DeserializeAccessToken(IDirectedProtocolMessage message, string accessToken);
}