ResourceExpressionFields.ResourceKey Property

Definition

Gets the resource key for a parsed resource expression.

C#
public string ResourceKey { get; }

Property Value

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

Remarks

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.

Caution

Sensitive information should not be stored in a resource file.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also