[DllImport("kernel32.dll")]
static extern bool ConnectNamedPipe(IntPtr hNamedPipe,
[In] ref System.Threading.NativeOverlapped lpOverlapped);
[DllImport("kernel32.dll")]
static extern bool ConnectNamedPipe(IntPtr hNamedPipe, IntPtr lpOverlapped);
None.
None.
Please add some!
Good example of named pipes using ConnectNamedPipe() can be found at http://wyday.com/blog/2010/multi-process-c-sharp-application-like-google-chrome-using-named-pipes/
Do you know one? Please contribute it!