diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-13 18:47:47 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-13 18:47:47 -0700 |
commit | 2dcfb4843722237aa214294b59ed9be782ea0cec (patch) | |
tree | 3e41e7d2ea9d02d225f2b47b84b5d90389990e64 /src/DotNetOAuth/Messaging/Bindings/ISignedOAuthMessage.cs | |
parent | c1d035b2d138dcd915f17f187edb458ef1b541a6 (diff) | |
download | DotNetOpenAuth-2dcfb4843722237aa214294b59ed9be782ea0cec.zip DotNetOpenAuth-2dcfb4843722237aa214294b59ed9be782ea0cec.tar.gz DotNetOpenAuth-2dcfb4843722237aa214294b59ed9be782ea0cec.tar.bz2 |
Renamed the ISignedOAuthMessage.
Diffstat (limited to 'src/DotNetOAuth/Messaging/Bindings/ISignedOAuthMessage.cs')
-rw-r--r-- | src/DotNetOAuth/Messaging/Bindings/ISignedOAuthMessage.cs | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/DotNetOAuth/Messaging/Bindings/ISignedOAuthMessage.cs b/src/DotNetOAuth/Messaging/Bindings/ISignedOAuthMessage.cs deleted file mode 100644 index 7ee83ff..0000000 --- a/src/DotNetOAuth/Messaging/Bindings/ISignedOAuthMessage.cs +++ /dev/null @@ -1,17 +0,0 @@ -//-----------------------------------------------------------------------
-// <copyright file="ISignedOAuthMessage.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 ISignedOAuthMessage : IProtocolMessage {
- /// <summary>
- /// Gets or sets the message signature.
- /// </summary>
- string Signature { get; set; }
- }
-}
|