不知道这是否是合适的论坛,但......
我有一个项目,引用了Microsoft.ProjectServer.Client v15和Microsoft.SharePoint.Client v15。
的样本当我不包含自定义字段时,代码正常工作,但当我包含自定义字段时,代码失败并且未处理异常。
我已经检查了PWA中的实际项目,看它是否有自定义字段的值,它确实如此。事实上,这个代码适用于现场376个项目中的48个,并且没有签出。
我还确认我在PWA在线网站上有足够的许可
我尝试了各种各样的例子,但这是最接近工作的。
using (ProjectContext projContext = new ProjectContext("https://xxxxxxx.sharepoint.com/sites/pwa"))
{
SecureString passWord = new SecureString();
foreach (char c in "MyPassword1".ToCharArray()) passWord.AppendChar(c);
projContext.Credentials = new SharePointOnlineCredentials("myuser@mydomain.com", passWord);
projContext.Load(projContext.Projects);
projContext.ExecuteQuery();
if (projContext.Projects.Count > 0)
{
Console.WriteLine(projContext.Projects.Count);
for (int i = 0; i < projContext.Projects.Count; i++)
{
try
{
var pubProj = projContext.Projects[i].IncludeCustomFields;
projContext.Load(pubProj);
projContext.Load(pubProj.CustomFields);
projContext.ExecuteQuery(); //Error happens hear and error not handled
}
catch
{
}
}
}
}
答案 0 :(得分:0)
问题是项目没有填写所有必填字段。无法解释这是如何导致问题的