summaryrefslogtreecommitdiffstats
path: root/projecttemplates/WebFormsRelyingParty/Members/OAuthAuthorize.aspx.cs
diff options
context:
space:
mode:
Diffstat (limited to 'projecttemplates/WebFormsRelyingParty/Members/OAuthAuthorize.aspx.cs')
-rw-r--r--projecttemplates/WebFormsRelyingParty/Members/OAuthAuthorize.aspx.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/projecttemplates/WebFormsRelyingParty/Members/OAuthAuthorize.aspx.cs b/projecttemplates/WebFormsRelyingParty/Members/OAuthAuthorize.aspx.cs
index 2969d7c..f9a520b 100644
--- a/projecttemplates/WebFormsRelyingParty/Members/OAuthAuthorize.aspx.cs
+++ b/projecttemplates/WebFormsRelyingParty/Members/OAuthAuthorize.aspx.cs
@@ -45,11 +45,11 @@ namespace WebFormsRelyingParty.Members {
// The rest of this method only executes if we couldn't automatically
// redirect to the consumer.
if (pendingRequest.IsUnsafeRequest) {
- verifierMultiView.SetActiveView(noCallbackView);
+ this.verifierMultiView.SetActiveView(noCallbackView);
} else {
- verifierMultiView.SetActiveView(verificationCodeView);
+ this.verifierMultiView.SetActiveView(verificationCodeView);
string verifier = ServiceProvider.CreateVerificationCode(consumer.VerificationCodeFormat, consumer.VerificationCodeLength);
- verificationCodeLabel.Text = verifier;
+ this.verificationCodeLabel.Text = verifier;
requestToken.VerificationCode = verifier;
tokenManager.UpdateToken(requestToken);
}