Partager via


OutOfProcessNodeInstance.PrepareNodeProcessStartInfo Méthode

Définition

Configure un ProcessStartInfo instance décrivant comment lancer le processus de Node.js.

protected:
 virtual System::Diagnostics::ProcessStartInfo ^ PrepareNodeProcessStartInfo(System::String ^ entryPointFilename, System::String ^ projectPath, System::String ^ commandLineArguments, System::Collections::Generic::IDictionary<System::String ^, System::String ^> ^ environmentVars, bool launchWithDebugging, int debuggingPort);
protected virtual System.Diagnostics.ProcessStartInfo PrepareNodeProcessStartInfo (string entryPointFilename, string projectPath, string commandLineArguments, System.Collections.Generic.IDictionary<string,string> environmentVars, bool launchWithDebugging, int debuggingPort);
abstract member PrepareNodeProcessStartInfo : string * string * string * System.Collections.Generic.IDictionary<string, string> * bool * int -> System.Diagnostics.ProcessStartInfo
override this.PrepareNodeProcessStartInfo : string * string * string * System.Collections.Generic.IDictionary<string, string> * bool * int -> System.Diagnostics.ProcessStartInfo
Protected Overridable Function PrepareNodeProcessStartInfo (entryPointFilename As String, projectPath As String, commandLineArguments As String, environmentVars As IDictionary(Of String, String), launchWithDebugging As Boolean, debuggingPort As Integer) As ProcessStartInfo

Paramètres

entryPointFilename
String

Fichier JavaScript de point d’entrée que le processus Node.js doit exécuter.

projectPath
String

Chemin d’accès racine du projet. Cela est utilisé lors de la localisation de modules Node.js par rapport à la racine du projet.

commandLineArguments
String

Arguments de ligne de commande à passer au processus Node.js.

environmentVars
IDictionary<String,String>

Variables d’environnement à définir sur le processus Node.js.

launchWithDebugging
Boolean

Si la valeur est true, transmettez un indicateur au processus Node.js lui indiquant d’accepter les connexions de l’inspecteur V8.

debuggingPort
Int32

Si le débogage est activé, le processus de Node.js doit écouter les connexions d’inspecteur V8 sur ce port.

Retours

S’applique à