Вопрос

http://msdn.microsoft.com/ru-US / Библиотека / Microsoft.SharePoint.spsececurity.aspx говорит

Microsoft.SharePoint.SPSecurity is in
Namespace: Microsoft.SharePoint 
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
.

для SharePoint 2013

Но когда я ILSPY или OUDER BROWSER или просто попробую разрешить ссылку в Visual Studio, это не там!

Введите описание изображения здесь

Поскольку я не могу ничего найти об этом онлайн, я знаю, что это просто я делаю серьезное надзора, но что?!?

Это было полезно?

Решение

If I load a reference to Microsoft.Sharepoint.DLL inside a visual studio project, the added assembly is located at "C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.dll".

When inspected with ILSpy this assembly does contain the SPSecurity class.

I'm not quite sure why you don't see it. But the build of the assembly differs from yours.

enter image description here

Другие советы

Here's the answer when you are using sandbox mode to develop, the SPSecurity class can't be accessed. Just use farm solution and you'll find that.

See Inside Microsoft SharePoint 2010
Chapter 4: Sandboxed Solutions (Inside SharePoint 2010)

Understanding Solution Restrictions
Restricting the access of sandboxed solutions to a subset of the Microsoft.SharePoint namespace is intended to prevent solutions from accessing functionality that could destabilize the farm. When sandboxed solutions make calls to the SharePoint object model, the calls are routed through the subset proxy, which in turn makes calls to the full object model. The subset proxy exposes only the following subset of the object model: All of the Microsoft.SharePoint namespace, except

  • SPSite constructor
  • SPSecurity object
  • SPWorkItem and
  • SPWorkItemCollection objects
  • SPAlertCollection.Add method
  • SPAlertTemplateCollection.Add method
  • SPUserSolution and
  • SPUserSolutionCollection objects
  • SPTransformUtilities object
  • Microsoft.SharePoint.Navigation namespace
Лицензировано под: CC-BY-SA с атрибуция
Не связан с sharepoint.stackexchange
scroll top