Bundle.Transforms Property
Gets the transforms which process the contents of a bundle.
Namespace: System.Web.Optimization
Assembly: System.Web.Optimization (in System.Web.Optimization.dll)
Syntax
'Declaration
Public ReadOnly Property Transforms As IList(Of IBundleTransform)
Get
'Usage
Dim instance As Bundle
Dim value As IList(Of IBundleTransform)
value = instance.Transforms
public IList<IBundleTransform> Transforms { get; }
public:
property IList<IBundleTransform^>^ Transforms {
IList<IBundleTransform^>^ get ();
}
member Transforms : IList<IBundleTransform>
function get Transforms () : IList<IBundleTransform>
Property Value
Type: System.Collections.Generic.IList<IBundleTransform>
The list of transforms for the bundle.
Remarks
By default, the Web optimization framework includes IBundleTransform implementations for minifying scripts and styles.