Opc.Ua.Sample.Controls.ClientForm.PerformanceTestMI_Click C# (CSharp) Method

PerformanceTestMI_Click() private method

private PerformanceTestMI_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void PerformanceTestMI_Click(object sender, EventArgs e)
        {  
            try
            {
                new PerformanceTestDlg().ShowDialog(
                    m_configuration,
                    m_endpoints,
                    m_configuration.SecurityConfiguration.ApplicationCertificate.Find(true));
            }
            catch (Exception exception)
            {
				GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
            }
        }