summaryrefslogtreecommitdiffstats
path: root/samples/RelyingPartyWebForms/Global.asax.cs
diff options
context:
space:
mode:
Diffstat (limited to 'samples/RelyingPartyWebForms/Global.asax.cs')
-rw-r--r--samples/RelyingPartyWebForms/Global.asax.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/RelyingPartyWebForms/Global.asax.cs b/samples/RelyingPartyWebForms/Global.asax.cs
index fe60707..cdf941b 100644
--- a/samples/RelyingPartyWebForms/Global.asax.cs
+++ b/samples/RelyingPartyWebForms/Global.asax.cs
@@ -33,7 +33,7 @@
protected void Application_BeginRequest(object sender, EventArgs e) {
// System.Diagnostics.Debugger.Launch();
- Logger.DebugFormat("Processing {0} on {1} ", Request.HttpMethod, this.stripQueryString(Request.Url));
+ Logger.DebugFormat("Processing {0} on {1} ", Request.HttpMethod, stripQueryString(Request.Url));
if (Request.QueryString.Count > 0) {
Logger.DebugFormat("Querystring follows: \n{0}", ToString(Request.QueryString));
}
@@ -53,7 +53,7 @@
Logger.ErrorFormat("An unhandled exception was raised. Details follow: {0}", HttpContext.Current.Server.GetLastError());
}
- private string stripQueryString(Uri uri) {
+ private static string stripQueryString(Uri uri) {
UriBuilder builder = new UriBuilder(uri);
builder.Query = null;
return builder.ToString();