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