public virtual void OnBindToElementCollection(AppSettingsSection appSettings, CommanderSection commanderSettings, CurrentConfigurationElementCollection elementCollection)
        {
            var handler = BindToElementCollection;
            if (handler != null)
            {
				handler(this, new BindToElementCollectionEventArgs(appSettings, commanderSettings, elementCollection));
            }
        }
        public BindToElementCollectionEventArgs(AppSettingsSection appSettings, CommanderSection commanderSettings, CurrentConfigurationElementCollection elementCollection)
        {
			AppSettings = appSettings;
			CommanderSettings = commanderSettings;
            ElementCollection = elementCollection;
        }