Esempio n. 1
0
 public string Read(Document doc)
 {
     return doc.Read();
 }
Esempio n. 2
0
 public bool Write(Document doc, string text)
 {
     doc.Write(text);
     return true;
 }
Esempio n. 3
0
 public bool Delete(Document doc)
 {
     doc.Dispose();
     return true;
 }
Esempio n. 4
0
 public bool Close(Document doc)
 {
     return false;
 }
 public bool Write(Document doc, string text)
 {
     throw new NotImplementedException();
 }
 public string Read(Document doc)
 {
     throw new NotImplementedException();
 }
 public bool Delete(Document doc)
 {
     throw new NotImplementedException();
 }