ResourceExpressionFields Class
Contains the fields from a parsed resource expression.
Assembly: System.Web (in System.Web.dll)
The ResourceExpressionFields type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ClassKey | Gets the class key for a parsed resource expression. |
![]() | ResourceKey | Gets the resource key for a parsed resource expression. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
When a page is parsed, the values contained in a resource expression are parsed and stored in an instance of the ResourceExpressionFields class. This ResourceExpressionFields object contains two fields, ClassKey and ResourceKey. These fields are drawn from the values of a resource expression in either the explicit (<%$ Resources: ClassKey, ResourceKey %>) or implicit (meta:resourcekey="ResourceKey") form.
The ClassKey property identifies the class name of a resource that is mapped to a resource file. For example, to reference a resource file named Financial.resx, or a localized version such as Financial.en-GB.resx, the resource expression would appear as <%$ Resources: Financial, ResourceKey %>. After parsing, the ClassKey property would return "Financial" as its value.
The ResourceKey property identifies the particular key/value pair to be retrieved from the file. If the Financial.resx file 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.
The resource expression is parsed through the ParseExpression method.
Caution |
|---|
Sensitive information should not be stored in a resource file. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.



Caution