WorkflowCompilerError Constructeurs
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.
Initialise une nouvelle instance de la classe WorkflowCompilerError.
Surcharges
| Nom | Description |
|---|---|
| WorkflowCompilerError() |
Initialise une nouvelle instance de la classe WorkflowCompilerError. |
| WorkflowCompilerError(String, WorkflowMarkupSerializationException) |
Initialise une nouvelle instance de la classe WorkflowCompilerError. Initialise l’instance pour définir le nom du fichier source et WorkflowMarkupSerializationException. |
| WorkflowCompilerError(String, Int32, Int32, String, String) |
Initialise une nouvelle instance de la classe WorkflowCompilerError. Inclut l’initialisation de plusieurs propriétés qui définissent l’erreur. |
WorkflowCompilerError()
Initialise une nouvelle instance de la classe WorkflowCompilerError.
public:
WorkflowCompilerError();
public WorkflowCompilerError();
Public Sub New ()
S’applique à
WorkflowCompilerError(String, WorkflowMarkupSerializationException)
Initialise une nouvelle instance de la classe WorkflowCompilerError. Initialise l’instance pour définir le nom du fichier source et WorkflowMarkupSerializationException.
public:
WorkflowCompilerError(System::String ^ fileName, System::Workflow::ComponentModel::Serialization::WorkflowMarkupSerializationException ^ exception);
public WorkflowCompilerError(string fileName, System.Workflow.ComponentModel.Serialization.WorkflowMarkupSerializationException exception);
new System.Workflow.ComponentModel.Compiler.WorkflowCompilerError : string * System.Workflow.ComponentModel.Serialization.WorkflowMarkupSerializationException -> System.Workflow.ComponentModel.Compiler.WorkflowCompilerError
Public Sub New (fileName As String, exception As WorkflowMarkupSerializationException)
Paramètres
- fileName
- String
Chaîne qui contient le nom du fichier source qui a l’erreur.
- exception
- WorkflowMarkupSerializationException
À WorkflowMarkupSerializationException associer à cette instance.
Exceptions
exception est une référence Null (Nothing dans Visual Basic).
S’applique à
WorkflowCompilerError(String, Int32, Int32, String, String)
Initialise une nouvelle instance de la classe WorkflowCompilerError. Inclut l’initialisation de plusieurs propriétés qui définissent l’erreur.
public:
WorkflowCompilerError(System::String ^ fileName, int line, int column, System::String ^ errorNumber, System::String ^ errorText);
public WorkflowCompilerError(string fileName, int line, int column, string errorNumber, string errorText);
new System.Workflow.ComponentModel.Compiler.WorkflowCompilerError : string * int * int * string * string -> System.Workflow.ComponentModel.Compiler.WorkflowCompilerError
Public Sub New (fileName As String, line As Integer, column As Integer, errorNumber As String, errorText As String)
Paramètres
- fileName
- String
Chaîne contenant le nom du fichier source qui a l’erreur.
- line
- Int32
Entier représentant le numéro de ligne de l’erreur.
- column
- Int32
Entier représentant la position de colonne du début de l’erreur.
- errorNumber
- String
Chaîne qui contient le numéro d’erreur.
- errorText
- String
Chaîne qui contient du texte qui décrit l’erreur.