C# Класс ClrPlus.Platform.Process.ProcessStartInfo

Показать файл Открыть проект

Открытые методы

Метод Описание
ProcessStartInfo ( ) : System

Initializes a new instance of the T:System.Diagnostics.ProcessStartInfo class without specifying a file name with which to start the process.

ProcessStartInfo ( string fileName ) : System

Initializes a new instance of the T:System.Diagnostics.ProcessStartInfo class and specifies a file name such as an application or document with which to start the process.

ProcessStartInfo ( string fileName, string arguments ) : System

Initializes a new instance of the T:System.Diagnostics.ProcessStartInfo class, specifies an application file name with which to start the process, and specifies a set of command-line arguments to pass to the application.

Приватные методы

Метод Описание
ProcessStartInfo ( System psi ) : System
SyncEnvironment ( ) : void

Описание методов

ProcessStartInfo() публичный Метод

Initializes a new instance of the T:System.Diagnostics.ProcessStartInfo class without specifying a file name with which to start the process.
public ProcessStartInfo ( ) : System
Результат System

ProcessStartInfo() публичный Метод

Initializes a new instance of the T:System.Diagnostics.ProcessStartInfo class and specifies a file name such as an application or document with which to start the process.
public ProcessStartInfo ( string fileName ) : System
fileName string An application or document with which to start a process. ///
Результат System

ProcessStartInfo() публичный Метод

Initializes a new instance of the T:System.Diagnostics.ProcessStartInfo class, specifies an application file name with which to start the process, and specifies a set of command-line arguments to pass to the application.
public ProcessStartInfo ( string fileName, string arguments ) : System
fileName string An application with which to start a process. ///
arguments string Command-line arguments to pass to the application when the process starts. ///
Результат System