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