用户组和特定组中的用户

用户组和特定组中的用户

本文介绍了如何使用 TFS API 获取 TFS 用户组和特定组中的用户?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在 DropDown 中列出 TFS 用户组,并且根据用户组的选择,我需要使用 TFS API 填充该特定组中的用户.

I want to list TFS user groups in a DropDown and based on selection of user group I need to populate users in that particular group using TFS API.

推荐答案

这个页面有几个例子:http://blogs.microsoft.co.il/blogs/shair/archive/2009/01/14/tfs-api-part-4-get-tfs-user-list-mail-sid-account-domain.aspx

最后一个例子可能是最相关的.

The last example is probably the most relevant.

IGroupSecurityService gss = (IGroupSecurityService)server.GetService(typeof(IGroupSecurityService));
Identity[] UserId = gss.ReadIdentities(SearchFactor.Sid, SIDS.Members, QueryMembership.None);

这篇关于如何使用 TFS API 获取 TFS 用户组和特定组中的用户?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 07:48