Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // OrtizOL - xCSw - http://ortizol.blogspot.com
- using System;
- using System.IO;
- using System.IO.Pipes;
- namespace Receta.CSharp.R0526
- {
- public class UsoNamedPipeClientStream
- {
- public static void Main()
- {
- Console.WriteLine(Environment.NewLine);
- using (NamedPipeClientStream clientePipe = new NamedPipeClientStream(".", "servidor", PipeDirection.In))
- {
- Console.WriteLine ("Se ha creado un objeto `NamedPipeClientStream`.");
- // Conexión a named pipe hasta que haya uno disponible:
- Console.WriteLine ("Intentando conectar a un named pipe...");
- clientePipe.Connect();
- Console.WriteLine ("Se ha conectado a un servidor named pipe.");
- Console.WriteLine ("Actualmente existen {0} named pipe en modo servidor abiertos.\n", clientePipe.NumberOfServerInstances.ToString());
- // Lectura de datos y envío de estos al cliente:
- using (StreamReader sr = new StreamReader(clientePipe))
- {
- // Lee el mensaje enviado desde el servidor:
- string mensajeServidorPipe;
- while ((mensajeServidorPipe = sr.ReadLine()) != null)
- {
- Console.WriteLine ("Mensaje recibido desde el servidor pipe: {0}", mensajeServidorPipe);
- }
- }
- }
- Console.WriteLine(Environment.NewLine);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement