1 write to _htmlElementShims
System.Windows.Forms (1)
System\Windows\Forms\Controls\WebBrowser\HtmlShimManager.cs (1)
85
_htmlElementShims
= [];
12 references to _htmlElementShims
System.Windows.Forms (12)
System\Windows\Forms\Controls\WebBrowser\HtmlShimManager.cs (12)
83
if (
_htmlElementShims
is null)
87
_htmlElementShims
[element] = shim;
89
else if (!
_htmlElementShims
.ContainsKey(element))
92
_htmlElementShims
[element] = shim;
118
if (
_htmlElementShims
is null)
123
if (
_htmlElementShims
.TryGetValue(element, out HtmlElement.HtmlElementShim? elementShim))
189
if (
_htmlElementShims
is not null)
191
HtmlElement.HtmlElementShim[] shims = new HtmlElement.HtmlElementShim[
_htmlElementShims
.Count];
192
_htmlElementShims
.Values.CopyTo(shims, 0);
198
_htmlElementShims
.Remove(shim.Element);
224
if (
_htmlElementShims
is not null)
226
foreach (HtmlElement.HtmlElementShim shim in
_htmlElementShims
.Values)