AjaxControlToolkit.PopupControlExtender.Commit C# (CSharp) Метод

Commit() публичный Метод

Commits the popup control and hides it applying the specified result
public Commit ( string result ) : void
result string Result
Результат void
        public void Commit(string result)
        {
            // It is possible for Commit() to be called numerous times during the same postback so we just remember the desired state
            _closeString = result;
            _shouldClose = true;
        }