Esempio n. 1
0
        private void HandleItem(AssemblyDefinition adef)
        {
            _adef = adef;

            AssemblyNameDefinition.Bind(adef == null ? null : adef.Name);
            AssemblyDefinition.Bind(adef);
            AssemblyCustomAttributes.Bind(adef);

            var module = adef == null ? null : adef.MainModule;

            ModuleDefinition.Bind(module);
            ModuleCustomAttributes.Bind(module);
        }
Esempio n. 2
0
 private void ModuleCustomAttributes_GridUpdated(object sender, EventArgs e)
 {
     AssemblyCustomAttributes.Rehash();
     ModuleCustomAttributes.Rehash();
 }
Esempio n. 3
0
 void IHandler.OnConfigurationChanged(object sender, EventArgs e)
 {
     AssemblyCustomAttributes.Rehash();
     ModuleCustomAttributes.Rehash();
 }