HttpContextWrapper.GetGlobalResourceObject 方法
定义
获取应用程序级别的资源。Gets an application-level resource.
重载
| GetGlobalResourceObject(String, String) |
根据指定的 ClassKey 和 ResourceKey 属性,获取应用程序级别资源对象。Gets an application-level resource object based on the specified ClassKey and ResourceKey properties. |
| GetGlobalResourceObject(String, String, CultureInfo) |
根据指定的 ClassKey 和 ResourceKey 属性以及 CultureInfo 对象,获取一个应用程序级别资源对象。Gets an application-level resource object based on the specified ClassKey and ResourceKey properties, and on the CultureInfo object. |
GetGlobalResourceObject(String, String)
根据指定的 ClassKey 和 ResourceKey 属性,获取应用程序级别资源对象。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
参数
- classKey
- String
一个字符串,表示所请求资源对象的 ClassKey 属性。A string that represents the ClassKey property of the requested resource object.
- resourceKey
- String
一个字符串,表示所请求资源对象的 ResourceKey 属性。A string that represents the ResourceKey property of the requested resource object.
返回
所请求的应用程序级别资源对象;或者,如果找不到匹配的资源对象,则为 null。The requested application-level resource object, or null if no matching resource object is found.
适用于
GetGlobalResourceObject(String, String, CultureInfo)
根据指定的 ClassKey 和 ResourceKey 属性以及 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
参数
- classKey
- String
一个字符串,表示所请求资源对象的 ClassKey 属性。A string that represents the ClassKey property of the requested resource object.
- resourceKey
- String
一个字符串,表示所请求资源对象的 ResourceKey 属性。A string that represents the ResourceKey property of the requested resource object.
- culture
- CultureInfo
一个字符串,表示所请求资源的 CultureInfo 对象。A string that represents the CultureInfo object of the requested resource.
返回
所请求的应用程序级别资源对象(针对指定区域性进行了本地化);或则,如果未找到匹配的资源对象,则为 null。The requested application-level resource object, which is localized for the specified culture, or null if no matching resource object is found.