FP300Service.UserControls.UtililtyFuncsUC.btnLastResponse_Click C# (CSharp) Method

btnLastResponse_Click() private method

private btnLastResponse_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void btnLastResponse_Click(object sender, EventArgs e)
        {
            try
            {
                ParseResponse(new CPResponse(bridge.Printer.GetLastResponse()));
            }
            catch (System.Exception ex)
            {
                bridge.Log(FormMessage.OPERATION_FAILS + ": " + ex.Message);
            }
        }