HttpContextBase.GetLocalResourceObject 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在派生类中重写时,获取页级别的资源。
重载
GetLocalResourceObject(String, String) |
在派生类中重写时,根据指定的 VirtualPath 和 ResourceKey 属性,获取一个页级别资源对象。 |
GetLocalResourceObject(String, String, CultureInfo) |
在派生类中重写时,根据指定的 VirtualPath 和 ResourceKey 属性以及 CultureInfo 对象,获取一个页级别资源对象。 |
GetLocalResourceObject(String, String)
在派生类中重写时,根据指定的 VirtualPath 和 ResourceKey 属性,获取一个页级别资源对象。
public:
virtual System::Object ^ GetLocalResourceObject(System::String ^ virtualPath, System::String ^ resourceKey);
public virtual object GetLocalResourceObject (string virtualPath, string resourceKey);
abstract member GetLocalResourceObject : string * string -> obj
override this.GetLocalResourceObject : string * string -> obj
Public Overridable Function GetLocalResourceObject (virtualPath As String, resourceKey As String) As Object
参数
- virtualPath
- String
一个表示本地资源对象的 VirtualPath 属性的字符串。
- resourceKey
- String
一个字符串,表示所请求资源对象的 ResourceKey 属性。
返回
所请求的页级别资源对象;或者,如果找不到匹配的资源对象,则为 null
。
例外
适用于
GetLocalResourceObject(String, String, CultureInfo)
在派生类中重写时,根据指定的 VirtualPath 和 ResourceKey 属性以及 CultureInfo 对象,获取一个页级别资源对象。
public:
virtual System::Object ^ GetLocalResourceObject(System::String ^ virtualPath, System::String ^ resourceKey, System::Globalization::CultureInfo ^ culture);
public virtual object GetLocalResourceObject (string virtualPath, string resourceKey, System.Globalization.CultureInfo culture);
abstract member GetLocalResourceObject : string * string * System.Globalization.CultureInfo -> obj
override this.GetLocalResourceObject : string * string * System.Globalization.CultureInfo -> obj
Public Overridable Function GetLocalResourceObject (virtualPath As String, resourceKey As String, culture As CultureInfo) As Object
参数
- virtualPath
- String
一个表示本地资源对象的 VirtualPath 属性的字符串。
- resourceKey
- String
一个字符串,表示所请求资源对象的 ResourceKey 属性。
- culture
- CultureInfo
一个字符串,表示所请求资源对象的 CultureInfo 对象。
返回
所请求的本地资源对象(针对指定区域性进行了本地化);或者,如果未找到匹配的资源对象,则为 null
。