Manager.GetConfigurationFile(String, String, String) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从传入的 URL 字符串获取配置文件的路径和文件名。
此 API 支持产品基础结构,不能在代码中直接使用。
public:
static bool GetConfigurationFile(System::String ^ pURL, [Runtime::InteropServices::Out] System::String ^ % path, [Runtime::InteropServices::Out] System::String ^ % file);
public static bool GetConfigurationFile (string pURL, out string path, out string file);
static member GetConfigurationFile : string * string * string -> bool
Public Shared Function GetConfigurationFile (pURL As String, ByRef path As String, ByRef file As String) As Boolean
参数
- pURL
- String
配置文件的 URL。
- path
- String
此方法返回时,包含指向配置文件的路径。
- file
- String
此方法返回时,包含配置文件的名称。
返回
如果找到了配置文件,则为 true
;否则为 false
。