////////////////////////////////////////////////// // Created by Ivan Latunov - IvanWeb.com // //----------------------------------------------// // This program is free software. You can // // redistribute it and/or modify it as you wish // ////////////////////////////////////////////////// using System; namespace sscs.communication.win.InterProcessComm { #region Comments /// /// /// #endregion public interface IInterProcessConnection : IDisposable { #region Comments /// /// /// #endregion int NativeHandle{get;} #region Comments /// /// /// #endregion void Connect(); #region Comments /// /// /// #endregion void Close(); #region Comments /// /// /// /// #endregion string Read(); #region Comments /// /// /// /// #endregion byte[] ReadBytes(); #region Comments /// /// /// /// #endregion void Write(string text); #region Comments /// /// /// /// #endregion void WriteBytes(byte[] bytes); #region Comments /// /// /// /// #endregion InterProcessConnectionState GetState(); } }