public void LoadXml(string xml) { if (xml != "" && xml != null) { DomLoader l = new DomLoader(xml, this); } }
public void LoadXml(string xml) { if (!string.IsNullOrEmpty(xml)) { DomLoader.Load(xml, this); } }
/// <summary> /// </summary> /// <param name="xml"> /// </param> public void LoadXml(string xml) { if (xml != string.Empty && xml != null) { var l = new DomLoader(xml, this); } }
public bool LoadStream(Stream stream) { try { StreamReader sr = new StreamReader(stream); DomLoader l = new DomLoader(sr, this); sr.Close(); return(true); } catch { return(false); } }
public bool LoadStream(Stream stream) { try { using (var sr = new StreamReader(stream)) { DomLoader.Load(sr, this); return(true); } } catch { return(false); } }
public bool LoadFile(string filename) { if (File.Exists(filename)) { try { using (var sr = new StreamReader(File.OpenRead(filename))) { DomLoader.Load(sr, this); return(true); } } catch { return(false); } } return(false); }
public bool LoadFile(string filename) { if (File.Exists(filename) == true) { try { StreamReader sr = new StreamReader(filename); DomLoader l = new DomLoader(sr, this); sr.Close(); return(true); } catch { return(false); } } else { return(false); } }
public bool LoadFile(string filename) { if (File.Exists(filename) == true) { try { StreamReader sr = new StreamReader(filename); DomLoader l = new DomLoader(sr, this); sr.Close(); return true; } catch { return false; } } else { return false; } }
public bool LoadStream(Stream stream) { try { StreamReader sr = new StreamReader(stream); DomLoader l = new DomLoader(sr, this); sr.Close(); return true; } catch { return false; } }