C# Class ClrPlus.Platform.Process.ProcessStartInfo

Mostrar archivo Open project: perpetual-motion/clrplus

Public Methods

Method Description
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.

Private Methods

Method Description
ProcessStartInfo ( System psi ) : System
SyncEnvironment ( ) : void

Method Details

ProcessStartInfo() public method

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
return System

ProcessStartInfo() public method

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. ///
return System

ProcessStartInfo() public method

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. ///
return System