Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule.TraceCallback C# (CSharp) Method

TraceCallback() private method

private TraceCallback ( string callback, System.Web.HttpApplication application ) : void
callback string
application System.Web.HttpApplication
return void
        private void TraceCallback(string callback, HttpApplication application)
        {
            if (WebEventSource.Log.IsVerboseEnabled)
            {
                try
                {
                    if (application.Context != null)
                    {
                        // Url.ToString internally builds local member once and then always returns it
                        // During serialization we will anyway call same ToString() so we do not force unnesesary formatting just for tracing 
                        var url = application.Context.Request.UnvalidatedGetUrl();
                        string logUrl = (url != null) ? url.ToString() : string.Empty;

                        WebEventSource.Log.WebModuleCallback(callback, logUrl);
                    }
                }
                catch (Exception exc)
                {
                    WebEventSource.Log.TraceCallbackFailure(callback, exc.ToInvariantString());
                }
            }
        }
    }