예제 #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="spiderEvaluatorSimpleBase"/> class.
        /// </summary>
        /// <param name="__name">The name.</param>
        /// <param name="__description">The description.</param>
        /// <param name="__aboutfile">The aboutfile.</param>
        /// <param name="__parent">The parent.</param>
        /// <param name="__doTokenization">if set to <c>true</c> [do tokenization].</param>
        public spiderEvaluatorBase(string __name, string __description, string __aboutfile)
        {
            name          = __name;
            description   = __description;
            aboutFilepath = __aboutfile;

            plugins = new crawlerPlugInCollection(this);
        }
예제 #2
0
 public spiderEvaluatorBase()
 {
     plugins = new crawlerPlugInCollection(this);
 }