gpt4 book ai didi

c# - 使用 System.Reflection 时验证异常时出错

转载 作者:太空宇宙 更新时间:2023-11-03 13:05:00 24 4
gpt4 key购买 nike

我们正在 Visual Studio 2013 中为 SharePoint Online 开发一个 SharePoint webpart 作为沙盒解决方案。我们使用外部 dll 库 iTextSharp 来读取和写入 PDF。激活我们的解决方案时遇到问题。

我们的错误信息是:

Error validating assembly itextsharp.dll.

此解决方案引用了禁止的类型 System.Reflection.BindingFlags,不能用于此网站集。

最佳答案

你自己已经回答了这个问题:

This solution references prohibited type System.Reflection.BindingFlags and cannot be used on this site collection.

您不能将 System.Reflection 命名空间用于 SharePoint Online 解决方案(大部分情况下)。 System.Reflection 中唯一允许的成员是:

  • 获取值名称
  • 获取自定义属性
  • 属性类型
  • 获取值设置值

我建议查看 Microsoft 用于开发 SharePoint Online 解决方案的文档 (link),因为有很多以前可用于 SharePoint 开发的命名空间现在已被禁止。

Microsoft 对此的看法如下:

Because it is a multi-tenant environment, when you upload a sandboxed solution to the Solution Gallery, SharePoint Online performs a further round of validation checks, in addition to those performed by on-premise SharePoint installations. A sandboxed solution cannot be activated if it contains code calling any of the following namespaces:

下面是禁止命名空间的列表(请参阅所有异常(exception)情况的文档):

  • 微软.SqlServer
  • 微软.Win32
  • 系统.Data.Sql
  • 系统.Data.SqlClient
  • System.Data.SqlTypes
  • System.IO.Pipes
  • System.IO.Ports
  • 系统.反射
  • System.Runtime.InteropServices
  • 系统.运行时.Remoting
  • 系统线程
  • Array.CreateInstance()
  • 系统代理
  • Type.GetType(字符串)
  • Type.InvokeMember()

关于c# - 使用 System.Reflection 时验证异常时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31048768/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com