diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-07-28 00:22:42 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-07-28 00:22:42 -0700 |
commit | c7581e0cc1e30e14d04245c408b5f14cba24a1a8 (patch) | |
tree | 463521f4f81236adf190153ecbb38111d420d0c5 | |
parent | f0b45457c2716eaaddca89e9e5271e153e69735e (diff) | |
download | DotNetOpenAuth-c7581e0cc1e30e14d04245c408b5f14cba24a1a8.zip DotNetOpenAuth-c7581e0cc1e30e14d04245c408b5f14cba24a1a8.tar.gz DotNetOpenAuth-c7581e0cc1e30e14d04245c408b5f14cba24a1a8.tar.bz2 |
Fixed StyleCop message.
-rw-r--r-- | samples/OpenIdRelyingPartyWebForms/loginPlusOAuthSampleOP.aspx.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/OpenIdRelyingPartyWebForms/loginPlusOAuthSampleOP.aspx.cs b/samples/OpenIdRelyingPartyWebForms/loginPlusOAuthSampleOP.aspx.cs index d3919fb..5a86f31 100644 --- a/samples/OpenIdRelyingPartyWebForms/loginPlusOAuthSampleOP.aspx.cs +++ b/samples/OpenIdRelyingPartyWebForms/loginPlusOAuthSampleOP.aspx.cs @@ -33,13 +33,13 @@ AuthorizedTokenResponse accessToken = consumer.ProcessUserAuthorization(e.Response); if (accessToken != null) { - this.MultiView1.SetActiveView(AuthorizationGiven); + this.MultiView1.SetActiveView(this.AuthorizationGiven); // At this point, the access token would be somehow associated with the user // account at the RP. ////Database.Associate(e.Response.ClaimedIdentifier, accessToken.AccessToken); } else { - this.MultiView1.SetActiveView(AuthorizationDenied); + this.MultiView1.SetActiveView(this.AuthorizationDenied); } // Avoid the redirect |