zoukankan      html  css  js  c++  java
  • Web API,Web Service SharePoint对象操作报Operation is not valid due to the current state of the object解决方案

    Web API,Web Service SharePoint对象操作报Operation is not valid due to the current state of the object解决方案,这是因为当前的user信息不一致导致的,添加HttpContext.Current = null;,解决,要类似这样:

    SPSecurity.RunWithElevatedPrivileges(delegate()
                {
                    HttpContext.Current = null;
                    using (SPSite site = new SPSite(targetWeb))
                    {
                        using (SPWeb web = site.OpenWeb())
                        {
                            SPList targetlist = web.Lists[targetList];
                            foreach (ItemType item in import.item)
                            {
       ...
                            }
                        }
                    }
                });

  • 相关阅读:
    继承
    JAVA接口的继承与集合
    JAVA接口
    c++程序—敲桌子
    c++程序—水仙花数
    c++程序—while猜数字游戏
    c++程序—switch分支
    c++程序—三目运算符
    c++程序—if语句实践
    c++程序—选择结构
  • 原文地址:https://www.cnblogs.com/gamewyd/p/6646896.html
Copyright © 2011-2022 走看看