我正在寻找在 .NET 中实现服务/客户端通信的命名管道,并遇到了这段代码,在初始化管道的服务器端时,必须为管道设置一个安全描述符。他们是这样做的:
PipeSecurity pipeSecurity = new PipeSecurity();
// Allow Everyone read and write access to the pipe.
pipeSecurity.SetAccessRule(new PipeAccessRule("Authenticated Users",
PipeAccessRights.ReadWrite, AccessControlType.Allow));
// Allow the Administrators group full access to the pipe.
pipeSecurity.SetAccessRule(new PipeAccessRule("Administrators",
PipeAccessRights.FullControl, AccessControlType.Allow));
但我正在查看它,我担心将 SID 指定为字符串或Authenticated Users
部分Administrators
。有什么保证他们会被称为中文或其他语言?