Brew.Webforms.Widget.IPostBackEventHandler C# (CSharp) Method

IPostBackEventHandler() private method

private IPostBackEventHandler ( string eventArgument ) : void
eventArgument string
return void
        void IPostBackEventHandler.RaisePostBackEvent(string eventArgument)
        {
            if (AutoPostBack && !Page.IsPostBackEventControlRegistered) {
                Page.AutoPostBackControl = this;
            }

            RaisePostBackEvent(eventArgument);
        }