Ext.Net.AfterStoreChangedEventArgs.AfterStoreChangedEventArgs C# (CSharp) Method

AfterStoreChangedEventArgs() private method

private AfterStoreChangedEventArgs ( bool success, Exception exception, ConfirmationList confirmationList ) : System
success bool
exception System.Exception
confirmationList ConfirmationList
return System
        public AfterStoreChangedEventArgs(bool success, Exception exception, ConfirmationList confirmationList)
        {
            this.exception = exception;
            this.confirmationList = confirmationList;
            this.success = success;
        }
AfterStoreChangedEventArgs