2019-9-2-dotnet-命名管道名字长度限制

title author date CreateTime categories
dotnet 命名管道名字长度限制
lindexi
2019-09-02 11:54:50 +0800
2019-09-02 11:54:49 +0800
dotnet

在 dotnet 里面可以使用 NamedPipeClientStream 作为命名管道,此时的命名有长度限制,要求在 256 字符之内

从官方文档 可以看到限制 256 字符内

The entire pipe name string can be up to 256 characters long

详细请看

NamedPipeClientStream Constructor (System.IO.Pipes)

Pipe Names - Windows applications

原文地址:https://www.cnblogs.com/lindexi/p/12085934.html