HttpContextBase.GetLocalResourceObject 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.
When overridden in a derived class, gets a page-level resource.
Overloads
GetLocalResourceObject(String, String) |
When overridden in a derived class, gets a page-level resource object based on the specified VirtualPath and ResourceKey properties. |
GetLocalResourceObject(String, String, CultureInfo) |
When overridden in a derived class, gets a page-level resource object based on the specified VirtualPath and ResourceKey properties, and on the CultureInfo object. |
GetLocalResourceObject(String, String)
When overridden in a derived class, gets a page-level resource object based on the specified VirtualPath and ResourceKey properties.
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
Parameters
- virtualPath
- String
A string that represents the VirtualPath property of the local resource object.
- resourceKey
- String
A string that represents the ResourceKey property of the requested resource object.
Returns
The requested page-level resource object, or null
if no matching resource object is found.
Exceptions
Always.
Applies to
GetLocalResourceObject(String, String, CultureInfo)
When overridden in a derived class, gets a page-level resource object based on the specified VirtualPath and ResourceKey properties, and on the CultureInfo object.
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
Parameters
- virtualPath
- String
A string that represents the VirtualPath property of the local 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 object.
Returns
The requested local resource object, which is localized for the specified culture, or null
if no matching resource object is found.
Exceptions
Always.