Example #1
0
 public DocsMember(string filePath, DocsType parentType, XElement xeMember)
     : base(xeMember)
 {
     FilePath   = filePath;
     ParentType = parentType;
     AssemblyInfos.AddRange(XERoot.Elements("AssemblyInfo").Select(x => new DocsAssemblyInfo(x)));
 }
Example #2
0
 public DocsType(string filePath, XDocument xDoc, XElement xeRoot)
     : base(xeRoot)
 {
     FilePath = filePath;
     XDoc     = xDoc;
     AssemblyInfos.AddRange(XERoot.Elements("AssemblyInfo").Select(x => new DocsAssemblyInfo(x)));
 }