Files
Electron.NET/src/ElectronNET.API/API/HybridSupport.cs
2025-10-13 14:36:18 +02:00

22 lines
557 B
C#

namespace ElectronNET.API
{
/// <summary>
///
/// </summary>
public static class HybridSupport
{
/// <summary>
/// Gets a value indicating whether this instance is electron active.
/// </summary>
/// <value>
/// <c>true</c> if this instance is electron active; otherwise, <c>false</c>.
/// </value>
public static bool IsElectronActive
{
get
{
return ElectronNetRuntime.RuntimeController != null;
}
}
}
}