ResourceLoader.GetStringForUri(Uri) 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.
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
Returns
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.