C# Class SevenSoftware.Windows.StartupNextInstanceEventArgs

Class used to define the arguments of another application instance startup.
Inheritance: System.EventArgs
Datei anzeigen Open project: robertbaker/SevenUpdate Class Usage Examples

Public Methods

Method Description
GetArgs ( ) : string[]

Gets the arguments passed to the other application.

StartupNextInstanceEventArgs ( string args, bool bringToFront = true ) : System

Initializes a new instance of the StartupNextInstanceEventArgs class.

Method Details

GetArgs() public method

Gets the arguments passed to the other application.
public GetArgs ( ) : string[]
return string[]

StartupNextInstanceEventArgs() public method

Initializes a new instance of the StartupNextInstanceEventArgs class.
public StartupNextInstanceEventArgs ( string args, bool bringToFront = true ) : System
args string The arguments passed to the program.
bringToFront bool If set to True the application main window will be brought to front.
return System