HttpContext.GetGlobalResourceObject Method (String, String, CultureInfo)
Assembly: System.Web (in system.web.dll)
public: static Object^ GetGlobalResourceObject ( String^ classKey, String^ resourceKey, CultureInfo^ culture )
public static Object GetGlobalResourceObject ( String classKey, String resourceKey, CultureInfo culture )
public static function GetGlobalResourceObject ( classKey : String, resourceKey : String, culture : CultureInfo ) : Object
Not applicable.
Parameters
- classKey
A string that represents the ClassKey property of the requested resource object.
- resourceKey
A string that represents a ResourceKey property of the requested resource object.
- culture
A string that represents the CultureInfo object of the requested resource.
Return Value
An Object that represents the requested application-level resource object, which is localized for the specified culture; otherwise, a null reference (Nothing in Visual Basic) if a matching resource object is found but not a resourceKey parameter.The CultureInfo object represents the culture for which the resource was localized. If the resource is not localized for this culture, the lookup will follow a fallback process to locate an appropriate resource. For more information, see Packaging and Deploying Resources.
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. |
Note: