0
我需要找出(以編程方式)某個用戶配置文件屬性使用的術語集,但我無法弄清楚如何執行此操作。任何想法都非常感謝!在SharePoint 2010中獲取用戶配置文件屬性的術語集
我需要找出(以編程方式)某個用戶配置文件屬性使用的術語集,但我無法弄清楚如何執行此操作。任何想法都非常感謝!在SharePoint 2010中獲取用戶配置文件屬性的術語集
最後想通了:
SPSite site = new SPSite(url);
SPServiceContext context = SPServiceContext.GetContext(site);
var userProfileConfigManager = new UserProfileConfigManager(context);
ProfilePropertyManager profilePropertyManager = userProfileConfigManager.ProfilePropertyManager;
CorePropertyManager corePropertyManager = profilePropertyManager.GetCoreProperties();
CoreProperty property = corePropertyManager.GetPropertyByName(propertyName);
TermSet ts = property.TermSet; // DONE!