Exemplo n.º 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);
            }
        }
Exemplo n.º 2
0
 public virtual void CLParse(ref IExtractorOption model, string[] args)
 {
 }
Exemplo n.º 3
0
 public abstract (List <NetTask>, ExtractedInfo) Extract(string url, IExtractorOption option);
Exemplo n.º 4
0
 public abstract string RecommendFormat(IExtractorOption option);