TargetedContentCollection.Path プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コンテンツ コレクション内の項目へのパスを取得します。
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
プロパティ値
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();
}
}