获取当前活动会话的所有进程
我在开发应用程序时遇到一个小问题。我只想访问当前会话的所有进程。目前我正在使用 Process
类,但它将返回所有会话的所有进程。
请帮助我仅获取当前活动会话的进程而不是全部。
需要帮助来解决问题。
I have a small problem while developing an application. I want to access all process of the current session only. Currently I am using Process
class but it will return all process of all session.
Please help me to get process of the current active session only not all.
Help needed to solve the problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将为您提供正在运行的进程列表,这些进程正在使用相同的
SessionId
作为当前进程。我想这就是你想要的。
This will give you a list of the process running that are running with the same
SessionId
asthe current process. I think that is what you want.