ResourceMap.TryGetSubtree(String) Method

Definition

Tries to find a ResourceMap that represents a part of another ResourceMap, typically used to access a particular resource file within an app package.

This method finds subtree, ancestor, sibling and cousin maps to this resource map, as well as top-level maps. It returns the resource map represented by a given resource map identifier, relative to this resource map. This method is typically used to make simpler references to a particular subset of resources, such as a single resource file, or a directory of files.

public:
 virtual ResourceMap ^ TryGetSubtree(Platform::String ^ reference) = TryGetSubtree;
ResourceMap TryGetSubtree(winrt::hstring const& reference);
public ResourceMap TryGetSubtree(string reference);
function tryGetSubtree(reference)
Public Function TryGetSubtree (reference As String) As ResourceMap

Parameters

reference
String

Platform::String

winrt::hstring

A resource map identifier that identifies the root of the new subtree. For details, see the remarks for ResourceMap class.

Returns

The subtree ResourceMap. If the specified resource map identifier is not found, this method returns null.

Applies to