diff options
Diffstat (limited to 'src/DotNetOAuth/ChannelElements/ITamperResistantOAuthMessage.cs')
-rw-r--r-- | src/DotNetOAuth/ChannelElements/ITamperResistantOAuthMessage.cs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/DotNetOAuth/ChannelElements/ITamperResistantOAuthMessage.cs b/src/DotNetOAuth/ChannelElements/ITamperResistantOAuthMessage.cs index cafea5d..6077fb7 100644 --- a/src/DotNetOAuth/ChannelElements/ITamperResistantOAuthMessage.cs +++ b/src/DotNetOAuth/ChannelElements/ITamperResistantOAuthMessage.cs @@ -20,19 +20,16 @@ namespace DotNetOAuth.ChannelElements { /// <summary>
/// Gets or sets the Token Secret used to sign the message.
- /// Only applicable to Consumer.
/// </summary>
string TokenSecret { get; set; }
/// <summary>
/// Gets or sets the Consumer Secret used to sign the message.
- /// Only applicable to Consumer.
/// </summary>
string ConsumerSecret { get; set; }
/// <summary>
/// Gets or sets the HTTP method that will be used to transmit the message.
- /// Only applicable to Consumer.
/// </summary>
string HttpMethod { get; set; }
|