summaryrefslogtreecommitdiffstats
path: root/src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-10-09 08:06:34 -0700
committerAndrew <andrewarnott@gmail.com>2008-10-09 08:06:34 -0700
commit30b0475b757d7eba7cf779586bf1b567e76b6680 (patch)
treeaee3d156e4e4fea132d3e9def10344672f349cc6 /src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs
parentf36530e4bdd9b534fba3785a98a406ac387fbfac (diff)
downloadDotNetOpenAuth-30b0475b757d7eba7cf779586bf1b567e76b6680.zip
DotNetOpenAuth-30b0475b757d7eba7cf779586bf1b567e76b6680.tar.gz
DotNetOpenAuth-30b0475b757d7eba7cf779586bf1b567e76b6680.tar.bz2
Removed ConsumerBase.ConsumerSecret, since the token manager can provide that.
Diffstat (limited to 'src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs')
-rw-r--r--src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs b/src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs
index b84b6e7..e00d206 100644
--- a/src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs
+++ b/src/DotNetOAuth/Messaging/ITamperProtectionChannelBindingElement.cs
@@ -14,11 +14,10 @@ namespace DotNetOAuth.Messaging {
/// </summary>
public interface ITamperProtectionChannelBindingElement : IChannelBindingElement {
/// <summary>
- /// Gets or sets the delegate that will initialize the non-serialized properties necessary on a signed
- /// message so that its signature can be correctly calculated for verification.
- /// May be null for Consumers (who never have to verify signatures).
+ /// Gets or sets the delegate that will initialize the non-serialized properties necessary on a
+ /// signable message so that its signature can be correctly calculated or verified.
/// </summary>
- Action<ITamperResistantOAuthMessage> SignatureVerificationCallback { get; set; }
+ Action<ITamperResistantOAuthMessage> SignatureCallback { get; set; }
/// <summary>
/// Clones this instance.