uap3:Name
Specifies a category of extensions that the app can host.
<uap3:Name>
XML
<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>
None.
None.
Parent Element | Description |
---|---|
uap3:AppExtensionHost | Declares an extensibility point for the app. |
The following example indicates that the app can host the Office spell check and browser extensions.
XML
<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 | Value |
---|---|
Namespace | http://schemas.microsoft.com/appx/manifest/uap/windows10/3 |
Minimum OS Version | Windows 10 version 1607 (Build 14393) |