Adf.Web.UI.MessageButton.RaisePostBackEvent C# (CSharp) Метод

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

Raises the click event when the confirmation button is clicked.
public RaisePostBackEvent ( string eventArgument ) : void
eventArgument string The event argument.
Результат void
        public void RaisePostBackEvent(string eventArgument)
        {
            if (Click != null) Click(this, new EventArgs());
        }