Files
VSC/_NuGet/CSOM/FieldDelete.cs
T
claudio 368d6fafea Issue
Code backup
2026-05-10 16:59:01 +02:00

19 lines
435 B
C#

void FieldDelete(clientContext ctx, string[] fieldNames)
{
foreach (var field in fieldNames)
{
var web = ctx.Web;
ctx.Load(web);
ctx.ExecuteQuery();
var field = web.Fields.GetByInternalNameOrTitle(field);
if (field != null)
{
field.SetAllowDeletion(true);
field.DeleteObject();
web.Update();
ctx.ExecuteQuery();
}
}
}