ParserError.VirtualPath Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le chemin d'accès virtuel du fichier qui était en cours d'analyse lorsque l'erreur s'est produite.
public:
property System::String ^ VirtualPath { System::String ^ get(); void set(System::String ^ value); };
public string VirtualPath { get; set; }
member this.VirtualPath : string with get, set
Public Property VirtualPath As String
Valeur de propriété
Chaîne qui spécifie le chemin d'accès virtuel du fichier qui contient l'erreur d'analyse.
Exemples
L’exemple de code suivant montre comment remplir la VirtualPath propriété d’un ParserError objet.
MyParserError.VirtualPath = "MyPath";
myParserError.VirtualPath = "MyPath"