Exemplo n.º 1
0
 public XTJsonRoot SaveAs(string path, Encoding enc, uint warps = 1, List <XTJsonComment> doc = null, bool isCache = true)
 {
     XTJson.Write(path, this, enc, warps, doc, isCache);
     if (isCache)
     {
         return(XTJson.Open(path, doc == null, false));
     }
     return(null);
 }
Exemplo n.º 2
0
 public new void SaveAs(string path, Encoding enc, uint warps = 1, List <XTJsonComment> doc = null, bool isCache = true)
 {
     XTJson.Write(path, this, enc, warps, doc, isCache);
 }
Exemplo n.º 3
0
 // ----------------------------------------------------------
 // public
 // ----------------------------------------------------------
 public void Save(uint warps = 1)
 {
     XTJson.Write(this.m_path, this, this.m_encoding, warps, this.m_doc);
 }