summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-09-13 18:47:47 -0700
committerAndrew <andrewarnott@gmail.com>2008-09-13 18:47:47 -0700
commit2dcfb4843722237aa214294b59ed9be782ea0cec (patch)
tree3e41e7d2ea9d02d225f2b47b84b5d90389990e64 /src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs
parentc1d035b2d138dcd915f17f187edb458ef1b541a6 (diff)
downloadDotNetOpenAuth-2dcfb4843722237aa214294b59ed9be782ea0cec.zip
DotNetOpenAuth-2dcfb4843722237aa214294b59ed9be782ea0cec.tar.gz
DotNetOpenAuth-2dcfb4843722237aa214294b59ed9be782ea0cec.tar.bz2
Renamed the ISignedOAuthMessage.
Diffstat (limited to 'src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs')
-rw-r--r--src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs b/src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs
new file mode 100644
index 0000000..b1d960f
--- /dev/null
+++ b/src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs
@@ -0,0 +1,17 @@
+//-----------------------------------------------------------------------
+// <copyright file="ITamperResistantProtocolMessage.cs" company="Andrew Arnott">
+// Copyright (c) Andrew Arnott. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOAuth.Messaging.Bindings {
+ /// <summary>
+ /// The contract a message that is signed must implement.
+ /// </summary>
+ internal interface ITamperResistantProtocolMessage : IProtocolMessage {
+ /// <summary>
+ /// Gets or sets the message signature.
+ /// </summary>
+ string Signature { get; set; }
+ }
+}