コード例 #1
0
 public ExecuteCustomRenderer(IRendererErrorStrategy errorStrategy) : base(errorStrategy)
 {
     _htmlMinifierService = ServiceLocator.ServiceProvider.GetService(typeof(IHtmlMinifierService)) as IHtmlMinifierService;
 }
 public ExecuteRenderer(IRendererErrorStrategy errorStrategy) : base(errorStrategy)
 {
     this.markupMinifierService = (ServiceLocator.ServiceProvider.GetService(typeof(IMarkupMinifierService)) as IMarkupMinifierService);
 }
 public ExecuteRenderer(IRendererErrorStrategy errorStrategy, IMarkupMinifierService markupMinifierService) : base(errorStrategy)
 {
     this.markupMinifierService = markupMinifierService;
 }
コード例 #4
0
 public ExecuteRenderer(IRendererErrorStrategy errorStrategy) : base(errorStrategy)
 {
 }