mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-09-26 00:42:19 +00:00
19 lines
563 B
C#
19 lines
563 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
/// Options for app.relaunch: optional args array and execPath.
|
|
/// </summary>
|
|
/// <remarks>Up-to-date with Electron API 39.2</remarks>
|
|
public class RelaunchOptions
|
|
{
|
|
/// <summary>
|
|
/// Command-line arguments for the relaunched instance.
|
|
/// </summary>
|
|
public string[] Args { get; set; }
|
|
|
|
/// <summary>
|
|
/// Executable path to relaunch instead of the current app.
|
|
/// </summary>
|
|
public string ExecPath { get; set; }
|
|
}
|
|
} |