码迷,mamicode.com
首页 > 其他好文 > 详细

sharepoint 2013 userprofile 用户信息

时间:2015-07-14 17:32:11      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

Sharepoint2013获得当前用户userfrofile

基本介绍:

什么使用户配置文件。 用户属性和用户配置文件属性提供有关 SharePoint 用户的信息,如显示名称、电子邮件、标题以及其它业务和个人信息。

开发人员能够通过获得该文件,也能够改动文件、创建文件。Sharepoint2013确实是个开发好工具,能够通过javascript对象模型、.NETclient对象模型、服务期端对象模型。这里用server对象模型解决。

实现:

得到当前用户:

stringLoginName=System.Web.HttpContext.Current.User.Identity.Name.ToString();

得到很多其它信息:

  SPSecurity.RunWithElevatedPrivileges(delegate{

SPSite _site = SPContext.Current.Site;

                SPServiceContext serverContext = SPServiceContext.GetContext(_site);

                UserProfileManager myUserProfile = newUserProfileManager(serverContext);

                UserProfile currentUserProfile= myUserProfile.GetUserProfile(SPContext.Current.Web.CurrentUser.LoginName);

string departmentName = (string)currentUserProfile["department"].Value;

//所属部门

string phoneNsumber= (string)currentUserProfile["workphone"].Value;

//电话号码

string emailAddress= (string)currentUserProfile["workEmail"].Value;

//电子邮箱地址

})

总结

就介绍这么多了,假设想很多其它了解,这是msdv地址:

http://msdn.microsoft.com/ZH-CN/library/office/jj163182(v=office.15).aspx

版权声明:本文博客原创文章,博客,未经同意,不得转载。

sharepoint 2013 userprofile 用户信息

标签:

原文地址:http://www.cnblogs.com/lcchuguo/p/4645880.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!