Adf.Web.UI.MessageButton.RaisePostBackEvent C# (CSharp) Method

RaisePostBackEvent() public method

Raises the click event when the confirmation button is clicked.
public RaisePostBackEvent ( string eventArgument ) : void
eventArgument string The event argument.
return void
        public void RaisePostBackEvent(string eventArgument)
        {
            if (Click != null) Click(this, new EventArgs());
        }