Я пытаюсь добавить новое значение столбца в share-point онлайн, используя несколько потоков. Но я получаю исключение stackoverflow. Не могли бы вы мне помочь. Это мой код:
try
{
foreach (Microsoft.SharePoint.Client.ListItem item in listCol)
{
if (item.FileSystemObjectType == FileSystemObjectType.File)
{
if (!item["FileLeafRef"].ToString().Contains(".tmd"))
{
item[propertyName] = propertyValue; // this line is cause of error
item.Update(); // this line is cause of error
}
}
}
ExecuteQueryWithRetry(clientContext);
}
catch (StackOverflowException ex)
{
Logger.LogException(ex, "Adding Values", "CMM " + "Adding Values");
}