Page.FileDependencies Property
.NET Framework 3.0
This property supports the .NET Framework infrastructure and is not intended to be used directly from your code.
NOTE: This property is now obsolete.
Sets an array of files that the current HttpResponse object is dependent upon. Namespace: System.Web.UIAssembly: System.Web (in system.web.dll)
[ObsoleteAttribute("The recommended alternative is HttpResponse.AddFileDependencies. http://go.microsoft.com/fwlink/?linkid=14202")] protected ArrayList FileDependencies { set; }
/** @property */ protected void set_FileDependencies (ArrayList value)
protected function set FileDependencies (value : ArrayList)
Not applicable.
Property Value
The array of files that the current HttpResponse object is dependent upon.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.
Community Additions
ADD
Show: