HttpContextWrapper.GetGlobalResourceObject 方法

定义

获取应用程序级别的资源。

重载

GetGlobalResourceObject(String, String)

根据指定的 ClassKeyResourceKey 属性,获取应用程序级别资源对象。

GetGlobalResourceObject(String, String, CultureInfo)

根据指定的 ClassKeyResourceKey 属性以及 CultureInfo 对象,获取一个应用程序级别资源对象。

GetGlobalResourceObject(String, String)

根据指定的 ClassKeyResourceKey 属性,获取应用程序级别资源对象。

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

参数

classKey
String

一个字符串,表示所请求资源对象的 ClassKey 属性。

resourceKey
String

一个字符串,表示所请求资源对象的 ResourceKey 属性。

返回

Object

所请求的应用程序级别资源对象;或者,如果找不到匹配的资源对象,则为 null

适用于

GetGlobalResourceObject(String, String, CultureInfo)

根据指定的 ClassKeyResourceKey 属性以及 CultureInfo 对象,获取一个应用程序级别资源对象。

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

参数

classKey
String

一个字符串,表示所请求资源对象的 ClassKey 属性。

resourceKey
String

一个字符串,表示所请求资源对象的 ResourceKey 属性。

culture
CultureInfo

一个字符串,表示所请求资源的 CultureInfo 对象。

返回

Object

所请求的应用程序级别资源对象(针对指定区域性进行了本地化);或则,如果未找到匹配的资源对象,则为 null

适用于