System::Diagnostics::Process::Start méthode

Process::Start() method

Démarre le processus avec des paramètres prédéfinis.

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

Voir aussi

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

Démarre le processus avec le chemin et les arguments spécifiés.

static SharedPtr<Process> System::Diagnostics::Process::Start(const SharedPtr<ProcessStartInfo> &start_info)
ParamètreTypeDescription
start_infoconst SharedPtr<ProcessStartInfo>&Informations sur le processus à démarrer.

ReturnValue

Object attached to newly started process.

Voir aussi

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

Démarre le processus avec le chemin et les arguments spécifiés.

static SharedPtr<Process> System::Diagnostics::Process::Start(const String &filename, const String &arguments=String::Empty)
ParamètreTypeDescription
filenameconst String&Process chemin.
argumentsconst String&Process paramètres.

ReturnValue

Object attached to newly started process.

Voir aussi