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