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;
}
原文地址:http://www.cnblogs.com/TNSSTAR/p/3988777.html