示例#1
0
 /// <summary>
 /// Initializes a new instance of the XmlConfigurationOptionEventArgs class
 /// </summary>
 /// <param name="option">The option being affected by this action</param>
 /// <param name="action">The action affecting this option</param>
 public XmlConfigurationCategoryEventArgs(XmlConfigurationCategory category, XmlConfigurationElementActions action) : base(category, action)
 {
 }
		/// <summary>
		/// Initializes a new instance of the XmlConfigurationOptionEventArgs class
		/// </summary>
		/// <param name="option">The option being affected by this action</param>
		/// <param name="action">The action affecting this option</param>
		public XmlConfigurationOptionEventArgs(XmlConfigurationOption option, XmlConfigurationElementActions action) : base(option, action)
		{
			
		}
		/// <summary>
		/// Initializes a new instance of the XmlConfigurationElementEventArgs class
		/// </summary>
		/// <param name="element">The element being affected by this action</param>
		/// <param name="action">The action affecting this element</param>
		public XmlConfigurationElementEventArgs(XmlConfigurationElement element, XmlConfigurationElementActions action)
		{
			_element = element;
			_action = action;
		}
 /// <summary>
 /// Initializes a new instance of the XmlConfigurationOptionEventArgs class
 /// </summary>
 /// <param name="option">The option being affected by this action</param>
 /// <param name="action">The action affecting this option</param>
 public XmlConfigurationOptionEventArgs(XmlConfigurationOption option, XmlConfigurationElementActions action) : base(option, action)
 {
 }
		/// <summary>
		/// Initializes a new instance of the XmlConfigurationOptionEventArgs class
		/// </summary>
		/// <param name="option">The option being affected by this action</param>
		/// <param name="action">The action affecting this option</param>
		public XmlConfigurationCategoryEventArgs(XmlConfigurationCategory category, XmlConfigurationElementActions action) : base(category, action)
		{
			
		}
示例#6
0
 /// <summary>
 /// Initializes a new instance of the XmlConfigurationElementEventArgs class
 /// </summary>
 /// <param name="element">The element being affected by this action</param>
 /// <param name="action">The action affecting this element</param>
 public XmlConfigurationElementEventArgs(XmlConfigurationElement element, XmlConfigurationElementActions action)
 {
     _element = element;
     _action  = action;
 }