OpenScraping.Config.ConfigSection.ConfigSection C# (CSharp) 메소드

ConfigSection() 공개 메소드

public ConfigSection ( ) : System.Collections.Generic
리턴 System.Collections.Generic
        public ConfigSection()
        {
            this.ConfigName = string.Empty;
            this.RemoveTags = new HashSet<string>();
            this.UrlPatterns = new List<string>();
            this.XPathRules = new List<string>();
            this.Transformations = new List<TransformationConfig>();
            this.Children = new Dictionary<string, ConfigSection>();
            this.ForceArray = false;
        }
ConfigSection