Skip to content

Instantly share code, notes, and snippets.

@robertmuehsig
Last active August 29, 2015 14:01
Show Gist options
  • Save robertmuehsig/d453b1ee6f413e10e974 to your computer and use it in GitHub Desktop.
Save robertmuehsig/d453b1ee6f413e10e974 to your computer and use it in GitHub Desktop.
Glimpse & Async Image Problem
public class BlobImageController : ApiController
{
// Create a shared instance of HttpClient and set the request timeout
private static readonly HttpClient client = new HttpClient()
{
Timeout = TimeSpan.FromMinutes(20)
};
public async Task<HttpResponseMessage> Get(Guid id)
{
var bytes = await client.GetByteArrayAsync("http://placehold.it/350x150");
var response = new HttpResponseMessage();
response.Content = new StreamContent(new MemoryStream(bytes));
response.Content.Headers.ContentType = new MediaTypeHeaderValue("image/png");
return response;
}
}
}
2014-05-15 09:01:35.2766 | DEBUG | Preloaded all referenced assemblies with System.Web.Compilation.BuildManager.GetReferencedAssemblies() |
2014-05-15 09:01:35.6797 | DEBUG | Discovering IClientScript's in 'C:\Users\muehsig\AppData\Local\Temp\Temporary ASP.NET Files\root\e673b980\afb9ff5a' and all sub directories. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IClientScript of type 'Glimpse.Core.ClientScript.Client' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IClientScript of type 'Glimpse.Core.ClientScript.Data' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IClientScript of type 'Glimpse.Core.ClientScript.Insight' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IClientScript of type 'Glimpse.Core.ClientScript.Metadata' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovering IInspector's in 'C:\Users\muehsig\AppData\Local\Temp\Temporary ASP.NET Files\root\e673b980\afb9ff5a' and all sub directories. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IInspector of type 'Glimpse.AspNet.Inspector.RoutesInspector' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IInspector of type 'Glimpse.Core.Inspector.TraceInspector' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IInspector of type 'Glimpse.Mvc.Inspector.DependencyInjectionInspector' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IInspector of type 'Glimpse.Mvc.Inspector.ExecutionInspector' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IInspector of type 'Glimpse.Mvc.Inspector.ModelBinderInspector' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IInspector of type 'Glimpse.Mvc.Inspector.ViewEngineInspector' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovering IResource's in 'C:\Users\muehsig\AppData\Local\Temp\Temporary ASP.NET Files\root\e673b980\afb9ff5a' and all sub directories. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.AjaxResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.ClientResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.ConfigurationResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.ConfigurationScriptResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.ConfigurationStyleResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.HistoryResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.InsightResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.LogoResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.LogosResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.MetadataResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.PopupResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.RequestResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.SpriteResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered IResource of type 'Glimpse.Core.Resource.VersionCheckResource' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovering ISerializationConverter's in 'C:\Users\muehsig\AppData\Local\Temp\Temporary ASP.NET Files\root\e673b980\afb9ff5a' and all sub directories. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.ConfigurationModelConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.ConfigurationRoleManagerProviderSettingsModelConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.EnvironmentModelConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.ListOfRouteModelConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.RequestModelConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.AspNet.SerializationConverter.SessionModelConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.CSharpTypeConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.DateTimeConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.EnumerableOfITimelineMessageConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.GlimpseMetadataConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.GlimpseRequestConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.GlimpseRequestHeadersConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.ListOfTraceMessageConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.MethodInfoConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.TabMetadataConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.TabResultConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.TimelineEventModelConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Core.SerializationConverter.TimeSpanConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.CultureConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.ListOfExecutionModelConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.ListOfMetadataItemModelConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.ListOfViewsModelConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.MvcDisplayModelConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovered ISerializationConverter of type 'Glimpse.Mvc.SerializationConverter.UrlParameterConverter' and added it to collection. |
2014-05-15 09:01:35.7257 | DEBUG | Discovering ITab's in 'C:\Users\muehsig\AppData\Local\Temp\Temporary ASP.NET Files\root\e673b980\afb9ff5a' and all sub directories. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Cache' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Configuration' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Environment' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Request' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Routes' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Server' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.AspNet.Tab.Session' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.Core.Tab.Timeline' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.Core.Tab.Trace' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.Mvc.Tab.Execution' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.Mvc.Tab.Metadata' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.Mvc.Tab.ModelBinding' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered ITab of type 'Glimpse.Mvc.Tab.Views' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovering IDisplay's in 'C:\Users\muehsig\AppData\Local\Temp\Temporary ASP.NET Files\root\e673b980\afb9ff5a' and all sub directories. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered IDisplay of type 'Glimpse.AspNet.Display.EnvironmentDisplay' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered IDisplay of type 'Glimpse.Core.Display.TimingsDisplay' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered IDisplay of type 'Glimpse.Mvc.Display.MvcDisplay' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovering IRuntimePolicy's in 'C:\Users\muehsig\AppData\Local\Temp\Temporary ASP.NET Files\root\e673b980\afb9ff5a' and all sub directories. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.AspNet.Policy.LocalPolicy' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.AjaxPolicy' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.ContentTypePolicy' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.GlimpseResourcePolicy' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.StatusCodePolicy' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Discovered IRuntimePolicy of type 'Glimpse.Core.Policy.UriPolicy' and added it to collection. |
2014-05-15 09:01:35.7416 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Core.Message.ITimelineMessage]' has been subscribed to all 'Glimpse.Core.Message.ITimelineMessage' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__0' on type 'Glimpse.Mvc.Display.MvcDisplay+<>c__DisplayClass4' has been subscribed to all 'Glimpse.Mvc.AlternateType.ActionInvoker+InvokeActionMethod+Message' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__1' on type 'Glimpse.Mvc.Display.MvcDisplay+<>c__DisplayClass4' has been subscribed to all 'Glimpse.Mvc.AlternateType.ViewEngine+FindViews+Message' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__2' on type 'Glimpse.Mvc.Display.MvcDisplay+<>c__DisplayClass4' has been subscribed to all 'Glimpse.Mvc.AlternateType.View+Render+Message' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__3' on type 'Glimpse.Mvc.Display.MvcDisplay+<>c__DisplayClass4' has been subscribed to all 'Glimpse.AspNet.AlternateType.RouteBase+GetRouteData+Message' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.AspNet.AlternateType.RouteBase+ProcessConstraint+Message]' has been subscribed to all 'Glimpse.AspNet.AlternateType.RouteBase+ProcessConstraint+Message' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.AspNet.AlternateType.RouteBase+GetRouteData+Message]' has been subscribed to all 'Glimpse.AspNet.AlternateType.RouteBase+GetRouteData+Message' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Core.Message.ITimelineMessage]' has been subscribed to all 'Glimpse.Core.Message.ITimelineMessage' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Core.Message.ITraceMessage]' has been subscribed to all 'Glimpse.Core.Message.ITraceMessage' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Mvc.Message.IExecutionMessage]' has been subscribed to all 'Glimpse.Mvc.Message.IExecutionMessage' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Mvc.AlternateType.View+Render+Message]' has been subscribed to all 'Glimpse.Mvc.AlternateType.View+Render+Message' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__5' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+ContainsPrefix+Message[System.Web.Mvc.IUnvalidatedValueProvider]' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__6' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+ContainsPrefix+Message[System.Web.Mvc.IValueProvider]' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__7' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+GetValue+Message[System.Web.Mvc.IUnvalidatedValueProvider]' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__8' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+GetValue+Message[System.Web.Mvc.IValueProvider]' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__9' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ModelBinder+BindModel+Message' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__a' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ModelBinder+BindProperty+Message' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__b' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+GetValue+Message[System.Web.Mvc.IEnumerableValueProvider]' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<Setup>b__c' on type 'Glimpse.Mvc.Tab.ModelBinding+<>c__DisplayClassd' has been subscribed to all 'Glimpse.Mvc.AlternateType.ValueProvider`1+ContainsPrefix+Message[System.Web.Mvc.IEnumerableValueProvider]' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Mvc.AlternateType.ViewEngine+FindViews+Message]' has been subscribed to all 'Glimpse.Mvc.AlternateType.ViewEngine+FindViews+Message' messages. |
2014-05-15 09:01:35.7567 | DEBUG | Method '<PersistMessages>b__0' on type 'Glimpse.Core.Extensions.TabContextExtensions+<>c__DisplayClass1`1[Glimpse.Mvc.AlternateType.View+Render+Message]' has been subscribed to all 'Glimpse.Mvc.AlternateType.View+Render+Message' messages. |
2014-05-15 09:01:35.7747 | DEBUG | get_Constraints method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | set_Constraints method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | get_DataTokens method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | set_DataTokens method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | get_Defaults method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | set_Defaults method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | get_RouteHandler method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | set_RouteHandler method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | get_Url method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | set_Url method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | get_RouteExistingFiles method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | set_RouteExistingFiles method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.7747 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Routing.Route'. |
2014-05-15 09:01:35.8307 | INFO | Replaced Route of type 'System.Web.Routing.Route' with proxy implementation. |
2014-05-15 09:01:35.8307 | DEBUG | get_Constraints method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | set_Constraints method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | get_DataTokens method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | set_DataTokens method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | get_Defaults method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | set_Defaults method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | get_RouteHandler method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | set_RouteHandler method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | get_Url method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | set_Url method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | get_RouteExistingFiles method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | set_RouteExistingFiles method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | _url method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | _parsedRoute method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | HttpMethodParameterName method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8307 | DEBUG | _routeExistingFiles method of type 'System.Web.Routing.Route' is not proxyable. |
2014-05-15 09:01:35.8347 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Routing.Route'. |
2014-05-15 09:01:35.8507 | INFO | Replaced Route of type 'System.Web.Http.WebHost.Routing.HttpWebRoute' with proxy implementation. |
2014-05-15 09:01:35.8507 | INFO | Replaced Route of type 'System.Web.Http.WebHost.Routing.HttpWebRoute' with proxy implementation. |
2014-05-15 09:01:35.8507 | INFO | Replaced Route of type 'System.Web.Mvc.RouteCollectionExtensions+IgnoreRouteInternal' with proxy implementation. |
2014-05-15 09:01:35.8507 | INFO | Replaced Route of type 'System.Web.Routing.Route' with proxy implementation. |
2014-05-15 09:01:35.8507 | DEBUG | Setup IInspector of type 'Glimpse.AspNet.Inspector.RoutesInspector'. |
2014-05-15 09:01:35.8507 | DEBUG | Setup IInspector of type 'Glimpse.Core.Inspector.TraceInspector'. |
2014-05-15 09:01:35.8507 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IDependencyResolver'. |
2014-05-15 09:01:35.8697 | DEBUG | Replaced IDependencyResolver of type 'System.Web.Mvc.DependencyResolver+DefaultDependencyResolver' with proxy implementation. |
2014-05-15 09:01:35.8697 | DEBUG | Setup IInspector of type 'Glimpse.Mvc.Inspector.DependencyInjectionInspector'. |
2014-05-15 09:01:35.8697 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IControllerFactory'. |
2014-05-15 09:01:35.8845 | DEBUG | Proxied IControllerFactory of type 'System.Web.Mvc.DefaultControllerFactory'. |
2014-05-15 09:01:35.8845 | DEBUG | Setup IInspector of type 'Glimpse.Mvc.Inspector.ExecutionInspector'. |
2014-05-15 09:01:35.8845 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.ValueProviderFactory'. |
2014-05-15 09:01:35.8845 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.ChildActionValueProviderFactory' with proxy implementation. |
2014-05-15 09:01:35.8845 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.FormValueProviderFactory' with proxy implementation. |
2014-05-15 09:01:35.8845 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.JsonValueProviderFactory' with proxy implementation. |
2014-05-15 09:01:35.8845 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.RouteDataValueProviderFactory' with proxy implementation. |
2014-05-15 09:01:35.8845 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.QueryStringValueProviderFactory' with proxy implementation. |
2014-05-15 09:01:35.8845 | INFO | Replaced ValueProviderFactory of type 'System.Web.Mvc.HttpFileCollectionValueProviderFactory' with proxy implementation. |
2014-05-15 09:01:35.8845 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IModelBinder'. |
2014-05-15 09:01:35.8965 | INFO | Replaced IModelBinder of type 'System.Web.Mvc.HttpPostedFileBaseModelBinder' with proxy implementation. |
2014-05-15 09:01:35.8965 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IModelBinder'. |
2014-05-15 09:01:35.8965 | INFO | Replaced IModelBinder of type 'System.Web.Mvc.ByteArrayModelBinder' with proxy implementation. |
2014-05-15 09:01:35.8965 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IModelBinder'. |
2014-05-15 09:01:35.8965 | INFO | Replaced IModelBinder of type 'System.Web.Mvc.LinqBinaryModelBinder' with proxy implementation. |
2014-05-15 09:01:35.8965 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IModelBinder'. |
2014-05-15 09:01:35.8965 | INFO | Replaced IModelBinder of type 'System.Web.Mvc.CancellationTokenModelBinder' with proxy implementation. |
2014-05-15 09:01:35.8965 | DEBUG | get_Binders method of type 'System.Web.Mvc.DefaultModelBinder' is not proxyable. |
2014-05-15 09:01:35.8965 | DEBUG | set_Binders method of type 'System.Web.Mvc.DefaultModelBinder' is not proxyable. |
2014-05-15 09:01:35.8965 | DEBUG | GetFilteredModelProperties method of type 'System.Web.Mvc.DefaultModelBinder' is not proxyable. |
2014-05-15 09:01:35.8965 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.DefaultModelBinder'. |
2014-05-15 09:01:35.8965 | INFO | Replaced IModelBinder of type 'System.Web.Mvc.DefaultModelBinder' with proxy implementation. |
2014-05-15 09:01:35.8965 | DEBUG | Setup IInspector of type 'Glimpse.Mvc.Inspector.ModelBinderInspector'. |
2014-05-15 09:01:35.8965 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IViewEngine'. |
2014-05-15 09:01:35.9165 | INFO | Replaced IViewEngine of type 'System.Web.Mvc.WebFormViewEngine' with proxy implementation. |
2014-05-15 09:01:35.9165 | DEBUG | Methods inspected via proxy generation hook on type 'System.Web.Mvc.IViewEngine'. |
2014-05-15 09:01:35.9165 | INFO | Replaced IViewEngine of type 'System.Web.Mvc.RazorViewEngine' with proxy implementation. |
2014-05-15 09:01:35.9165 | DEBUG | Setup IInspector of type 'Glimpse.Mvc.Inspector.ViewEngineInspector'. |
2014-05-15 09:01:35.9435 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:35.9625 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.3760 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.3760 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.3760 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.3760 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.3820 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.3820 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.3820 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.3820 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.3820 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.3820 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.4120 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
2014-05-15 09:01:37.6320 | DEBUG | RuntimePolicy set to 'Off' by IRuntimePolicy of type 'Glimpse.Core.Policy.ControlCookiePolicy' during RuntimeEvent 'BeginRequest'. |
<div class="jumbotron">
<h1>ASP.NET</h1>
<p class="lead">ASP.NET is a free web framework for building great Web sites and Web applications using HTML, CSS, and JavaScript.</p>
<p><a href="http://asp.net" class="btn btn-primary btn-lg">Learn more &raquo;</a></p>
</div>
<div class="row">
<div class="col-md-4">
<h2>Getting started</h2>
<p>ASP.NET Web API is a framework that makes it easy to build HTTP services that reach
a broad range of clients, including browsers and mobile devices. ASP.NET Web API
is an ideal platform for building RESTful applications on the .NET Framework.</p>
<p><a class="btn btn-default" href="http://go.microsoft.com/fwlink/?LinkId=301870">Learn more &raquo;</a></p>
</div>
<div class="col-md-4">
<h2>Get more libraries</h2>
<p>NuGet is a free Visual Studio extension that makes it easy to add, remove, and update libraries and tools in Visual Studio projects.</p>
<p><a class="btn btn-default" href="http://go.microsoft.com/fwlink/?LinkId=301871">Learn more &raquo;</a></p>
</div>
<div class="col-md-4">
<h2>Web Hosting</h2>
<p>You can easily find a web hosting company that offers the right mix of features and price for your applications.</p>
<p><a class="btn btn-default" href="http://go.microsoft.com/fwlink/?LinkId=301872">Learn more &raquo;</a></p>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
<img src="@Url.RouteUrl("DefaultApi", new { httproute = "", controller = "BlobImage", id = Guid.NewGuid().ToString() })" />
</div>
</div>
<packages>
<package id="Antlr" version="3.4.1.9004" targetFramework="net45" />
<package id="bootstrap" version="3.0.0" targetFramework="net45" />
<package id="Glimpse" version="1.8.2" targetFramework="net45" />
<package id="Glimpse.AspNet" version="1.8.0" targetFramework="net45" />
<package id="Glimpse.Mvc5" version="1.5.3" targetFramework="net45" />
<package id="jQuery" version="1.10.2" targetFramework="net45" />
<package id="Microsoft.AspNet.Mvc" version="5.1.2" targetFramework="net45" />
<package id="Microsoft.AspNet.Razor" version="3.1.2" targetFramework="net45" />
<package id="Microsoft.AspNet.Web.Optimization" version="1.1.3" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi" version="5.1.2" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.Client" version="5.1.2" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.Core" version="5.1.2" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.HelpPage" version="5.1.2" targetFramework="net45" />
<package id="Microsoft.AspNet.WebApi.WebHost" version="5.1.2" targetFramework="net45" />
<package id="Microsoft.AspNet.WebPages" version="3.1.2" targetFramework="net45" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
<package id="Modernizr" version="2.6.2" targetFramework="net45" />
<package id="Newtonsoft.Json" version="5.0.6" targetFramework="net45" />
<package id="Respond" version="1.2.0" targetFramework="net45" />
<package id="WebApi.Hal" version="2.2.0.18" targetFramework="net45" />
<package id="WebApiContrib.Formatting.Jsonp" version="3.0.0.0" targetFramework="net45" />
<package id="WebGrease" version="1.5.2" targetFramework="net45" />
</packages>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment