1 write to attachedEventList
System.Windows.Forms (1)
winforms\Managed\System\WinForms\HtmlShim.cs (1)
55attachedEventList = new Dictionary<EventHandler, HtmlToClrEventProxy>();
10 references to attachedEventList
System.Windows.Forms (10)
winforms\Managed\System\WinForms\HtmlShim.cs (10)
54if (attachedEventList == null) { 58attachedEventList[eventHandler] = proxy; 79if (attachedEventList != null) { 80EventHandler[] events = new EventHandler[attachedEventList.Count]; 81attachedEventList.Keys.CopyTo(events,0); 84HtmlToClrEventProxy proxy = attachedEventList[eh]; 151if (attachedEventList == null) { 155if (attachedEventList.ContainsKey(eventHandler)) { 156HtmlToClrEventProxy proxy = attachedEventList[eventHandler] as HtmlToClrEventProxy; 157attachedEventList.Remove(eventHandler);