diff options
Diffstat (limited to 'samples/ConsumerWpf/InMemoryTokenManager.cs')
-rw-r--r-- | samples/ConsumerWpf/InMemoryTokenManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/ConsumerWpf/InMemoryTokenManager.cs b/samples/ConsumerWpf/InMemoryTokenManager.cs index 5be2626..b29d2e0 100644 --- a/samples/ConsumerWpf/InMemoryTokenManager.cs +++ b/samples/ConsumerWpf/InMemoryTokenManager.cs @@ -35,7 +35,7 @@ namespace DotNetOAuth.Samples.ConsumerWpf { return this.tokensAndSecrets[token];
}
- public void StoreNewRequestToken(GetRequestTokenMessage request, ITokenSecretContainingMessage response) {
+ public void StoreNewRequestToken(UnauthorizedTokenRequest request, ITokenSecretContainingMessage response) {
this.tokensAndSecrets[response.Token] = response.TokenSecret;
}
|