R
Roy Chastain
I have been looking for some named pipes solutions and I have found a couple that were very extensive and very complicated ones.
I tried a more simplistic approach.
I imported enough API calls to create the pipe etc and then took the returned pipe handle and created a FileStream using that
handle. I was then able to perform asynchronous IO on the pipe via the BeginRead/BeginWrite methods in FileStream.
I have not done extensive testing on this yet, but it appears to work. Have I missed something that would make me not want to do
things this way?
Thanks
I tried a more simplistic approach.
I imported enough API calls to create the pipe etc and then took the returned pipe handle and created a FileStream using that
handle. I was then able to perform asynchronous IO on the pipe via the BeginRead/BeginWrite methods in FileStream.
I have not done extensive testing on this yet, but it appears to work. Have I missed something that would make me not want to do
things this way?
Thanks