HttpContext.GetGlobalResourceObject Method (String, String)
.NET Framework 3.0
Gets an application-level resource object based on the specified ClassKey and ResourceKey properties.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public static Object GetGlobalResourceObject ( String classKey, String resourceKey )
public static function GetGlobalResourceObject ( classKey : String, resourceKey : String ) : Object
Not applicable.
Parameters
- classKey
A string that represents the ClassKey property of the requested resource object.
- resourceKey
A string that represents the ResourceKey property of the requested resource object.
Return Value
An Object that represents the requested application-level resource object; otherwise, null if a matching resource object is found but not a resourceKey parameter.The GetGlobalResourceObject method returns a global resource by using the culture that is specified in the CurrentUICulture property.
Note: |
|---|
| In some editing environments, such as Visual Web Developer, the editor might throw a design-time MissingManifestResourceException exception if you use a period (.) in the global resource-key name. However, this does not affect your ability to edit or save the file, and you can ignore the error. |
Community Additions
ADD
Show:
Note: