Files
Electron.NET/ElectronNET.API/Entities/RelaunchOptions.cs
Konstantin Gross eee84d214e App API:
* Summaries rewritten
* Added new parameters / Removed not supported parameters
* Added some new methods like appFocus(options), appHasSingleLock, etc.
2020-05-31 03:09:54 +02:00

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; }
}
}