////////////////////////////////////////////////// // Created by Ivan Latunov - IvanWeb.com // //----------------------------------------------// // This program is free software. You can // // redistribute it and/or modify it as you wish // ////////////////////////////////////////////////// using System; using System.IO; namespace sscs.communication.win.InterProcessComm { #region Comments /// /// /// #endregion public interface IClientChannel : IDisposable { #region Comments /// /// /// /// /// #endregion string HandleRequest(string request); #region Comments /// /// /// /// /// #endregion string HandleRequest(Stream request); #region Comments /// /// /// /// /// #endregion object HandleRequest(object request); #region Comments /// /// /// /// #endregion IClientChannel Create(); } }