mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 21:24:00 +00:00
15 lines
358 B
C#
Executable File
15 lines
358 B
C#
Executable File
using Quobject.SocketIoClientDotNet.Client;
|
|
|
|
namespace ElectronNET.API.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Wrapper for the underlying Socket connection
|
|
/// </summary>
|
|
public interface IApplicationSocket
|
|
{
|
|
/// <summary>
|
|
/// Socket used to communicate with main.js
|
|
/// </summary>
|
|
Socket Socket { get; }
|
|
}
|
|
} |