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

PreSaveProcessing() public méthode

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