private void TrustManagerPromptUI_ShowMoreInformation(object sender, LinkLabelLinkClickedEventArgs e)
 {
     try
     {
         using (TrustManagerMoreInformation information = new TrustManagerMoreInformation(this.m_options, this.m_publisherName))
         {
             information.ShowDialog(this);
         }
     }
     catch (Exception)
     {
     }
 }
Пример #2
0
 private void TrustManagerPromptUI_ShowMoreInformation(System.Object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
 {
     try
     {
         using (TrustManagerMoreInformation moreInformation = new TrustManagerMoreInformation(m_options, m_publisherName))
         {
             moreInformation.ShowDialog(this);
         }
     }
     catch (Exception ex)
     {
         Debug.Fail("Error occurred while showing More Information: " + ex.Message);
     }
 }
 private void TrustManagerPromptUI_ShowMoreInformation(object sender, LinkLabelLinkClickedEventArgs e)
 {
     try
     {
         using (TrustManagerMoreInformation information = new TrustManagerMoreInformation(this.m_options, this.m_publisherName))
         {
             information.ShowDialog(this);
         }
     }
     catch (Exception)
     {
     }
 }
 private void TrustManagerPromptUI_ShowMoreInformation(System.Object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
 {
     try
     {
         using (TrustManagerMoreInformation moreInformation = new TrustManagerMoreInformation(m_options, m_publisherName))
         {
             moreInformation.ShowDialog(this);
         }
     }
     catch (Exception ex)
     {
         Debug.Fail("Error occurred while showing More Information: " + ex.Message);
     }
 }