/// <summary>
        /// Loads the application options.
        /// </summary>
        /// <param name="sender"> The sender object.</param>
        /// <param name="e"> The event arguments.</param>
        private void LoadApplicationOptions(object sender, EventArgs e)
        {
            ApplicationOptions appOptions = new ApplicationOptions();
            appOptions.ClientSettings = ClientProperties;
            appOptions.ApplicationSettings = InspectorConfig;

            if ( appOptions.ShowDialog() == DialogResult.OK )
            {
                ClientProperties = appOptions.ClientSettings;
                InspectorConfig = appOptions.ApplicationSettings;
            }

            LoadApplicationProperties(InspectorConfig);
            LoadHttpProperties(ClientProperties);
        }