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 プロパティの値がマージされたビューを表し、アプリケーションの実際のファイルが存在しない場合は、親構成ファイルへのパスが返されます。

適用対象