标签: c# authentication sharepoint sharepoint-2013
我在SharePoint 2013中开发了一个WebPart,我必须创建一个名为IsLoggedInUser()的函数 如果登录用户是匿名的,则返回false,否则返回true。
有人可以帮助我吗?
答案 0 :(得分:1)
if (SPContext.Current.Web.CurrentUser != null) return true;