HttpContext.GetGlobalResourceObject Method (String, String, CultureInfo)

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

Namespace: System.Web
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.

Exception typeCondition

MissingManifestResourceException

A resource object for which 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 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.

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.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: