Configuration.FilePath 属性

定义

获取由 Configuration 对象表示的配置文件的物理路径。

public:
 property System::String ^ FilePath { System::String ^ get(); };
public string FilePath { get; }
member this.FilePath : string
Public ReadOnly Property FilePath As String

属性值

由此 Configuration 对象表示的配置文件的物理路径。

示例

下面的代码示例演示如何使用 FilePath 属性。

string filePath = config.FilePath;
Console.WriteLine("File path: {0}", filePath);
Dim filePath As String = config.FilePath
Console.WriteLine("File path: {0}", filePath)

注解

如果此属性 FilePath 的值表示合并视图,并且应用程序不存在实际文件,则返回父配置文件的路径。

适用于