Giriş
NamedPipeServerStream nesnesine bağlanır.
Constructor
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
Şöyle yaparız.
NamedPipeServerStream nesnesine bağlanır.
Constructor
Şöyle yaparız.
NamedPipeClientStream clientPipe = new NamedPipeClientStream("clientPipe");NamedPipeClientStream pipe= new NamedPipeClientStream(
            ".", "Test", PipeDirection.InOut, PipeOptions.Asynchronous);
var pipe = new NamedPipeClientStream(".", 
      "testpipe", PipeDirection.InOut, PipeOptions.None);Şöyle yaparız.
pipe.Close();Şöyle yaparız.
client.Connect();Şöyle yaparız.
if (pipe.IsConnected != true) { pipe.Connect(); }`Şöyle yaparız.
byte[] buf = new Byte[1000];
clientPipe.Read(ServerByte, 0, ServerByte.Length);
 
Hiç yorum yok:
Yorum Gönder