internal void RenameWithoutValidation(string value) { if (value == null) throw new ArgumentNullException("value"); this.m_Name = value.Trim(); try { this.m_SkipPersistedStoreWriteCheck = true; this.Update(); } finally { this.m_SkipPersistedStoreWriteCheck = false; } }
protected override bool HasAdditionalUpdateAccess()
{
return true;
}
时间: 2024-10-19 03:58:41