Page.FileDependencies Property

Definition

Caution

The recommended alternative is HttpResponse.AddFileDependencies. http://go.microsoft.com/fwlink/?linkid=14202

Sets an array of files that the current HttpResponse object is dependent upon.

protected:
 property System::Collections::ArrayList ^ FileDependencies {  void set(System::Collections::ArrayList ^ value); };
protected System.Collections.ArrayList FileDependencies { set; }
[System.Obsolete("The recommended alternative is HttpResponse.AddFileDependencies. http://go.microsoft.com/fwlink/?linkid=14202")]
protected System.Collections.ArrayList FileDependencies { set; }
member this.FileDependencies : System.Collections.ArrayList
[<System.Obsolete("The recommended alternative is HttpResponse.AddFileDependencies. http://go.microsoft.com/fwlink/?linkid=14202")>]
member this.FileDependencies : System.Collections.ArrayList
Protected Property FileDependencies As ArrayList

Property Value

The array of files that the current HttpResponse object is dependent upon.

Attributes

Remarks

This property has been deprecated. Use the AddFileDependencies method or the AddFileDependency method of the HttpResponse class instead.

In most circumstances, do not set this property in code. Set the FileDependencies attribute to true using the @ Page directive in the .aspx file. When the page is requested, the dynamically generated class sets the property.

Applies to

See also