diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-10-23 19:52:59 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-10-23 19:52:59 -0700 |
commit | 38c7d25878550429583558f5c907e34fb094fb68 (patch) | |
tree | c6edc9ee32d6d2031202040ac18cd2d288b3bb83 /src/DotNetOAuth/Messaging/UnprotectedMessageException.cs | |
parent | 7ba9649126a7b802e348fbe210383fabc2898659 (diff) | |
download | DotNetOpenAuth-38c7d25878550429583558f5c907e34fb094fb68.zip DotNetOpenAuth-38c7d25878550429583558f5c907e34fb094fb68.tar.gz DotNetOpenAuth-38c7d25878550429583558f5c907e34fb094fb68.tar.bz2 |
Applied FxCop fixes.
Diffstat (limited to 'src/DotNetOAuth/Messaging/UnprotectedMessageException.cs')
-rw-r--r-- | src/DotNetOAuth/Messaging/UnprotectedMessageException.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOAuth/Messaging/UnprotectedMessageException.cs b/src/DotNetOAuth/Messaging/UnprotectedMessageException.cs index 45a6a41..3e824f2 100644 --- a/src/DotNetOAuth/Messaging/UnprotectedMessageException.cs +++ b/src/DotNetOAuth/Messaging/UnprotectedMessageException.cs @@ -18,7 +18,7 @@ namespace DotNetOAuth.Messaging { /// </summary>
/// <param name="faultedMessage">The message whose protection requirements could not be met.</param>
/// <param name="appliedProtection">The protection requirements that were fulfilled.</param>
- internal UnprotectedMessageException(IProtocolMessage faultedMessage, MessageProtection appliedProtection)
+ internal UnprotectedMessageException(IProtocolMessage faultedMessage, MessageProtections appliedProtection)
: base(string.Format(CultureInfo.CurrentCulture, MessagingStrings.InsufficentMessageProtection, faultedMessage.RequiredProtection, appliedProtection), faultedMessage) {
}
|