2 writes to htmlDocumentShims
System.Windows.Forms (2)
winforms\Managed\System\WinForms\HtmlShimManager.cs (2)
39htmlDocumentShims = new Dictionary<HtmlDocument,HtmlDocument.HtmlDocumentShim>(); 210htmlDocumentShims = null;
13 references to htmlDocumentShims
System.Windows.Forms (13)
winforms\Managed\System\WinForms\HtmlShimManager.cs (13)
38if (htmlDocumentShims == null) { 41htmlDocumentShims[doc] = shim; 43else if (!htmlDocumentShims.ContainsKey(doc)) { 45htmlDocumentShims[doc] = shim; 95if (htmlDocumentShims == null) { 98if (htmlDocumentShims.ContainsKey(document)) { 99return htmlDocumentShims[document]; 147if (htmlDocumentShims != null) { 148HtmlDocument.HtmlDocumentShim[] shims = new HtmlDocument.HtmlDocumentShim[htmlDocumentShims.Count]; 149htmlDocumentShims.Values.CopyTo(shims,0); 153htmlDocumentShims.Remove(shim.Document); 198if (htmlDocumentShims != null) { 199foreach (HtmlDocument.HtmlDocumentShim shim in htmlDocumentShims.Values) {