Example #1
0
 public string Read(Document doc)
 {
     return doc.Read();
 }
Example #2
0
 public bool Write(Document doc, string text)
 {
     doc.Write(text);
     return true;
 }
Example #3
0
 public bool Delete(Document doc)
 {
     doc.Dispose();
     return true;
 }
Example #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();
 }