ResourceLoader.GetStringForUri(Uri) Method

Definition

Returns the most appropriate string value of a resource, specified by a Uniform Resource Identifier (URI) resource identifier, for the default ResourceContext of the currently running app.

Equivalent WinUI 2 API for UWP: Microsoft.Windows.ApplicationModel.Resources.ResourceLoader.GetStringForUri (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).

public:
 virtual Platform::String ^ GetStringForUri(Uri ^ uri) = GetStringForUri;
winrt::hstring GetStringForUri(Uri const& uri);
public string GetStringForUri(System.Uri uri);
function getStringForUri(uri)
Public Function GetStringForUri (uri As Uri) As String

Parameters

uri
Uri Uri

A Uniform Resource Identifier (URI) that represents the resource to be retrieved.

Returns

String

Platform::String

winrt::hstring

The most appropriate string value of the specified resource for the default ResourceContext.

Remarks

Uniform Resource Identifier (URI) objects require a scheme to be identified. In this context, the ms-resource scheme must be specified in the Uniform Resource Identifier (URI) passed to the method.

Errors

This method fails with an exception if the supplied Uniform Resource Identifier (URI) is for some other protocol, if the requested resource is not found, or if the requested resource is not a string.

Applies to