C# Class UnitWrappers.System.Diagnostics.ProcessStartInfoWrap

Wrapper for T:System.Diagnostics.ProcessStartInfo class.
Class is wrapped because underlying object uses environment variables and registry undre the hood. Not simple data holder.
Inheritance: IProcessStartInfo
Mostra file Open project: OpenSharp/UnitWrappers Class Usage Examples

Public Methods

Method Description
ProcessStartInfoWrap ( ) : System

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

ProcessStartInfoWrap ( ProcessStartInfo processStartInfo ) : System

Initializes a new instance of the T:UnitWrappers.System.Diagnostics.ProcessStartInfoWrap class with providing ProcessStartInfo instance.

ProcessStartInfoWrap ( string fileName ) : System

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

ProcessStartInfoWrap ( string fileName, string arguments ) : System

Initializes a new instance of the T:UnitWrappers.System.Diagnostics.ProcessStartInfoWrap 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.

Method Details

ProcessStartInfoWrap() public method

Initializes a new instance of the T:UnitWrappers.System.Diagnostics.ProcessStartInfoWrap class without specifying a file name with which to start the process.
public ProcessStartInfoWrap ( ) : System
return System

ProcessStartInfoWrap() public method

Initializes a new instance of the T:UnitWrappers.System.Diagnostics.ProcessStartInfoWrap class with providing ProcessStartInfo instance.
public ProcessStartInfoWrap ( ProcessStartInfo processStartInfo ) : System
processStartInfo System.Diagnostics.ProcessStartInfo ProcessStartInfo instance
return System

ProcessStartInfoWrap() public method

Initializes a new instance of the T:UnitWrappers.System.Diagnostics.ProcessStartInfoWrap class and specifies a file name such as an application or document with which to start the process.
public ProcessStartInfoWrap ( string fileName ) : System
fileName string
return System

ProcessStartInfoWrap() public method

Initializes a new instance of the T:UnitWrappers.System.Diagnostics.ProcessStartInfoWrap 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 ProcessStartInfoWrap ( string fileName, string arguments ) : System
fileName string
arguments string
return System