18 lines
308 B
C#
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();
|
|
}
|
|
} |