OutOfProcessNodeInstance.PrepareNodeProcessStartInfo Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Konfiguriert einen ProcessStartInfo instance, der beschreibt, wie der Node.js-Prozess gestartet wird.
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
Parameter
- entryPointFilename
- String
Die JavaScript-Einstiegspunktdatei, die vom Node.js-Prozess ausgeführt werden soll.
- projectPath
- String
Der Stammpfad des Projekts. Dies wird beim Suchen Node.js Module relativ zum Projektstamm verwendet.
- commandLineArguments
- String
Befehlszeilenargumente, die an den Node.js-Prozess übergeben werden sollen.
- environmentVars
- IDictionary<String,String>
Umgebungsvariablen, die im Node.js-Prozess festgelegt werden sollen.
- launchWithDebugging
- Boolean
Wenn true, übergibt ein Flag an den Node.js Prozess, der ihn angibt, V8 Inspector-Verbindungen zu akzeptieren.
- debuggingPort
- Int32
Wenn das Debuggen aktiviert ist, sollte der Node.js Prozess auf V8 Inspector-Verbindungen an diesem Port lauschen.