summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth.Test/Mocks/TestDirectedMessage.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-10-23 19:52:59 -0700
committerAndrew <andrewarnott@gmail.com>2008-10-23 19:52:59 -0700
commit38c7d25878550429583558f5c907e34fb094fb68 (patch)
treec6edc9ee32d6d2031202040ac18cd2d288b3bb83 /src/DotNetOAuth.Test/Mocks/TestDirectedMessage.cs
parent7ba9649126a7b802e348fbe210383fabc2898659 (diff)
downloadDotNetOpenAuth-38c7d25878550429583558f5c907e34fb094fb68.zip
DotNetOpenAuth-38c7d25878550429583558f5c907e34fb094fb68.tar.gz
DotNetOpenAuth-38c7d25878550429583558f5c907e34fb094fb68.tar.bz2
Applied FxCop fixes.
Diffstat (limited to 'src/DotNetOAuth.Test/Mocks/TestDirectedMessage.cs')
-rw-r--r--src/DotNetOAuth.Test/Mocks/TestDirectedMessage.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/DotNetOAuth.Test/Mocks/TestDirectedMessage.cs b/src/DotNetOAuth.Test/Mocks/TestDirectedMessage.cs
index 8906151..1973463 100644
--- a/src/DotNetOAuth.Test/Mocks/TestDirectedMessage.cs
+++ b/src/DotNetOAuth.Test/Mocks/TestDirectedMessage.cs
@@ -24,7 +24,7 @@ namespace DotNetOAuth.Test.Mocks {
#region IProtocolMessage Properties
- MessageProtection IProtocolMessage.RequiredProtection {
+ MessageProtections IProtocolMessage.RequiredProtection {
get { return this.RequiredProtection; }
}
@@ -32,12 +32,12 @@ namespace DotNetOAuth.Test.Mocks {
#region IOAuthDirectedMessage Members
- public HttpDeliveryMethod HttpMethods { get; internal set; }
+ public HttpDeliveryMethods HttpMethods { get; internal set; }
#endregion
- protected virtual MessageProtection RequiredProtection {
- get { return MessageProtection.None; }
+ protected virtual MessageProtections RequiredProtection {
+ get { return MessageProtections.None; }
}
}
}