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;
}