CASA/c_micasad/lib/communication/IClientChannel.cs
2005-10-11 19:51:00 +00:00

18 lines
308 B
C#

using System;
using System.Net;
using System.Net.Sockets;
//using sscs.communication.win.NamedPipes;
namespace Novell.CASA.MiCasa.Communication
{
public interface ClientChannel
{
void Open();
int Read(byte[] buf);
byte[] Read();
int Write(byte[] buf);
void Close();
}
}