OutOfProcessNodeInstance.PrepareNodeProcessStartInfo 메서드

정의

ProcessStartInfo Node.js 프로세스를 시작하는 방법을 설명하는 instance 구성합니다.

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

매개 변수

entryPointFilename
String

Node.js 프로세스가 실행되어야 하는 진입점 JavaScript 파일입니다.

projectPath
String

프로젝트의 루트 경로입니다. 프로젝트 루트를 기준으로 Node.js 모듈을 찾을 때 사용됩니다.

commandLineArguments
String

Node.js 프로세스에 전달할 명령줄 인수입니다.

environmentVars
IDictionary<String,String>

Node.js 프로세스에서 설정할 환경 변수입니다.

launchWithDebugging
Boolean

true이면 플래그를 Node.js 프로세스에 전달하여 V8 검사기 연결을 수락하도록 지시합니다.

debuggingPort
Int32

디버깅을 사용하는 경우 Node.js 프로세스는 이 포트에서 V8 검사기 연결을 수신 대기해야 합니다.

반환

적용 대상