/// <summary>
 /// Construct the configurator for a hierarchy
 /// </summary>
 /// <param name="hierarchy">The hierarchy to build.</param>
 /// <remarks>
 /// <para>
 /// Initializes a new instance of the <see cref="XmlHierarchyConfigurator" /> class
 /// with the specified <see cref="Hierarchy" />.
 /// </para>
 /// </remarks>
 public XmlHierarchyConfigurator(Hierarchy hierarchy)
 {
     m_hierarchy   = hierarchy;
     m_appenderBag = new Hashtable();
 }
Ejemplo n.º 2
0
		/// <summary>
		/// Construct the configurator for a hierarchy
		/// </summary>
		/// <param name="hierarchy">The hierarchy to build.</param>
		/// <remarks>
		/// <para>
		/// Initializes a new instance of the <see cref="XmlHierarchyConfigurator" /> class
		/// with the specified <see cref="Hierarchy" />.
		/// </para>
		/// </remarks>
		public XmlHierarchyConfigurator(Hierarchy hierarchy) {
			m_hierarchy = hierarchy;
			m_appenderBag = new Hashtable();
		}