BundleFileSetOrdering.Files Property

Gets or sets the ordered list of file name patterns (allows one prefix/suffix wildcard '*') that determines the relative ordering of these files in the bundle. For example, ["z.js", "b*", "*a", "a.js"].

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

Syntax

'Declaration
Public Property Files As IList(Of String)
    Get 
    Private Set
'Usage
Dim instance As BundleFileSetOrdering 
Dim value As IList(Of String)

value = instance.Files
public IList<string> Files { get; private set; }
public:
property IList<String^>^ Files {
    IList<String^>^ get ();
    private: void set (IList<String^>^ value);
}
member Files : IList<string> with get, private set
function get Files () : IList<String>
private function set Files (value : IList<String>)

Property Value

Type: System.Collections.Generic.IList<String>
The ordered list of file name patterns that determines the relative ordering of these files in the bundle.

See Also

Reference

BundleFileSetOrdering Class

System.Web.Optimization Namespace