HttpContextBase.GetGlobalResourceObject Method

Definition

When overridden in a derived class, gets an application-level resource.

Overloads

GetGlobalResourceObject(String, String)

When overridden in a derived class, gets an application-level resource object based on the specified ClassKey and ResourceKey properties.

GetGlobalResourceObject(String, String, CultureInfo)

When overridden in a derived class, gets an application-level resource object based on the specified ClassKey and ResourceKey properties, and on the CultureInfo object.

GetGlobalResourceObject(String, String)

When overridden in a derived class, gets an application-level resource object based on the specified ClassKey and ResourceKey properties.

public:
 virtual System::Object ^ GetGlobalResourceObject(System::String ^ classKey, System::String ^ resourceKey);
public virtual object GetGlobalResourceObject (string classKey, string resourceKey);
abstract member GetGlobalResourceObject : string * string -> obj
override this.GetGlobalResourceObject : string * string -> obj
Public Overridable Function GetGlobalResourceObject (classKey As String, resourceKey As String) As Object

Parameters

classKey
String

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

resourceKey
String

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

Returns

The requested application-level resource object, or null if no matching resource object is found.

Exceptions

Applies to

GetGlobalResourceObject(String, String, CultureInfo)

When overridden in a derived class, gets an application-level resource object based on the specified ClassKey and ResourceKey properties, and on the CultureInfo object.

public:
 virtual System::Object ^ GetGlobalResourceObject(System::String ^ classKey, System::String ^ resourceKey, System::Globalization::CultureInfo ^ culture);
public virtual object GetGlobalResourceObject (string classKey, string resourceKey, System.Globalization.CultureInfo culture);
abstract member GetGlobalResourceObject : string * string * System.Globalization.CultureInfo -> obj
override this.GetGlobalResourceObject : string * string * System.Globalization.CultureInfo -> obj
Public Overridable Function GetGlobalResourceObject (classKey As String, resourceKey As String, culture As CultureInfo) As Object

Parameters

classKey
String

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

resourceKey
String

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

culture
CultureInfo

A string that represents the CultureInfo object of the requested resource.

Returns

The requested application-level resource object, which is localized for the specified culture, or null if no matching resource object is found.

Exceptions

Applies to