Example #1
0
        public void Formatting(ExtractorModel extractor, ref List <NetTask> tasks, IExtractorOption option)
        {
            var ff = extractor.RecommendFormat(option);

            foreach (var task in tasks)
            {
                task.Filename = task.Format.Formatting(ff);
            }
        }
Example #2
0
 public virtual void CLParse(ref IExtractorOption model, string[] args)
 {
 }
Example #3
0
 public abstract (List <NetTask>, ExtractedInfo) Extract(string url, IExtractorOption option);
Example #4
0
 public abstract string RecommendFormat(IExtractorOption option);