CSharpTutor.Controls.Login.LinkLabel1LinkClicked C# (CSharp) Method

LinkLabel1LinkClicked() private method

Start IE with the API documentation link
private LinkLabel1LinkClicked ( object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e ) : void
sender object sender
e System.Windows.Forms.LinkLabelLinkClickedEventArgs e
return void
        private void LinkLabel1LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            try
            {
                Utility.DocumentationBrowseUtility.Start(ConfigurationManager.AppSettings["getAPIKey"]);
            }
            catch (Exception exception)
            {
                MessageBox.Show(exception.Message, Resources.MessageBoxTitle, MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }