10 references to QueryInterface
System.Private.Windows.Core (2)
Windows.Win32.IDispatch.g.cs (2)
26
/// <inheritdoc cref="
QueryInterface
(global::System.Guid*, void**)"/>
33
winmdroot.Foundation.HRESULT __result = this.
QueryInterface
(riidLocal, ppvObjectLocal);
System.Windows.Forms (8)
System\Windows\Forms\Accessibility\AccessibleObject.cs (1)
2868
if (dispatch->
QueryInterface
(IID.Get<UIA.IAccessible>(), (void**)&accessible).Failed)
System\Windows\Forms\Controls\WebBrowser\HtmlElement.cs (2)
67
return !dispatch.IsNull && dispatch.Value->
QueryInterface
(IID.Get<IHTMLElementCollection>(), (void**)&htmlElementCollection).Succeeded
81
return !dispatch.IsNull && dispatch.Value->
QueryInterface
(IID.Get<IHTMLElementCollection>(), (void**)&htmlElementCollection).Succeeded
System\Windows\Forms\Controls\WebBrowser\HtmlElementCollection.cs (2)
60
return !dispatch.IsNull && dispatch.Value->
QueryInterface
(IID.Get<IHTMLElement>(), (void**)&htmlElement).Succeeded
80
return !dispatch.IsNull && dispatch.Value->
QueryInterface
(IID.Get<IHTMLElement>(), (void**)&htmlElement).Succeeded
System\Windows\Forms\Controls\WebBrowser\HtmlWindow.cs (1)
150
return !dispatch.IsNull && dispatch.Value->
QueryInterface
(IID.Get<IHTMLWindow2>(), (void**)&htmlWindow2).Succeeded
System\Windows\Forms\Controls\WebBrowser\HtmlWindowCollection.cs (2)
44
return !dispatch.IsNull && dispatch.Value->
QueryInterface
(IID.Get<IHTMLWindow2>(), (void**)&htmlWindow2).Succeeded
64
HRESULT hr = dispatch.Value->
QueryInterface
(IID.Get<IHTMLWindow2>(), (void**)&htmlWindow2);