Beispiel #1
0
 public Hdf5ElementBase(string name, Hdf5ElementType type, Hdf5ElementBase parent, long id, bool isLazyLoading)
 {
     Name          = name;
     Type          = type;
     Parent        = parent;
     IsLazyLoading = isLazyLoading;
     Id            = id;
 }
Beispiel #2
0
 public Hdf5Element(string name, Hdf5ElementType type, Hdf5ElementBase parent, long id, bool isLazyLoading) : base(name, type, parent, id, isLazyLoading)
 {
     Children = new List <Hdf5Element>();
 }
Beispiel #3
0
 public Hdf5Element(string name, Hdf5ElementType type, Hdf5ElementBase parent, List <Hdf5AttributeElement> attributes, long id, bool isLazyLoading) : base(name, type, parent, id, isLazyLoading)
 {
     Children   = new List <Hdf5Element>();
     Attributes = attributes.ToList();
 }