mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 05:34:34 +00:00
* Summaries rewritten * Added new parameters / Removed not supported parameters * Added some new methods like appFocus(options), appHasSingleLock, etc.
24 lines
602 B
C#
24 lines
602 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
/// Controls the behavior of <see cref="App.Relaunch(RelaunchOptions)"/>.
|
|
/// </summary>
|
|
public class RelaunchOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the arguments.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The arguments.
|
|
/// </value>
|
|
public string[] Args { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the execute path.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The execute path.
|
|
/// </value>
|
|
public string ExecPath { get; set; }
|
|
}
|
|
} |