TimeJob权限问题 拒绝访问

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

原文地址:https://www.cnblogs.com/TNSSTAR/p/3988777.html