Esempio n. 1
0
 public void Load(object content, NodeReaderType type, bool autoExtend)
 {
     Dispose(null);
     vNodeContent    = content;
     vNodeType       = type;
     AllowAutoExtend = autoExtend;
 }
Esempio n. 2
0
		protected void Init(NodeReaderType type)
		{
			nodeType = type;
		}
Esempio n. 3
0
		public NodeReader(object targetNode, NodeReaderType type)
		{
			Init(type);
			nodeContent = targetNode;
		}
Esempio n. 4
0
		public RegistryReader(object targetNode, NodeReaderType type, bool allowAutoExtend) : base(targetNode, type, allowAutoExtend) { }
Esempio n. 5
0
		public ExtendableReader(object targetNode, NodeReaderType type, bool allowAutoExtend) : base(targetNode, type) 
		{
			autoExtend = allowAutoExtend;
		}
Esempio n. 6
0
 public virtual void Dispose(params object[] parlist)
 {
     vNodeContent    = null;
     vNodeType       = NodeReaderType.Unknown;
     AllowAutoExtend = false;
 }
Esempio n. 7
0
 public NodeReader(object targetNode, NodeReaderType type)
 {
     Init(type);
     nodeContent = targetNode;
 }
Esempio n. 8
0
 protected void Init(NodeReaderType type)
 {
     nodeType = type;
 }
Esempio n. 9
0
 public RegistryReader(object targetNode, NodeReaderType type, bool allowAutoExtend) : base(targetNode, type, allowAutoExtend)
 {
 }
Esempio n. 10
0
 public ExtendableReader(object targetNode, NodeReaderType type, bool allowAutoExtend) : base(targetNode, type)
 {
     autoExtend = allowAutoExtend;
 }
Esempio n. 11
0
 protected void Init(object targetNode, NodeReaderType type)
 {
     nodeType    = type;
     nodeContent = targetNode;
 }
Esempio n. 12
0
 public NodeReaderBasic(object targetNode, NodeReaderType type)
 {
     Init(targetNode, type);
 }
Esempio n. 13
0
 protected void Init(object targetNode, NodeReaderType type, bool allowAutoExtend)
 {
     Init(targetNode, type);
     autoExtend = allowAutoExtend;
 }