17 Ağustos 2017 Perşembe

NamedPipeServerStream Sınıfı

Giriş
 NamedPipeClientStream nesnesinin bağlanmasını bekler.

Constructor
Şöyle yaparız.
NamedPipeServerStream serverPipe = new NamedPipeServerStream("serverPipe");
Şöyle yaparız.
NamedPipeServerStream serverPipe = new NamedPipeServerStream(
                "Test", PipeDirection.InOut, 3,
                 PipeTransmissionMode.Byte, PipeOptions.Asynchronous));
IsConnected metodu
Şöyle yaparız
if (serverPipe.IsConnected)
{
  ...
}
WaitForConnection metodu
Senkron açılmış pipe ile kullanılır. Şöyle yaparız
serverPipe.WaitForConnection();
Asenkron açılmış pipe ile kullanılır. Şöyle yaparız.
await serverPipe.WaitForConnectionAsync();

Hiç yorum yok:

Yorum Gönder