System::Diagnostics::Process::Start methode

Process::Start() method

Start proces met vooraf gedefinieerde parameters.

bool System::Diagnostics::Process::Start()

Zie ook

Process::Start(const SharedPtr<ProcessStartInfo>&) method

Start proces met opgegeven pad en argumenten.

static SharedPtr<Process> System::Diagnostics::Process::Start(const SharedPtr<ProcessStartInfo> &start_info)
ParameterTypeBeschrijving
start_infoconst SharedPtr<ProcessStartInfo>&Informatie over het te starten proces.

ReturnValue

Object attached to newly started process.

Zie ook

Process::Start(const String&, const String&) method

Start proces met opgegeven pad en argumenten.

static SharedPtr<Process> System::Diagnostics::Process::Start(const String &filename, const String &arguments=String::Empty)
ParameterTypeBeschrijving
filenameconst String&Process pad.
argumentsconst String&Process parameters.

ReturnValue

Object attached to newly started process.

Zie ook