Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ScriptResourceAttribute::TypeName Property

 
Note: This API is now obsolete.

Gets the name that is used when retrieving the values in the resource file.

Namespace:   System.Web.UI
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

public:
[ObsoleteAttribute("This property is obsolete. Use StringResourceClientTypeName instead.")]
property String^ TypeName {
	String^ get();
}

Property Value

Type: System::String^

The name that is used in client script when retrieving the values in the resource file.

The TypeName property contains the value that is used for retrieving localized resources in client script. The client script must include the TypeName value and the key name for the resource to be localized.

The following example shows a ScriptResourceAttribute attribute for a script file named CheckAnswer.js that uses resources from the VerificationResources resource files. The name Answer is used to reference these resources. In this example, the TypeName property returns "Answer".

No code example is currently available or this language may not be supported.

The following example shows how to use the resources in client script. The resource keys (Correct and Incorrect) are prefixed with Answer to identify the script resource definition that contains the values.

.NET Framework
Available since 3.5
Return to top
Show:
© 2017 Microsoft