Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to create NAMED-PIPE in .NET-4 in your C# application?

share|improve this question

2 Answers

up vote 7 down vote accepted

Here is a piece of code to create a Named Pipe client, it is lifted from an answer to a previous question I answered on communicating between C++ and C# using Named Pipes

using System; 
using System.Text; 
using System.IO; 
using System.IO.Pipes; 

namespace CSPipe 
{ 
  class Program 
  { 
    static void Main(string[] args) 
    { 
      NamedPipeClientStream pipe = new NamedPipeClientStream(".", "HyperPipe", PipeDirection.InOut); 
      pipe.Connect(); 
      using (StreamReader rdr = new StreamReader(pipe, Encoding.Unicode)) 
      { 
        System.Console.WriteLine(rdr.ReadToEnd()); 
      } 

      Console.ReadKey(); 
    } 
  } 
}
share|improve this answer

The easiest way is using WCF:

var binding = new System.ServiceModel.NetNamedPipeBinding(System.ServiceModel.NetNamedPipeSecurityMode.None)

share|improve this answer
Will a WCF service using a named pipe binding work with ANY app that uses named pipes? What if I have a legacy application that is using them? I'm trying to figure out if it's only WCF-WCF that's possible in this scenario. – jlafay Feb 10 '11 at 21:45
It depends! The current implementation of named pipes does not allow them to be used across the network. Also, if you want to use them to communicate with a legacy app you'll probably need to implement the protocol that's sitting on top yourself, WCF won't know about that. In which case it would be easier to use some of the lower-level methods, e.g. win32 (see switchonthecode.com/tutorials/…) or stackoverflow.com/questions/244367/…. – open-collar Feb 14 '11 at 16:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.