uap3:Properties
オペレーティング システムによって単に格納され、読み取られない、カスタムの拡張機能固有の情報を表す不透明な XML が含まれています。 情報は、ホスト アプリによってのみ読み取られます。
要素の階層
<uap3:Properties>
構文
<uap3:Properties>
xsd:any
</uap3:Properties>
属性と要素
属性
なし。
子要素
子要素 | 説明 |
---|---|
custom | オペレーティング システムによって単に格納され、読み取られない不透明な XML の形式のカスタム拡張機能固有の情報。 情報は、ホスト アプリによってのみ読み取られます。 |
親要素
親要素 | 説明 |
---|---|
uap3:AppExtension | windows.appExtension 型のアプリ拡張ポイントを宣言します。 |
例
次の例は、アプリがハイ パフォーマンス ブラウザー拡張機能をホストまたは使用することを示しています
<Package ...
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
IgnorableNamespaces="uap3">
<Applications>
<Application>
<Extensions>
<uap3:Extension
Category="windows.appExtension">
<uap3:AppExtension
Name="com.microsoft.browser.ext"
Id="Extension.High.Performance"
PublicFolder="public\highperf"
DisplayName="High Performance Extension">
<uap3:Properties>
<!-- The content of this element is custom. -->
<animals>Chickens</animals>
<animals>
<young>Kittens</young>
</animals>
</uap3:Properties>
</uap3:AppExtension>
</uap3:Extension>
</Extensions>
</Application>
</Applications>
</Package>
要件
Item | 値 |
---|---|
Namespace | http://schemas.microsoft.com/appx/manifest/uap/windows10/3 |
Minimum OS Version | Windows 10 バージョン 1607 (ビルド 14393) |