次の方法で共有


TargetedContentCollection.Path プロパティ

定義

コンテンツ コレクション内の項目へのパスを取得します。

public:
 property Platform::String ^ Path { Platform::String ^ get(); };
winrt::hstring Path();
public string Path { get; }
var string = targetedContentCollection.path;
Public ReadOnly Property Path As String

プロパティ値

String

Platform::String

winrt::hstring

Windows の要件

アプリの機能
secondaryAuthenticationFactor

この例では、既知のパスから特定のオブジェクトを取得する方法を示します。 具体的には、データ コントラクトで説明されているように、コレクション 1 ("\collection1\item1") の項目 0 です。

が既存のサブスクリプション コンテンツ コンテナーであると仮定 container します。

最後に、アイテムに関連付けられている URI を起動します。

private async void LaunchObjectUriFromPath(TargetedContentContainer container)
{
    TargetedContentObject contentObject = container.SelectSingleObject("//collection[1]/item[0]");

    await contentObject.Item.Properties["onClick"].Uri.LauchUriAsync();
    }
}

適用対象