diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-10-09 14:27:05 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-10-09 14:27:05 -0700 |
commit | 7ba9649126a7b802e348fbe210383fabc2898659 (patch) | |
tree | 044d6b2b744b765da0fcab39086eadd35e6f3bd3 /src/DotNetOAuth/ChannelElements/ITokenManager.cs | |
parent | 8b4b94a24edb82609e45b10d32744a2b436d79c6 (diff) | |
download | DotNetOpenAuth-7ba9649126a7b802e348fbe210383fabc2898659.zip DotNetOpenAuth-7ba9649126a7b802e348fbe210383fabc2898659.tar.gz DotNetOpenAuth-7ba9649126a7b802e348fbe210383fabc2898659.tar.bz2 |
Refactored messages to try to simplify their uses and try to hide information from areas that don't need it.
Diffstat (limited to 'src/DotNetOAuth/ChannelElements/ITokenManager.cs')
-rw-r--r-- | src/DotNetOAuth/ChannelElements/ITokenManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOAuth/ChannelElements/ITokenManager.cs b/src/DotNetOAuth/ChannelElements/ITokenManager.cs index 2b8c3b5..878f176 100644 --- a/src/DotNetOAuth/ChannelElements/ITokenManager.cs +++ b/src/DotNetOAuth/ChannelElements/ITokenManager.cs @@ -42,7 +42,7 @@ namespace DotNetOAuth.ChannelElements { /// <param name="request">The request message that resulted in the generation of a new unauthorized request token.</param>
/// <param name="response">The response message that includes the unauthorized request token.</param>
/// <exception cref="ArgumentException">Thrown if the consumer key is not registered, or a required parameter was not found in the parameters collection.</exception>
- void StoreNewRequestToken(GetRequestTokenMessage request, GrantRequestTokenMessage response);
+ void StoreNewRequestToken(GetRequestTokenMessage request, ITokenSecretContainingMessage response);
/// <summary>
/// Checks whether a given request token has already been authorized
|