WindowsRuntimeMetadata.ResolveNamespace 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
找到指定命名空间的 Windows Metadata 文件,给定位置列表搜索。
重载
ResolveNamespace(String, IEnumerable<String>) |
找到此指定命名空间的 Windows Metadata 文件,给定指定位置搜索。 |
ResolveNamespace(String, String, IEnumerable<String>) |
找到此指定命名空间的 Windows Metadata 文件,给定指定位置搜索。 |
ResolveNamespace(String, IEnumerable<String>)
找到此指定命名空间的 Windows Metadata 文件,给定指定位置搜索。
public:
static System::Collections::Generic::IEnumerable<System::String ^> ^ ResolveNamespace(System::String ^ namespaceName, System::Collections::Generic::IEnumerable<System::String ^> ^ packageGraphFilePaths);
[System.Security.SecurityCritical]
public static System.Collections.Generic.IEnumerable<string> ResolveNamespace (string namespaceName, System.Collections.Generic.IEnumerable<string> packageGraphFilePaths);
public static System.Collections.Generic.IEnumerable<string> ResolveNamespace (string namespaceName, System.Collections.Generic.IEnumerable<string> packageGraphFilePaths);
[<System.Security.SecurityCritical>]
static member ResolveNamespace : string * seq<string> -> seq<string>
static member ResolveNamespace : string * seq<string> -> seq<string>
Public Shared Function ResolveNamespace (namespaceName As String, packageGraphFilePaths As IEnumerable(Of String)) As IEnumerable(Of String)
参数
- namespaceName
- String
要解析的命名空间。
- packageGraphFilePaths
- IEnumerable<String>
要搜索 Windows 元数据文件的应用程序路径,或仅要搜索操作系统安装中的 null
Windows 元数据文件。
返回
表示定义 namespaceName
的 Windows 元数据文件字符串的一个可枚举的列表。
- 属性
例外
操作系统版本不支持 Windows 运行时。
namespaceName
为 null
。
注解
调用此方法重载等效于调用 ResolveNamespace(String, String, IEnumerable<String>) 方法重载并 null
指定 windowsSdkFilePath
参数。
适用于
ResolveNamespace(String, String, IEnumerable<String>)
找到此指定命名空间的 Windows Metadata 文件,给定指定位置搜索。
public:
static System::Collections::Generic::IEnumerable<System::String ^> ^ ResolveNamespace(System::String ^ namespaceName, System::String ^ windowsSdkFilePath, System::Collections::Generic::IEnumerable<System::String ^> ^ packageGraphFilePaths);
[System.Security.SecurityCritical]
public static System.Collections.Generic.IEnumerable<string> ResolveNamespace (string namespaceName, string windowsSdkFilePath, System.Collections.Generic.IEnumerable<string> packageGraphFilePaths);
public static System.Collections.Generic.IEnumerable<string> ResolveNamespace (string namespaceName, string windowsSdkFilePath, System.Collections.Generic.IEnumerable<string> packageGraphFilePaths);
[<System.Security.SecurityCritical>]
static member ResolveNamespace : string * string * seq<string> -> seq<string>
static member ResolveNamespace : string * string * seq<string> -> seq<string>
Public Shared Function ResolveNamespace (namespaceName As String, windowsSdkFilePath As String, packageGraphFilePaths As IEnumerable(Of String)) As IEnumerable(Of String)
参数
- namespaceName
- String
要解析的命名空间。
- windowsSdkFilePath
- String
用来搜索由 SDK 提供的 Windows 元数据文件的路径,或用来搜索来自操作系统安装的 Windows 元数据文件,则为 null
。
- packageGraphFilePaths
- IEnumerable<String>
要搜索 Windows 元数据文件的应用程序路径。
返回
表示定义 namespaceName
的 Windows 元数据文件字符串的一个可枚举的列表。
- 属性
例外
操作系统版本不支持 Windows 运行时。
namespaceName
为 null
。
注解
为 指定的路径仅搜索以 Windows windowsSdkFilePath
开头的命名空间。