Exemplo n.º 1
0
        public void LoadDomain(DomainsItem dom)
        {
            domain = dom;
            config = dom.informationOptions;

            ClearValues();
            LoadValuesFromDomain();
        }
Exemplo n.º 2
0
        public void LoadDomain(DomainsItem dom)
        {
            domain = dom;
            lblFilesSearchStatus.Text = dom.Domain;
            config = dom.informationOptions;

            ClearValues();
            LoadValuesFromDomain();
        }
Exemplo n.º 3
0
    private bool disposedValue = false; // To detect redundant calls

    protected virtual void Dispose(bool disposing)
    {
        if (!disposedValue)
        {
            if (disposing)
            {
                map.Dispose();
                fingerPrinting.Dispose();
                informationOptions.Dispose();
            }

            fingerPrinting     = null;
            map                = null;
            informationOptions = null;

            disposedValue = true;
        }
    }
Exemplo n.º 4
0
 public DomainsItem(string domain, string source)
 {
     this.Domain        = domain;
     this.Source        = source;
     informationOptions = new PanelInformationOptionsSerializableClass();
 }