zoukankan      html  css  js  c++  java
  • SharePoint中低权限用户通过提升权限创建用户组

    主要代码如下:

     1         /// <summary>
    2 /// 提升权限创建用户组
    3 /// </summary>
    4 /// <param name="groupname">用户组的名字</param>
    5 public void CreateGroup(string groupname)
    6 {
    7 SPSecurity.RunWithElevatedPrivileges(delegate()
    8 {
    9 try
    10 {
    11 using (SPSite mySite = new SPSite(SPContext.Current.Site.ID))
    12 {
    13 using (SPWeb myWeb = mySite.OpenWeb())
    14 {
    15 myWeb.AllowUnsafeUpdates = true;
    16 myWeb.SiteGroups.Add(groupname, myWeb.CurrentUser, null, "");
    17 myWeb.AllowUnsafeUpdates = false;
    18 }
    19 }
    20 }
    21 catch (Exception ex)
    22 {
    23 //throw custom exception
    24 }
    25 });
    26 }
  • 相关阅读:
    7A
    map最最最基本用法
    cccc超级酱油心得
    scu-4445
    初学算法之广搜
    初学算法之最基础的stl队列
    初学算法之筛选素数法
    go 虎牙爬取
    php使用xpath爬取内容
    go xpath
  • 原文地址:https://www.cnblogs.com/leolis/p/2313768.html
Copyright © 2011-2022 走看看