internal bool ShouldLoadControlState(Control control)
 {
     if (this._registeredControlsRequiringClearChildControlState != null)
     {
         foreach (Control control2 in this._registeredControlsRequiringClearChildControlState.Keys)
         {
             if ((control != control2) && control.IsDescendentOf(control2))
             {
                 return false;
             }
         }
     }
     return true;
 }