N2.Web.UI.WebControls.ItemEditorList.LoadViewState C# (CSharp) Method

LoadViewState() protected method

protected LoadViewState ( object savedState ) : void
savedState object
return void
        protected override void LoadViewState(object savedState)
        {
            var p = (Triplet) savedState;
            base.LoadViewState(p.First);
            AddedDefinitions = (List<string>) p.Second;
            DeletedIndexes = (List<int>) p.Third;
            EnsureChildControls();
            logger.Debug("addedTypes: " + AddedDefinitions.Count + ", deletedIndexes: " + DeletedIndexes.Count);
        }