IScriptControl.GetScriptReferences Method

Definition

Gets a collection of ScriptReference objects that define script resources that the control requires.

public:
 System::Collections::Generic::IEnumerable<System::Web::UI::ScriptReference ^> ^ GetScriptReferences();
public System.Collections.Generic.IEnumerable<System.Web.UI.ScriptReference> GetScriptReferences ();
abstract member GetScriptReferences : unit -> seq<System.Web.UI.ScriptReference>
Public Function GetScriptReferences () As IEnumerable(Of ScriptReference)

Returns

An IEnumerable collection of ScriptReference objects.

Remarks

Implement this method to define custom script library dependencies that the server control requires, such as scripts in a Scripts folder of the current Web application, or resources in an assembly. Scripts from the Microsoft Ajax Library do not have to be registered in this manner.

Applies to