Example #1
0
 /*
  *  Reads tags from the bytes provided, and writes them to the Writer if they're not marked for deletion.
  */
 private bool Delete(byte[] bytes)
 {
     using (ES2Reader reader = ES2Reader.Create(bytes, settings))
     {
         return(reader.DeleteTags(tagsToDelete, this));
     }
 }
Example #2
0
 public bool Delete()
 {
     using (ES2Reader reader = ES2Reader.Create(settings))
     {
         return(reader.DeleteTags(tagsToDelete, this));
     }
 }