OptimizationSettings.BundleSetupMethod Property

Gets or sets a callback function which is invoked after the bundle manifest is loaded to allow further customization of the bundle collection.

Namespace:  System.Web.Optimization
Assembly:  System.Web.Optimization (in System.Web.Optimization.dll)

Syntax

'Declaration
Public Property BundleSetupMethod As Action(Of BundleCollection)
    Get 
    Set
'Usage
Dim instance As OptimizationSettings 
Dim value As Action(Of BundleCollection)

value = instance.BundleSetupMethod

instance.BundleSetupMethod = value
public Action<BundleCollection> BundleSetupMethod { get; set; }
public:
property Action<BundleCollection^>^ BundleSetupMethod {
    Action<BundleCollection^>^ get ();
    void set (Action<BundleCollection^>^ value);
}
member BundleSetupMethod : Action<BundleCollection> with get, set
function get BundleSetupMethod () : Action<BundleCollection>
function set BundleSetupMethod (value : Action<BundleCollection>)

Property Value

Type: System.Action<BundleCollection>
A callback function which is invoked after the bundle manifest is loaded to allow further customization of the bundle collection.

See Also

Reference

OptimizationSettings Class

System.Web.Optimization Namespace