mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-17 22:26:00 +00:00
implement first Electron-API Bridge functions - Add little sample in WebApp
This commit is contained in:
24
ElectronNET.API/Entities/PathName.cs
Normal file
24
ElectronNET.API/Entities/PathName.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
public enum PathName
|
||||
{
|
||||
home,
|
||||
appData,
|
||||
userData,
|
||||
temp,
|
||||
exe,
|
||||
module,
|
||||
desktop,
|
||||
documents,
|
||||
downloads,
|
||||
music,
|
||||
pictures,
|
||||
videos,
|
||||
logs,
|
||||
pepperFlashSystemPlugin
|
||||
}
|
||||
}
|
||||
8
ElectronNET.API/Entities/RelaunchOptions.cs
Normal file
8
ElectronNET.API/Entities/RelaunchOptions.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace ElectronNET.API.Entities
|
||||
{
|
||||
public class RelaunchOptions
|
||||
{
|
||||
public string[] Args { get; set; }
|
||||
public string ExecPath { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user