Named Pipes in C# ... HELP !!

  • Thread starter Thread starter Tom Vandeplas
  • Start date Start date
T

Tom Vandeplas

Hi All,

I'm looking for a system similar to named pipes using C#. Basically what I
want is some sort of fast inter-process communication, preferable usable
with COM.

What I currently have is:
- Theoretically I could use the Queue object but, as I understand it, the
Queue can only dequeue one element at a time. So this is not my favorite.
- Alternatively I could use a more direct approach using C++ CreatePipe, I
think this should work, but since I not a C++ expert at all I'll definitely
need some help on this one...

All help (examples/info/alternatives) will be really appreciated !


Thx, Tom
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

C# and pipes 7
running pipe in c# 2
Pipe character in query in VB6 app 11
Writing to an existing Named Pipe 3
Use of Named Pipes in .Net 4
Closing named pipe 1
Using NamedPipes in C# 7
Named Pipe Impersonation 0

Back
Top