.NET IPC

Z

Zhao Li

Hi All,

What are the IPC mechanisms .NET supports? Can named pipe be implemented in
..NET?

Any input would be appreciated.

Regards,
Xena
 
M

Mattias Sjögren

What are the IPC mechanisms .NET supports?

If you haven't already, check out .NET remoting. It can be used with a
number of different channels, including various Win32 IPC mechanisms.

But to actually use the IPC you usually have to call the Win32 APIs
through P/Invoke, the framework doesn't have very good support for
that.

Can named pipe be implemented in .NET?

Yes, by calling the named pipe APIs. There's also a named pipe
remoting channel sample available from http://www.gotdotnet.com.



Mattias
 

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

Top