ParserError.ErrorText 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 une chaîne qui représente l'erreur pour l'objet ParserError.
public:
property System::String ^ ErrorText { System::String ^ get(); void set(System::String ^ value); };
public string ErrorText { get; set; }
member this.ErrorText : string with get, set
Public Property ErrorText As String
Valeur de propriété
Chaîne contenant le message d'erreur.
Exemples
L’exemple de code suivant montre comment remplir la ErrorText propriété d’un ParserError objet.
MyParserError.ErrorText = "My Error Text";
myParserError.ErrorText = "My Error Text"
Remarques
Utilisez la ErrorText propriété pour fournir un message d’erreur défini par le programmeur pour les erreurs d’analyseur à afficher dans un ParserError objet.