summaryrefslogtreecommitdiffstats
path: root/samples/Consumer/App_Code/InMemoryTokenManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'samples/Consumer/App_Code/InMemoryTokenManager.cs')
-rw-r--r--samples/Consumer/App_Code/InMemoryTokenManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/Consumer/App_Code/InMemoryTokenManager.cs b/samples/Consumer/App_Code/InMemoryTokenManager.cs
index 89400c0..7312c2e 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(GetRequestTokenMessage request, ITokenSecretContainingMessage response) {
+ public void StoreNewRequestToken(UnauthorizedTokenRequest request, ITokenSecretContainingMessage response) {
this.tokensAndSecrets[response.Token] = response.TokenSecret;
}