CssMinify.Process Method
Transforms the bundle contents by applying CSS minification.
Namespace: System.Web.Optimization
Assembly: System.Web.Optimization (in System.Web.Optimization.dll)
Syntax
'Declaration
Public Overridable Sub Process ( _
context As BundleContext, _
response As BundleResponse _
)
'Usage
Dim instance As CssMinify
Dim context As BundleContext
Dim response As BundleResponse
instance.Process(context, response)
public virtual void Process(
BundleContext context,
BundleResponse response
)
public:
virtual void Process(
BundleContext^ context,
BundleResponse^ response
)
abstract Process :
context:BundleContext *
response:BundleResponse -> unit
override Process :
context:BundleContext *
response:BundleResponse -> unit
public function Process(
context : BundleContext,
response : BundleResponse
)
Parameters
- context
Type: System.Web.Optimization.BundleContext
The bundle context.
- response
Type: System.Web.Optimization.BundleResponse
The bundle response object
Implements
IBundleTransform.Process(BundleContext, BundleResponse)