public DXConnectionQuery(DXConnectionQuery query) { this.m_name = null; this.m_browsePath = null; this.m_masks = new DXConnectionCollection(); this.m_recursive = false; if (query != null) { this.Name = query.Name; this.BrowsePath = query.BrowsePath; this.Recursive = query.Recursive; this.m_masks = new DXConnectionCollection(query.Masks); } }
public void Insert(int index, DXConnectionQuery value) { this.Insert(index, value); }
public int IndexOf(DXConnectionQuery value) { return(this.IndexOf(value)); }
public bool Contains(DXConnectionQuery value) { return(this.Contains(value)); }
public int Add(DXConnectionQuery value) { return(this.Add(value)); }
public void Remove(DXConnectionQuery value) { this.Remove(value); }