diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-10-09 07:16:47 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-10-09 07:23:38 -0700 |
commit | 50e231ec535e08c2bd5552100a0b3b7feb613f22 (patch) | |
tree | 26ab01c083c89336e8f1a0a987c56579b1e602b1 /samples/Consumer/App_Code/InMemoryTokenManager.cs | |
parent | 8586edc4c9d62f6241d2db66036ffb687deabadb (diff) | |
download | DotNetOpenAuth-50e231ec535e08c2bd5552100a0b3b7feb613f22.zip DotNetOpenAuth-50e231ec535e08c2bd5552100a0b3b7feb613f22.tar.gz DotNetOpenAuth-50e231ec535e08c2bd5552100a0b3b7feb613f22.tar.bz2 |
Renamed a few OAuth messages and a few more methods.
Diffstat (limited to 'samples/Consumer/App_Code/InMemoryTokenManager.cs')
-rw-r--r-- | samples/Consumer/App_Code/InMemoryTokenManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/Consumer/App_Code/InMemoryTokenManager.cs b/samples/Consumer/App_Code/InMemoryTokenManager.cs index edd3a9d..2e792ba 100644 --- a/samples/Consumer/App_Code/InMemoryTokenManager.cs +++ b/samples/Consumer/App_Code/InMemoryTokenManager.cs @@ -36,7 +36,7 @@ public class InMemoryTokenManager : ITokenManager { return this.tokensAndSecrets[token];
}
- public void StoreNewRequestToken(RequestTokenMessage request, UnauthorizedRequestTokenMessage response) {
+ public void StoreNewRequestToken(GetRequestTokenMessage request, GrantRequestTokenMessage response) {
this.tokensAndSecrets[response.RequestToken] = response.TokenSecret;
}
|