ScriptResourceAttribute Constructors

Definition

Initializes a new instance of the ScriptResourceAttribute class.

Overloads

ScriptResourceAttribute(String)

Initializes a new instance of the ScriptResourceAttribute class.

ScriptResourceAttribute(String, String, String)

Initializes a new instance of the ScriptResourceAttribute class.

ScriptResourceAttribute(String)

Initializes a new instance of the ScriptResourceAttribute class.

public:
 ScriptResourceAttribute(System::String ^ scriptName);
public ScriptResourceAttribute (string scriptName);
new System.Web.UI.ScriptResourceAttribute : string -> System.Web.UI.ScriptResourceAttribute
Public Sub New (scriptName As String)

Parameters

scriptName
String

The name of the script library.

Applies to

ScriptResourceAttribute(String, String, String)

Initializes a new instance of the ScriptResourceAttribute class.

public:
 ScriptResourceAttribute(System::String ^ scriptName, System::String ^ scriptResourceName, System::String ^ typeName);
public:
 ScriptResourceAttribute(System::String ^ scriptName, System::String ^ stringResourceName, System::String ^ stringResourceClientTypeName);
public ScriptResourceAttribute (string scriptName, string scriptResourceName, string typeName);
public ScriptResourceAttribute (string scriptName, string stringResourceName, string stringResourceClientTypeName);
new System.Web.UI.ScriptResourceAttribute : string * string * string -> System.Web.UI.ScriptResourceAttribute
new System.Web.UI.ScriptResourceAttribute : string * string * string -> System.Web.UI.ScriptResourceAttribute
Public Sub New (scriptName As String, scriptResourceName As String, typeName As String)
Public Sub New (scriptName As String, stringResourceName As String, stringResourceClientTypeName As String)

Parameters

scriptName
String

The name of the script library.

scriptResourceNamestringResourceName
String

The name of the resource file for the script library.

typeNamestringResourceClientTypeName
String

The name of the type to create for the values in the resource file.

Exceptions

scriptName, scriptResourceName, or typeName is null or an empty string ("").

Remarks

The ScriptResourceAttribute method is typically called by using the ScriptResourceAttribute attribute as an assembly attribute in the application's AssemblyInfo file.

Applies to