uap3:Name
アプリでホストできる拡張機能のカテゴリを指定します。
要素の階層
<uap3:Name>
構文
<uap3:Name>
A string with a value between 2 and 255 characters in length that consists of alphanumeric characters, periods
(except for the first character), and dashes only.
</uap3:Name>
属性と要素
属性
なし。
子要素
なし。
親要素
Parent 要素 | 説明 |
---|---|
uap3:AppExtensionHost | アプリの機能拡張ポイントを宣言します。 |
例
次の例は、アプリで Office スペル チェックとブラウザー拡張機能をホストできることを示しています。
<Package ...
xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
IgnorableNamespaces="uap3">
<Applications>
<Application>
<Extensions>
<uap3:Extension
Category="windows.appExtensionHost">
<uap3:AppExtensionHost>
<uap3:Name>com.microsoft.office.spellcheck.ext</uap3:Name>
<uap3:Name>com.microsoft.office.browser.ext</uap3:Name>
</uap3:AppExtensionHost>
</uap3:Extension>
</Extensions>
</Application>
</Applications>
</Package>
必要条件
Item | 値 |
---|---|
Namespace | http://schemas.microsoft.com/appx/manifest/uap/windows10/3 |
Minimum OS Version | Windows 10 バージョン 1607 (ビルド 14393) |