summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-05-21 18:11:04 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-05-21 18:11:04 -0700
commit318603bf632b7528f7405e9f784586f1e0b4321d (patch)
tree2811316cd135adac6f9974bd09565242ccfef899
parent1eecc1a10763c85c20f9e02d2b40bddf9c8d950c (diff)
downloadDotNetOpenAuth-318603bf632b7528f7405e9f784586f1e0b4321d.zip
DotNetOpenAuth-318603bf632b7528f7405e9f784586f1e0b4321d.tar.gz
DotNetOpenAuth-318603bf632b7528f7405e9f784586f1e0b4321d.tar.bz2
StyleCop fixes.
-rw-r--r--samples/OpenIdRelyingPartyMvc/Global.asax.cs2
-rw-r--r--samples/OpenIdRelyingPartyWebForms/NoIdentityOpenId.aspx.cs6
2 files changed, 4 insertions, 4 deletions
diff --git a/samples/OpenIdRelyingPartyMvc/Global.asax.cs b/samples/OpenIdRelyingPartyMvc/Global.asax.cs
index b8524e8..d57a13f 100644
--- a/samples/OpenIdRelyingPartyMvc/Global.asax.cs
+++ b/samples/OpenIdRelyingPartyMvc/Global.asax.cs
@@ -20,7 +20,7 @@
routes.MapRoute(
"Root",
- "",
+ string.Empty,
new { controller = "Home", action = "Index", id = string.Empty });
}
diff --git a/samples/OpenIdRelyingPartyWebForms/NoIdentityOpenId.aspx.cs b/samples/OpenIdRelyingPartyWebForms/NoIdentityOpenId.aspx.cs
index 8527ba4..7e99714 100644
--- a/samples/OpenIdRelyingPartyWebForms/NoIdentityOpenId.aspx.cs
+++ b/samples/OpenIdRelyingPartyWebForms/NoIdentityOpenId.aspx.cs
@@ -28,15 +28,15 @@
}
break;
case AuthenticationStatus.Canceled:
- resultMessage.Text = "Canceled at OP. This may be a sign that the OP doesn't support this message.";
+ this.resultMessage.Text = "Canceled at OP. This may be a sign that the OP doesn't support this message.";
break;
case AuthenticationStatus.Failed:
- resultMessage.Text = "OP returned a failure: " + response.Exception;
+ this.resultMessage.Text = "OP returned a failure: " + response.Exception;
break;
case AuthenticationStatus.SetupRequired:
case AuthenticationStatus.Authenticated:
default:
- resultMessage.Text = "OP returned an unexpected response.";
+ this.resultMessage.Text = "OP returned an unexpected response.";
break;
}
}