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.

ResourceExpressionFields::ResourceKey Property

 

Gets the resource key for a parsed resource expression.

Namespace:   System.Web.Compilation
Assembly:  System.Web (in System.Web.dll)

public:
property String^ ResourceKey {
	String^ get();
}

Property Value

Type: System::String^

A String containing the resource key, or Empty if the resource key has not been set.

This method returns the resource key for a parsed resource expression. The resource key is the value specified after the comma (,) in an expression of the form <%$ Resources: ClassKey, ResourceKey %>. The ResourceKey property identifies a particular key/value pair within the resource file mapped to the class key. For example, if a file named Financial.resx contains a key called Currency, that value could be specified with the resource expression <%$ Resources: Financial, Currency %>. After parsing, the ResourceKey property would return "Currency" as its value.

System_CAPS_cautionCaution

Sensitive information should not be stored in a resource file.

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