HttpContextWrapper.GetGlobalResourceObject Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets an application-level resource.
Overloads
GetGlobalResourceObject(String, String) |
Gets an application-level resource object based on the specified ClassKey and ResourceKey properties. |
GetGlobalResourceObject(String, String, CultureInfo) |
Gets an application-level resource object based on the specified ClassKey and ResourceKey properties, and on the CultureInfo object. |
GetGlobalResourceObject(String, String)
Gets an application-level resource object based on the specified ClassKey and ResourceKey properties.
public:
override System::Object ^ GetGlobalResourceObject(System::String ^ classKey, System::String ^ resourceKey);
public override object GetGlobalResourceObject (string classKey, string resourceKey);
override this.GetGlobalResourceObject : string * string -> obj
Public Overrides Function GetGlobalResourceObject (classKey As String, resourceKey As String) As Object
Parameters
- 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.
Applies to
GetGlobalResourceObject(String, String, CultureInfo)
Gets an application-level resource object based on the specified ClassKey and ResourceKey properties, and on the CultureInfo object.
public:
override System::Object ^ GetGlobalResourceObject(System::String ^ classKey, System::String ^ resourceKey, System::Globalization::CultureInfo ^ culture);
public override object GetGlobalResourceObject (string classKey, string resourceKey, System.Globalization.CultureInfo culture);
override this.GetGlobalResourceObject : string * string * System.Globalization.CultureInfo -> obj
Public Overrides Function GetGlobalResourceObject (classKey As String, resourceKey As String, culture As CultureInfo) As Object
Parameters
- 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.