summaryrefslogtreecommitdiffstats
path: root/samples/OAuthClient/WindowsLive.aspx.cs
diff options
context:
space:
mode:
Diffstat (limited to 'samples/OAuthClient/WindowsLive.aspx.cs')
-rw-r--r--samples/OAuthClient/WindowsLive.aspx.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/OAuthClient/WindowsLive.aspx.cs b/samples/OAuthClient/WindowsLive.aspx.cs
index f70147c..b550e17 100644
--- a/samples/OAuthClient/WindowsLive.aspx.cs
+++ b/samples/OAuthClient/WindowsLive.aspx.cs
@@ -18,7 +18,7 @@
};
protected void Page_Load(object sender, EventArgs e) {
- if (String.Equals("localhost", this.Request.Headers["Host"].Split(':')[0], StringComparison.OrdinalIgnoreCase)) {
+ if (string.Equals("localhost", this.Request.Headers["Host"].Split(':')[0], StringComparison.OrdinalIgnoreCase)) {
this.localhostDoesNotWorkPanel.Visible = true;
var builder = new UriBuilder(this.publicLink.NavigateUrl);
builder.Port = this.Request.Url.Port;