如何在 Microsoft Dynamics CRM 2011 的自定义工作流中获取当前用户的 UserId?

发布于 2024-12-23 07:01:26 字数 75 浏览 2 评论 0原文

我需要 Microsoft Dynamics CRM 2011 的自定义工作流程中当前用户的 userId。那么您能建议我如何获取它吗?

I need userId of current user in Custom Workflows of Microsoft Dynamics CRM 2011. So can you suggest me how to get it?

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

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

发布评论

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

评论(1

守望孤独 2024-12-30 07:01:26

假设您正在使用 ,并且您按照 MSDN 中的创建自定义工作流活动文章创建了自定义工作流,它应该继承CodeActivity 类,
并且有这样的方法:

protected override void Execute(CodeActivityContext context)
{
  // Your code here
}

要获取当前的userId,您需要从CodeActivityContext获取IWorkflowContext,如下所示:

IWorkflowContext workflowContext = context.GetExtension<IWorkflowContext>();

然后:

var id = workflowContext.UserId;

Assuming that you are using , and that you created your custom workflow following Create a Custom Workflow Activity article from MSDN, it should inherit CodeActivity class,
and has a method like:

protected override void Execute(CodeActivityContext context)
{
  // Your code here
}

To get the current userId, you need to obtain the IWorkflowContext from the CodeActivityContext, like this:

IWorkflowContext workflowContext = context.GetExtension<IWorkflowContext>();

And then:

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