Engage.Survey.Entities.Survey.PostSaveProcessing C# (CSharp) Méthode

PostSaveProcessing() public méthode

Posts the save processing.
public PostSaveProcessing ( WebControl control ) : void
control WebControl The control.
Résultat void
        public virtual void PostSaveProcessing(WebControl control)
        {
            List<ISection> sections = this.GetSections();
            foreach (ISection s in sections)
            {
                s.PostSaveProcessing(control);
            }
        }