public void Delete() { this.Clear(); try { ADSFile.Write("", this.Path, this.Name); } catch (Exception ex) { Output.WriteException(ex); } }
public void Save() { try { if (Data.IsNullOrWhiteSpace()) { return; } ADSFile.Write(DataRawEncryptedCompressed, this.Path, this.Name); } catch (Exception ex) { Output.WriteException(ex); } }