HttpContextWrapper.GetLocalResourceObject Method

Definition

Gets a page-level resource.

Overloads

GetLocalResourceObject(String, String)

Gets a page-level resource object based on the specified VirtualPath and ResourceKey properties.

GetLocalResourceObject(String, String, CultureInfo)

Gets a page-level resource object based on the specified VirtualPath and ResourceKey properties, and on the CultureInfo object.

GetLocalResourceObject(String, String)

Gets a page-level resource object based on the specified VirtualPath and ResourceKey properties.

public:
 override System::Object ^ GetLocalResourceObject(System::String ^ virtualPath, System::String ^ resourceKey);
public override object GetLocalResourceObject (string virtualPath, string resourceKey);
override this.GetLocalResourceObject : string * string -> obj
Public Overrides 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.

Applies to

GetLocalResourceObject(String, String, CultureInfo)

Gets a page-level resource object based on the specified VirtualPath and ResourceKey properties, and on the CultureInfo object.

public:
 override System::Object ^ GetLocalResourceObject(System::String ^ virtualPath, System::String ^ resourceKey, System::Globalization::CultureInfo ^ culture);
public override object GetLocalResourceObject (string virtualPath, string resourceKey, System.Globalization.CultureInfo culture);
override this.GetLocalResourceObject : string * string * System.Globalization.CultureInfo -> obj
Public Overrides 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.

Applies to