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 | |
parent | c1d035b2d138dcd915f17f187edb458ef1b541a6 (diff) | |
download | DotNetOpenAuth-2dcfb4843722237aa214294b59ed9be782ea0cec.zip DotNetOpenAuth-2dcfb4843722237aa214294b59ed9be782ea0cec.tar.gz DotNetOpenAuth-2dcfb4843722237aa214294b59ed9be782ea0cec.tar.bz2 |
Renamed the ISignedOAuthMessage.
Diffstat (limited to 'src/DotNetOAuth/Messaging')
-rw-r--r-- | src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs (renamed from src/DotNetOAuth/Messaging/Bindings/ISignedOAuthMessage.cs) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOAuth/Messaging/Bindings/ISignedOAuthMessage.cs b/src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs index 7ee83ff..b1d960f 100644 --- a/src/DotNetOAuth/Messaging/Bindings/ISignedOAuthMessage.cs +++ b/src/DotNetOAuth/Messaging/Bindings/ITamperResistantProtocolMessage.cs @@ -1,5 +1,5 @@ //-----------------------------------------------------------------------
-// <copyright file="ISignedOAuthMessage.cs" company="Andrew Arnott">
+// <copyright file="ITamperResistantProtocolMessage.cs" company="Andrew Arnott">
// Copyright (c) Andrew Arnott. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
@@ -8,7 +8,7 @@ namespace DotNetOAuth.Messaging.Bindings { /// <summary>
/// The contract a message that is signed must implement.
/// </summary>
- internal interface ISignedOAuthMessage : IProtocolMessage {
+ internal interface ITamperResistantProtocolMessage : IProtocolMessage {
/// <summary>
/// Gets or sets the message signature.
/// </summary>
|