diff options
Diffstat (limited to 'samples/DotNetOpenAuth.ApplicationBlock/InMemoryTokenManager.cs')
-rw-r--r-- | samples/DotNetOpenAuth.ApplicationBlock/InMemoryTokenManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/DotNetOpenAuth.ApplicationBlock/InMemoryTokenManager.cs b/samples/DotNetOpenAuth.ApplicationBlock/InMemoryTokenManager.cs index a4f6154..35f6c08 100644 --- a/samples/DotNetOpenAuth.ApplicationBlock/InMemoryTokenManager.cs +++ b/samples/DotNetOpenAuth.ApplicationBlock/InMemoryTokenManager.cs @@ -31,7 +31,7 @@ namespace DotNetOpenAuth.ApplicationBlock { /// <param name="consumerKey">The consumer key.</param> /// <param name="consumerSecret">The consumer secret.</param> public InMemoryTokenManager(string consumerKey, string consumerSecret) { - if (String.IsNullOrEmpty(consumerKey)) { + if (string.IsNullOrEmpty(consumerKey)) { throw new ArgumentNullException("consumerKey"); } @@ -136,7 +136,7 @@ namespace DotNetOpenAuth.ApplicationBlock { /// send a follow-up request for the access token.</para> /// </remarks> public void StoreOpenIdAuthorizedRequestToken(string consumerKey, AuthorizationApprovedResponse authorization) { - this.tokensAndSecrets[authorization.RequestToken] = String.Empty; + this.tokensAndSecrets[authorization.RequestToken] = string.Empty; } #endregion |