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