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

posted @ 2014-09-23 16:53  Star★  阅读(287)  评论(0编辑  收藏  举报