uap3:Properties

包含表示仅存储且不由操作系统读取的特定于扩展的自定义信息的不透明 XML。 此信息仅由主机应用读取。

元素层次结构

<包>

    <应用程序>

         <应用程序>

              <扩展>

                   <uap3:Extension>

                        <uap3:AppExtension>

                             <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>

要求

Namespace http://schemas.microsoft.com/appx/manifest/uap/windows10/3
Minimum OS Version Windows 10版本 1607 (内部版本 14393)