5 writes to cachedResult
System.Xaml.Hosting (5)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (5)
259this.cachedResult = handler; 263this.cachedResult = httpHandlerType; 270this.cachedResult = factory; 278this.cachedResult = configException; 284this.cachedResult = configException;
9 references to cachedResult
System.Xaml.Hosting (9)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (9)
175if (this.cachedResult == null) 181if (this.cachedResult == null) 292if (this.cachedResult is IHttpHandler) 294return ((IHttpHandler)this.cachedResult); 296else if (this.cachedResult is IHttpHandlerFactory) 298IHttpHandlerFactory factory = ((IHttpHandlerFactory)this.cachedResult); 302else if (this.cachedResult is Type) 304return (IHttpHandler)CreateInstance((Type)this.cachedResult); 308throw FxTrace.Exception.AsError((ConfigurationErrorsException)this.cachedResult);