SPWeb の名前変更を試みると、次の SPException が表示されます。
Exception SPException - The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again. - Failed to create workgroup registration entry
ここで何が問題になるのか、何か考えはありますか? 関連するコードは次のとおりです。
SPSecurity.RunWithElevatedPrivileges(() =>
{
using (SPWeb thisWeb = site.OpenWeb(webUrl))
{
thisWeb.Title = newName;
thisWeb.Update();
}
});