在 .NET 中检索终端服务会话 ID?

发布于 2024-07-25 01:58:45 字数 244 浏览 3 评论 0原文

任何人都可以帮我发现以下 C++ 代码的 .NET 等效项:

DWORD session_id;
ProcessIdToSessionId(GetCurrentProcessId(), &session_id);

我正在尝试查找当前终端服务会话号,以唯一命名同一会话中的两个程序用于相互通信的命名管道。 但在搜索 .NET 会话时我能找到的唯一信息是 Web 内容。

谢谢。

Can anyone please help me discover the .NET equivalent of the following C++ code:

DWORD session_id;
ProcessIdToSessionId(GetCurrentProcessId(), &session_id);

I'm trying to find the current terminal services session number to uniquely name a named pipe that two programs inside the same session are using to communicate with each other. But the only information I can find when searching for .NET sessions is web stuff.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北笙凉宸 2024-08-01 01:58:45

事实上,此功能完全在 BCL(System.Diagnostics 命名空间)内提供:

var sessionId = Process.GetCurrentProcess().SessionId;

请参阅 SessionId 属性。

Indeed, this functionality is provided completely within the BCL (System.Diagnostics namespace):

var sessionId = Process.GetCurrentProcess().SessionId;

See the SessionId property on MSDN for more info.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文