↧
Answer by Grim for NamedPipeClientStream with .NET Framework 3.0 doesn't work
See the Microsoft documentation for NamedPipeClientStream here. At the bottom of the page, the relevant frameworks are listed. It looks like this class is only available in v3.5 and above.
View ArticleNamedPipeClientStream with .NET Framework 3.0 doesn't work
I need to write a WPF app or a windows service with the .NET Framework 3.0. This app needs to use the NamedPipeClientStream but I'm not able to understand if this class is supported on .NET Framework...
View Article