このコードスニペットをテストしようとしていますが、 "ClientContext oContext = new ClientContext(siteUrl);"で "using using directiveまたはassembly reference"私は私が何をしないのですかわからないので、私が最初にあなたが「グローバルスコープにMicrosoft.SharePoint.Client
のメンバーをもたらすが、右その後、あなたしている...usingディレクティブまたはアセンブリ参照(ClientContext)がありません
using System;
using Microsoft.SharePoint.Client;
using SP = Microsoft.SharePoint.Client;
namespace Microsoft.SDK.SharePointServices.Samples
{
class BreakSecurityInheritance
{
static void Main()
{
string siteUrl = "http://MyServer/sites/MySiteCollection";
ClientContext oContext = new ClientContext(siteUrl);
SP.List oList = oContext.Web.Lists.GetByTitle("Announcements");
oList.BreakRoleInheritance(true, false);
oContext.ExecuteQuery();
}
}
}
(http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.client.clientcontext.aspx) 'マイクロソフトあなたは[アセンブリへの参照を追加]ていることを確認してください.SharePoint.Client.dll' –
なぜMicrosoft.SharePoint.Clientにエイリアスしていますか? – MethodMan