2017-10-12 02:24:27 +02:00
|
|
|
|
namespace ElectronNET.API.Entities
|
|
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
2020-05-31 03:09:54 +02:00
|
|
|
|
/// Controls the behavior of <see cref="App.Relaunch(RelaunchOptions)"/>.
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// </summary>
|
2017-10-12 02:24:27 +02:00
|
|
|
|
public class RelaunchOptions
|
|
|
|
|
|
{
|
2017-10-24 21:43:27 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the arguments.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>
|
|
|
|
|
|
/// The arguments.
|
|
|
|
|
|
/// </value>
|
2017-10-12 02:24:27 +02:00
|
|
|
|
public string[] Args { get; set; }
|
2017-10-24 21:43:27 +02:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the execute path.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>
|
|
|
|
|
|
/// The execute path.
|
|
|
|
|
|
/// </value>
|
2017-10-12 02:24:27 +02:00
|
|
|
|
public string ExecPath { get; set; }
|
|
|
|
|
|
}
|
2020-05-31 03:09:54 +02:00
|
|
|
|
}
|