重命名共享点在线列表中的 "Content Type" 列

Rename the "Content Type" column in sharepoint online list

我需要重命名具有多种内容类型的 Sharepoint 在线文档库中的默认 "Content Type" 列。有没有办法使用 CSOM 或任何其他方式来做到这一点?

提前致谢。

像这样重命名默认内容类型字段名称:

            List targetList = ctx.Web.Lists.GetByTitle("Documents");
            FieldCollection fields = targetList.Fields;
            ctx.Load(fields);
            ctx.ExecuteQuery();
            Field ctfield = fields.GetByInternalNameOrTitle("ContentType");
            ctx.Load(ctfield);
            ctx.ExecuteQuery();
            ctfield.Title = "CustomContentType";
            ctfield.Update();
            ctx.ExecuteQuery();

SharePoint Online: Rename a Column in List using PowerShell