Пример #1
0
 public ProjectDoc(string directory, string fileName) : this()
 {
     this.Doc = new MyXmlDocument(directory, fileName);
     this.Doc.Open();
 }
Пример #2
0
 public ProjectDoc(string path) : this()
 {
     this.Doc = new MyXmlDocument(path);
     this.Doc.Open();
 }
Пример #3
0
 /// <summary>
 /// Конструктор
 /// </summary>
 public IdeaDoc(string directory, string filename) : this()
 {
     this.Doc = new MyXmlDocument(directory, filename);
     this.Doc.Open();
 }
Пример #4
0
		public void UseOverridenCreateAttribute ()
		{
			XmlDocument doc = new MyXmlDocument ();
			doc.LoadXml ("<root a='sane' />");
			Assert.IsNotNull (doc.DocumentElement.GetAttributeNode ("hijacked"));
			Assert.IsNull (doc.DocumentElement.GetAttributeNode ("a"));
		}
Пример #5
0
 /// <summary>
 /// Конструктор
 /// </summary>
 public IdeaDoc(string path) : this()
 {
     this.Doc = new MyXmlDocument(path);
 }