Partager via


WorkflowCompilerError Constructeurs

Définition

Initialise une nouvelle instance de la classe WorkflowCompilerError.

Surcharges

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 de 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 de 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.

Exceptions

exception est une référence Null (Nothing en 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 qui contient le nom du fichier source qui a l'erreur.

line
Int32

Nombre entier représentant le numéro de ligne de l'erreur.

column
Int32

Nombre entier qui représente 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 le texte qui décrit l'erreur.

S’applique à