protected ReferenceVisitor(string name,
                            ReferenceConfiguration configuration)
     : this()
 {
     if (!String.IsNullOrEmpty(name))
     {
         _name = name;
     }
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ReferenceConfiguration"/> class
 /// with parameters copied from the specified instance of the
 /// <see cref="ReferenceConfiguration"/> class, a copy constructor.
 /// </summary>
 /// <param name="source">
 /// An instance of the <see cref="ReferenceConfiguration"/> class from which the
 /// initialization parameters or values will be copied.
 /// </param>
 /// <exception cref="ArgumentNullException">
 /// If the parameter <paramref name="source"/> is <see langword="null"/>.
 /// </exception>
 protected ReferenceConfiguration(ReferenceConfiguration source)
     : base(source)
 {
 }
Beispiel #3
0
 protected ReferenceTocVisitor(string name,
                               ReferenceConfiguration configuration)
     : base(name, configuration)
 {
 }