Configuration.FilePath Propriété

Définition

Obtient le chemin d'accès physique du fichier de configuration représenté par cet objet Configuration.

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

Valeur de propriété

Chemin d'accès physique du fichier de configuration représenté par cet objet Configuration.

Exemples

L’exemple de code suivant montre comment utiliser la FilePath propriété .

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

Remarques

Si la valeur de cette FilePath propriété représente une vue fusionnée et qu’aucun fichier réel n’existe pour l’application, le chemin d’accès au fichier de configuration parent est retourné.

S’applique à