3 writes to htmlWindowShims
System.Windows.Forms (3)
winforms\Managed\System\WinForms\HtmlShimManager.cs (3)
59htmlWindowShims = new Dictionary<HtmlWindow,HtmlWindow.HtmlWindowShim>(); 209htmlWindowShims = null; 211htmlWindowShims = null;
13 references to htmlWindowShims
System.Windows.Forms (13)
winforms\Managed\System\WinForms\HtmlShimManager.cs (13)
58if (htmlWindowShims == null) { 61htmlWindowShims[window] = shim; 63else if (!htmlWindowShims.ContainsKey(window)) { 65htmlWindowShims[window] = shim; 115if (htmlWindowShims == null) { 118if (htmlWindowShims.ContainsKey(window)) { 119return htmlWindowShims[window]; 176if (htmlWindowShims != null) { 177if (htmlWindowShims.ContainsKey(unloadedWindow)) { 178HtmlWindow.HtmlWindowShim shim = htmlWindowShims[unloadedWindow]; 179htmlWindowShims.Remove(unloadedWindow); 204if (htmlWindowShims != null) { 205foreach (HtmlWindow.HtmlWindowShim shim in htmlWindowShims.Values) {