Bundling.Extensions.Transforms.YuiCssMinify.Process C# (CSharp) Метод

Process() публичный Метод

public Process ( BundleContext context, BundleResponse response ) : void
context BundleContext
response BundleResponse
Результат void
		public void Process(BundleContext context, BundleResponse response)
		{
			Assert.ArgumentNotNull(response, "response");

			response.Content = new CssCompressor().Compress(response.Content);
			response.ContentType = "text/css";
		}
	}
YuiCssMinify