以编程方式从运行时的UWP应用程序清单中读取功能

时间:2018-03-01 20:05:01

标签: uwp windows-10-universal system.reflection

我的问题类似于How to get programatically all capablities that enable in manifest for UWP app (sic),但我希望在运行时执行此操作,而不是直接从Package.appmanifest或AppManifest.xml文件中读取。

我正在为UWP编写SDK,并希望能够找出为父应用程序启用的功能。

目前,我使用以下代码尝试来获取清单,但我无法弄清楚如何从清单中获取AppManifest xml或查询值: / p>

// Need this for extension method GetTypeInfo()
using System.Reflection;

// Am I getting correct manifest here?
var manifest = typeof(classInMySdk).GetTypeInfo().Assembly.ManifestModule;

// Now how do I query for "Capabilities" in the manifest?

或者,如果有其他API让您查询"功能",我想知道这一点。

0 个答案:

没有答案