/// <summary> /// Constructs a instance of the debugging CSS HTTP handler /// </summary> /// <param name="cache">Server cache</param> /// <param name="virtualFileSystemWrapper">Virtual file system wrapper</param> /// <param name="assetHandlerConfig">Configuration settings of the debugging HTTP handler</param> public CssAssetHandler( Cache cache, IVirtualFileSystemWrapper virtualFileSystemWrapper, AssetHandlerSettings assetHandlerConfig) : base(cache, virtualFileSystemWrapper, assetHandlerConfig) { }
protected CssHttpHandlerBase( Cache cache, IVirtualFileSystemWrapper virtualFileSystemWrapper, AssetHandlerSettings assetHandlerConfig) : base(cache, virtualFileSystemWrapper, assetHandlerConfig) { }
/// <summary> /// Constructs a instance of the debugging HTTP handler /// </summary> /// <param name="cache">Server cache</param> /// <param name="virtualFileSystemWrapper">Virtual file system wrapper</param> /// <param name="assetHandlerConfig">Configuration settings of the debugging HTTP handler</param> protected AssetHandlerBase(Cache cache, IVirtualFileSystemWrapper virtualFileSystemWrapper, AssetHandlerSettings assetHandlerConfig) { _cache = cache; _virtualFileSystemWrapper = virtualFileSystemWrapper; _assetHandlerConfig = assetHandlerConfig; }
public LessCssHttpHandler( Cache cache, IVirtualFileSystemWrapper virtualFileSystemWrapper, AssetHandlerSettings assetHandlerConfig) : base(cache, virtualFileSystemWrapper, assetHandlerConfig) { var session = HttpContext.Current.Session; }
/// <summary> /// Constructs a instance of the debugging TypeScript HTTP-handler /// </summary> /// <param name="cache">Server cache</param> /// <param name="virtualFileSystemWrapper">Virtual file system wrapper</param> /// <param name="assetHandlerConfig">Configuration settings of the debugging HTTP-handler</param> public TypeScriptAssetHandler(Cache cache, IVirtualFileSystemWrapper virtualFileSystemWrapper, AssetHandlerSettings assetHandlerConfig) : base(cache, virtualFileSystemWrapper, assetHandlerConfig) { }
/// <summary> /// Constructs a instance of the debugging Sass and SCSS HTTP-handler /// </summary> /// <param name="cache">Server cache</param> /// <param name="virtualFileSystemWrapper">Virtual file system wrapper</param> /// <param name="assetHandlerConfig">Configuration settings of the debugging HTTP-handler</param> public SassAndScssAssetHandler(Cache cache, IVirtualFileSystemWrapper virtualFileSystemWrapper, AssetHandlerSettings assetHandlerConfig) : base(cache, virtualFileSystemWrapper, assetHandlerConfig) { }