This topic has not yet been rated - Rate this topic

HttpContext.GetGlobalResourceObject Method (String, String)

Gets an application-level resource object based on the specified ClassKey and ResourceKey properties.

Namespace:  System.Web
Assembly:  System.Web (in System.Web.dll)
public static Object GetGlobalResourceObject(
	string classKey,
	string resourceKey
)

Parameters

classKey
Type: System.String

A string that represents the ClassKey property of the requested resource object.

resourceKey
Type: System.String

A string that represents the ResourceKey property of the requested resource object.

Return Value

Type: System.Object
An Object that represents the requested application-level resource object; otherwise, null if a resource object is not found or if a resource object is found but it does not have the requested property.
ExceptionCondition
MissingManifestResourceException

A resource object with the specified classKey parameter was not found.

- or -

The main assembly does not contain the resources for the neutral culture, and these resources are required because the appropriate satellite assembly is missing.

The GetGlobalResourceObject method returns a global resource by using the culture that is specified in the CurrentUICulture property.

NoteNote

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.

.NET Framework

Supported in: 4.5, 4, 3.5, 3.0, 2.0

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.