Opc.Ua.Configuration.MainForm.ViewCertificatesBTN_Click C# (CSharp) Method

ViewCertificatesBTN_Click() private method

private ViewCertificatesBTN_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void ViewCertificatesBTN_Click(object sender, EventArgs e)
        {
            try
            {
                CertificateStoreIdentifier store = new CertificateStoreIdentifier();
                store.StoreType = ManagedStoreCTRL.StoreType;
                store.StorePath = ManagedStoreCTRL.StorePath;
                new CertificateListDlg().ShowDialog(store, false);
            }
            catch (Exception exception)
            {
                GuiUtils.HandleException(this.Text, MethodBase.GetCurrentMethod(), exception);
            }
        }