public DerivedTypesEntryNode(TypeDefinition type, AssemblyDefinition[] assemblies)
 {
     this.type        = type;
     this.assemblies  = assemblies;
     this.LazyLoading = true;
     threading        = new ThreadingSupport();
 }
Exemple #2
0
 public DerivedTypesTreeNode(AssemblyList list, TypeDefinition type)
 {
     this.list        = list;
     this.type        = type;
     this.LazyLoading = true;
     this.threading   = new ThreadingSupport();
 }
		public DerivedTypesEntryNode(TypeDef type, ModuleDef[] modules)
		{
			this.type = type;
			this.modules = modules;
			this.LazyLoading = true;
			threading = new ThreadingSupport();
		}
		public DerivedTypesTreeNode(AssemblyList list, TypeDefinition type)
		{
			this.list = list;
			this.type = type;
			this.LazyLoading = true;
			this.threading = new ThreadingSupport();
		}
Exemple #5
0
 public DerivedTypesEntryNode(TypeDef type, ModuleDef[] modules)
 {
     this.type        = type;
     this.modules     = modules;
     this.LazyLoading = true;
     threading        = new ThreadingSupport();
 }
		public DerivedTypesEntryNode(TypeDefinition type, AssemblyDefinition[] assemblies)
		{
			this.type = type;
			this.assemblies = assemblies;
			this.LazyLoading = true;
			threading = new ThreadingSupport();
		}
 public DerivedTypesTreeNode(DnSpyFileList list, TypeDef type)
 {
     this.list        = list;
     this.type        = type;
     this.LazyLoading = true;
     this.threading   = new ThreadingSupport();
 }
 public DerivedTypesEntryNode(TypeDefinition def, AssemblyDefinition[] assemblies)
 {
     this.def = def;
     this.assemblies = assemblies;
     threading = new ThreadingSupport();
 }
		public DerivedTypesTreeNode(DnSpyFileList list, TypeDef type) {
			this.list = list;
			this.type = type;
			this.LazyLoading = true;
			this.threading = new ThreadingSupport();
		}