423 references to IDispatch
System.Private.Windows.Core (38)
Windows.Win32.IDispatch.g.cs (21)
41 return ((delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDispatch*)Unsafe.AsPointer(ref this), riid, ppvObject); 46 return ((delegate *unmanaged [Stdcall]<IDispatch*,uint>)lpVtbl[1])((IDispatch*)Unsafe.AsPointer(ref this)); 51 return ((delegate *unmanaged [Stdcall]<IDispatch*,uint>)lpVtbl[2])((IDispatch*)Unsafe.AsPointer(ref this)); 73 return ((delegate *unmanaged [Stdcall]<IDispatch*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDispatch*)Unsafe.AsPointer(ref this), pctinfo); 89 return ((delegate *unmanaged [Stdcall]<IDispatch*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDispatch*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo); 125 return ((delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDispatch*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId); 169 return ((delegate *unmanaged [Stdcall]<IDispatch*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IDispatch*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); 193 internal delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 195 internal delegate *unmanaged [Stdcall]<IDispatch*,uint> AddRef_2; 197 internal delegate *unmanaged [Stdcall]<IDispatch*,uint> Release_3; 199 internal delegate *unmanaged [Stdcall]<IDispatch*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 201 internal delegate *unmanaged [Stdcall]<IDispatch*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 203 internal delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 205 internal delegate *unmanaged [Stdcall]<IDispatch*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7;
Windows.Win32.PROPVARIANT.g.cs (2)
140 internal unsafe winmdroot.System.Com.IDispatch* pdispVal; 272 internal unsafe winmdroot.System.Com.IDispatch** ppdispVal;
Windows.Win32.VARIANT.g.cs (2)
98 internal unsafe winmdroot.System.Com.IDispatch* pdispVal; 143 internal unsafe winmdroot.System.Com.IDispatch** ppdispVal;
Windows\Win32\Foundation\HRESULT.cs (1)
89/// aren't actually <see cref="IUnknown"/> or <see cref="IDispatch"/> object pointers.
Windows\Win32\System\Com\IDispatch.cs (1)
28fixed (IDispatch* dispatch = &this)
Windows\Win32\System\Com\IDispatch.Interface.cs (11)
11internal unsafe partial struct IDispatch : IVTable<IDispatch, IDispatch.Vtbl> 13static void IVTable<IDispatch, Vtbl>.PopulateVTable(Vtbl* vtable) 22private static HRESULT GetTypeInfoCount(IDispatch* @this, uint* pctinfo) 23=> UnwrapAndInvoke<IDispatch, Interface>(@this, o => o.GetTypeInfoCount(pctinfo)); 26private static HRESULT GetTypeInfo(IDispatch* @this, uint iTInfo, uint lcid, ITypeInfo** ppTInfo) 27=> UnwrapAndInvoke<IDispatch, Interface>(@this, o => o.GetTypeInfo(iTInfo, lcid, ppTInfo)); 30private static HRESULT GetIDsOfNames(IDispatch* @this, Guid* riid, PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 31=> UnwrapAndInvoke<IDispatch, Interface>(@this, o => o.GetIDsOfNames(riid, rgszNames, cNames, lcid, rgDispId)); 35IDispatch* @this, 44=> UnwrapAndInvoke<IDispatch, Interface>(
System.Windows.Forms (77)
System\Windows\Forms\Accessibility\AccessibleObject.cs (22)
52IDispatch.Interface, 55IDispatch, 295private IDispatch* GetSystemAccessibleParent() 300IDispatch* dispatch; 1615IDispatch* dispatch = ComHelpers.TryGetComPointer<IDispatch>(childId); 1834ComScope<IDispatch> child = new(null); 1839HRESULT UIA.IAccessible.Interface.get_accChild(VARIANT varChild, IDispatch** ppdispChild) 2241ComScope<IDispatch> dispatch = new(null); 2247HRESULT UIA.IAccessible.Interface.get_accParent(IDispatch** ppdispParent) 2679private static IDispatch* GetIDispatch(AccessibleObject? obj) 2685return accessible.GetInterface<IDispatch>().Value; 2688return ComHelpers.TryGetComPointer<IDispatch>(obj); 2860private AccessibleObject? TryGetAccessibleObject(IDispatch* dispatch) 3309HRESULT IDispatch.Interface.GetTypeInfoCount(uint* pctinfo) 3310=> ((IDispatch.Interface)_dispatchAdapter).GetTypeInfoCount(pctinfo); 3312HRESULT IDispatch.Interface.GetTypeInfo(uint iTInfo, uint lcid, ITypeInfo** ppTInfo) 3313=> ((IDispatch.Interface)_dispatchAdapter).GetTypeInfo(iTInfo, lcid, ppTInfo); 3315HRESULT IDispatch.Interface.GetIDsOfNames(Guid* riid, PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 3316=> ((IDispatch.Interface)_dispatchAdapter).GetIDsOfNames(riid, rgszNames, cNames, lcid, rgDispId); 3318HRESULT IDispatch.Interface.Invoke( 3327=> ((IDispatch.Interface)_dispatchAdapter).Invoke(dispIdMember, riid, lcid, dwFlags, pDispParams, pVarResult, pExcepInfo, pArgErr);
System\Windows\Forms\ActiveX\AxHost.AxContainer.cs (1)
20IManagedWrapper<IOleContainer, IOleInPlaceFrame, IOleInPlaceUIWindow, IOleWindow, IDispatch, IDispatchEx>
System\Windows\Forms\ActiveX\AxHost.AxContainer.ExtenderProxy.cs (2)
15/// Provides an <see cref="IDispatch"/> and <see cref="IDispatchEx"/> view of <see cref="Control"/> 24IManagedWrapper<IDispatch, IDispatchEx, IExtender, IVBGetControl, IGetVBAObject, IGetOleObject>
System\Windows\Forms\ActiveX\AxHost.cs (2)
3762using ComScope<IDispatch> dispatch = new((IDispatch*)Marshal.GetIDispatchForObject(oleFont));
System\Windows\Forms\ActiveX\AxHost.OleInterfaces.cs (3)
29IManagedWrapper<IDispatch, IDispatchEx, IOleControlSite, IOleClientSite, IOleWindow, IOleInPlaceSite, ISimpleFrameSite, IVBGetControl, IGetVBAObject, IPropertyNotifySink> 146HRESULT IOleControlSite.Interface.GetExtendedControl(IDispatch** ppDisp) 159*ppDisp = ComHelpers.GetComPointer<IDispatch>(proxy);
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (1)
592using var dispatch = _clientSite.TryGetInterface<IDispatch>(out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\Com2AboutBoxPropertyDescriptor.AboutBoxUITypeEditor.cs (1)
19using var dispatch = ComHelpers.TryGetComScope<IDispatch>(context.Instance, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2IDispatchConverter.cs (1)
46using var dispatch = ComHelpers.TryGetComScope<IDispatch>(value, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2IVsPerPropertyBrowsingHandler.cs (2)
97if (typeof(IDispatch.Interface).IsAssignableFrom(sender.PropertyType) && sender.CanShow) 171if (sender.CanShow && typeof(IDispatch.Interface).IsAssignableFrom(sender.PropertyType))
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (7)
140if (CanShow && (propertyType == typeof(object) || (_valueConverter is null && propertyType == typeof(IDispatch.Interface)))) 212using var dispatch = ComHelpers.TryGetComScope<IDispatch>(TargetObject, out HRESULT hr); 281public sealed override Type ComponentType => typeof(IDispatch.Interface); 511localConverter ??= typeof(IDispatch).IsAssignableFrom(PropertyType) 613using var dispatch = ComHelpers.TryGetComScope<IDispatch>(component, out HRESULT hr); 832using var dispatch = ComHelpers.TryGetComScope<IDispatch>(owner, out HRESULT hr); 876if (iSupportErrorInfo.Value->InterfaceSupportsErrorInfo(IID.Get<IDispatch>()).Succeeded)
System\Windows\Forms\ComponentModel\COM2Interop\COM2TypeInfoProcessor.cs (6)
80using var dispatch = ComHelpers.TryGetComScope<IDispatch>(comObject, out HRESULT hr); 142public static int GetNameDispId(IDispatch* dispatch) 192if (!ComHelpers.SupportsInterface<IDispatch>(comObject)) 255using var dispatch = ComHelpers.GetComScope<IDispatch>(comObject); 399IDispatch* dispatch, 891VT_DISPATCH => typeof(IDispatch),
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.ComTypeDescriptor.cs (1)
33using var dispatch = ComHelpers.TryGetComScope<IDispatch>(_instance, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.cs (5)
59using var dispatch = ComHelpers.TryGetComScope<IDispatch>(component, out HRESULT hr); 106internal static string GetName(IDispatch* dispatch) 122internal static HRESULT GetPropertyValue(IDispatch* dispatch, string propertyName, out object? value) 143internal static HRESULT GetPropertyValue(IDispatch* dispatch, int dispid, out object? value) 172using var dispatch = ComHelpers.TryGetComScope<IDispatch>(@object, out HRESULT hr);
System\Windows\Forms\Controls\WebBrowser\HtmlDocument.cs (2)
480using ComScope<IDispatch> dispatch = new(null); 505using ComScope<IDispatch> scriptDispatch = new(null);
System\Windows\Forms\Controls\WebBrowser\HtmlDocument.HtmlDocumentShim.cs (2)
57using var dispatch = ComHelpers.GetComScope<IDispatch>(proxy); 90using var dispatch = ComHelpers.GetComScope<IDispatch>(proxy);
System\Windows\Forms\Controls\WebBrowser\HtmlElement.cs (4)
64using ComScope<IDispatch> dispatch = new(null); 78using ComScope<IDispatch> dispatch = new(null); 121using ComScope<IDispatch> dispatch = new(null); 575using var scriptDispatch = htmlElement.TryQuery<IDispatch>(out HRESULT hr);
System\Windows\Forms\Controls\WebBrowser\HtmlElement.HtmlElementShim.cs (2)
82using var dispatch = ComHelpers.GetComScope<IDispatch>(proxy); 114using var dispatch = ComHelpers.GetComScope<IDispatch>(proxy);
System\Windows\Forms\Controls\WebBrowser\HtmlElementCollection.cs (2)
57using ComScope<IDispatch> dispatch = new(null); 77using ComScope<IDispatch> dispatch = new(null);
System\Windows\Forms\Controls\WebBrowser\HtmlToClrEventProxy.cs (4)
17internal class HtmlToClrEventProxy : UnknownDispatch, IManagedWrapper<IDispatch, IDispatchEx> 125properties = IDispatch.GetMethodFlags(); 128properties = IDispatch.GetPropertyFlags(canRead: true, canWrite: false); 131properties = IDispatch.GetMethodFlags();
System\Windows\Forms\Controls\WebBrowser\HtmlWindow.cs (1)
148using ComScope<IDispatch> dispatch = new(variantDispatch.data.pdispVal);
System\Windows\Forms\Controls\WebBrowser\HtmlWindow.HtmlWindowShim.cs (2)
49using var dispatch = ComHelpers.GetComScope<IDispatch>(proxy); 80using var dispatch = ComHelpers.GetComScope<IDispatch>(proxy);
System\Windows\Forms\Controls\WebBrowser\HtmlWindowCollection.cs (2)
42using ComScope<IDispatch> dispatch = new(variantDispatch.data.pdispVal); 61using ComScope<IDispatch> dispatch = new(variantDispatch.data.pdispVal);
System\Windows\Forms\Controls\WebBrowser\WebBrowser.cs (1)
220using ComScope<IDispatch> dispatch = new(null);
System\Windows\Forms\Controls\WebBrowser\WebBrowserSiteBase.cs (1)
71HRESULT IOleControlSite.Interface.GetExtendedControl(IDispatch** ppDisp)
System.Windows.Forms.Interop.Tests (1)
AccessibleObjectTests.cs (1)
742using var dispatch = ComHelpers.TryGetComScope<IDispatch>(accessible);
System.Windows.Forms.Primitives (271)
Microsoft\VisualStudio\Shell\IProvidePropertyBuilder.cs (4)
73IDispatch* pdispApp, 79return ((delegate* unmanaged[Stdcall]<IProvidePropertyBuilder*, int, BSTR*, IDispatch*, HWND, VARIANT*, VARIANT_BOOL*, HRESULT>)_lpVtbl[4])( 92/// browser and are invoked through <see cref="ExecuteBuilder(int, BSTR*, IDispatch*, HWND, VARIANT*, VARIANT_BOOL*)"/> 140IDispatch* pdispApp,
System\Drawing\ImageExtensions.cs (2)
63IDispatch* dispatch = (IDispatch*)picture;
Windows.Win32.IAccessible.g.cs (10)
122 private static winmdroot.Foundation.HRESULT get_accParent(IAccessible* pThis, winmdroot.System.Com.IDispatch** ppdispParent) 151 public unsafe winmdroot.Foundation.HRESULT get_accParent(winmdroot.System.Com.IDispatch** ppdispParent) 153 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IAccessible*)Unsafe.AsPointer(ref this), ppdispParent); 206 private static winmdroot.Foundation.HRESULT get_accChild(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Com.IDispatch** ppdispChild) 243 public unsafe winmdroot.Foundation.HRESULT get_accChild(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Com.IDispatch** ppdispChild) 245 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IAccessible*)Unsafe.AsPointer(ref this), varChild, ppdispChild); 1169 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_accParent_8; 1173 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_accChild_10; 1256 unsafe winmdroot.Foundation.HRESULT get_accParent(winmdroot.System.Com.IDispatch** ppdispParent); 1262 unsafe winmdroot.Foundation.HRESULT get_accChild(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Com.IDispatch** ppdispChild);
Windows.Win32.IHTMLDocument.g.cs (5)
114 private static winmdroot.Foundation.HRESULT get_Script(IHTMLDocument* pThis, winmdroot.System.Com.IDispatch** p) 131 public unsafe winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p) 133 return ((delegate *unmanaged [Stdcall]<IHTMLDocument*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDocument*)Unsafe.AsPointer(ref this), p); 171 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Script_8; 197 unsafe winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p);
Windows.Win32.IHTMLDocument2.g.cs (10)
114 private static winmdroot.Foundation.HRESULT get_Script(IHTMLDocument2* pThis, winmdroot.System.Com.IDispatch** p) 131 public unsafe winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p) 133 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1634 private static winmdroot.Foundation.HRESULT open(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT features, winmdroot.System.Variant.VARIANT replace, winmdroot.System.Com.IDispatch** pomWindowResult) 1651 public unsafe winmdroot.Foundation.HRESULT open(winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT features, winmdroot.System.Variant.VARIANT replace, winmdroot.System.Com.IDispatch** pomWindowResult) 1653 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLDocument2*)Unsafe.AsPointer(ref this), url, name, features, replace, pomWindowResult); 3189 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Script_8; 3297 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> open_62; 3539 unsafe new winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p); 3735 unsafe winmdroot.Foundation.HRESULT open(winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT features, winmdroot.System.Variant.VARIANT replace, winmdroot.System.Com.IDispatch** pomWindowResult);
Windows.Win32.IHTMLDocument3.g.cs (18)
250 /// <inheritdoc cref="attachEvent(winmdroot.Foundation.BSTR, winmdroot.System.Com.IDispatch*, winmdroot.Foundation.VARIANT_BOOL*)"/> 251 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 263 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 280 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 282 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLDocument3*)Unsafe.AsPointer(ref this), @event, pDisp, pfResult); 288 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 305 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 307 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDocument3*)Unsafe.AsPointer(ref this), @event, pDisp); 1037 private static winmdroot.Foundation.HRESULT get_childNodes(IHTMLDocument3* pThis, winmdroot.System.Com.IDispatch** p) 1055 internal unsafe winmdroot.System.Com.IDispatch* childNodes 1059 winmdroot.System.Com.IDispatch* __result; 1060 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1299 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_13; 1301 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_14; 1355 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_childNodes_41; 1454 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 1457 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp); 1539 unsafe winmdroot.System.Com.IDispatch* childNodes
Windows.Win32.IHTMLDocument4.g.cs (6)
230 private static winmdroot.Foundation.HRESULT get_namespaces(IHTMLDocument4* pThis, winmdroot.System.Com.IDispatch** p) 248 internal unsafe winmdroot.System.Com.IDispatch* namespaces 252 winmdroot.System.Com.IDispatch* __result; 253 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 573 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_namespaces_12; 641 unsafe winmdroot.System.Com.IDispatch* namespaces
Windows.Win32.IHTMLDOMNode.g.cs (12)
203 private static winmdroot.Foundation.HRESULT get_childNodes(IHTMLDOMNode* pThis, winmdroot.System.Com.IDispatch** p) 221 internal unsafe winmdroot.System.Com.IDispatch* childNodes 225 winmdroot.System.Com.IDispatch* __result; 226 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 234 private static winmdroot.Foundation.HRESULT get_attributes(IHTMLDOMNode* pThis, winmdroot.System.Com.IDispatch** p) 252 internal unsafe winmdroot.System.Com.IDispatch* attributes 256 winmdroot.System.Com.IDispatch* __result; 257 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 716 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_childNodes_11; 718 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_attributes_12; 805 unsafe winmdroot.System.Com.IDispatch* childNodes 810 unsafe winmdroot.System.Com.IDispatch* attributes
Windows.Win32.IHTMLElement.g.cs (15)
998 private static winmdroot.Foundation.HRESULT get_document(IHTMLElement* pThis, winmdroot.System.Com.IDispatch** p) 1015 public unsafe winmdroot.Foundation.HRESULT get_document(winmdroot.System.Com.IDispatch** p) 1017 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 2481 private static winmdroot.Foundation.HRESULT get_children(IHTMLElement* pThis, winmdroot.System.Com.IDispatch** p) 2498 public unsafe winmdroot.Foundation.HRESULT get_children(winmdroot.System.Com.IDispatch** p) 2500 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 2506 private static winmdroot.Foundation.HRESULT get_all(IHTMLElement* pThis, winmdroot.System.Com.IDispatch** p) 2523 public unsafe winmdroot.Foundation.HRESULT get_all(winmdroot.System.Com.IDispatch** p) 2525 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 2627 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_document_40; 2733 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_children_93; 2735 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_all_94; 2943 unsafe winmdroot.Foundation.HRESULT get_document(winmdroot.System.Com.IDispatch** p); 3112 unsafe winmdroot.Foundation.HRESULT get_children(winmdroot.System.Com.IDispatch** p); 3115 unsafe winmdroot.Foundation.HRESULT get_all(winmdroot.System.Com.IDispatch** p);
Windows.Win32.IHTMLElement2.g.cs (25)
1772 /// <inheritdoc cref="attachEvent(winmdroot.Foundation.BSTR, winmdroot.System.Com.IDispatch*, winmdroot.Foundation.VARIANT_BOOL*)"/> 1773 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 1785 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLElement2* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 1802 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 1804 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLElement2*)Unsafe.AsPointer(ref this), @event, pDisp, pfResult); 1810 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLElement2* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 1827 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 1829 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLElement2*)Unsafe.AsPointer(ref this), @event, pDisp); 2146 private static winmdroot.Foundation.HRESULT createControlRange(IHTMLElement2* pThis, winmdroot.System.Com.IDispatch** range) 2163 public unsafe winmdroot.System.Com.IDispatch* createControlRange() 2165 winmdroot.System.Com.IDispatch* __retVal = default(winmdroot.System.Com.IDispatch*); 2166 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 2705 private static winmdroot.Foundation.HRESULT get_behaviorUrns(IHTMLElement2* pThis, winmdroot.System.Com.IDispatch** p) 2723 internal unsafe winmdroot.System.Com.IDispatch* behaviorUrns 2727 winmdroot.System.Com.IDispatch* __result; 2728 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[98])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3054 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_67; 3056 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_68; 3080 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> createControlRange_80; 3118 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_behaviorUrns_99; 3434 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 3437 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp); 3475 unsafe winmdroot.Foundation.HRESULT createControlRange(winmdroot.System.Com.IDispatch** range); 3533 unsafe winmdroot.System.Com.IDispatch* behaviorUrns
Windows.Win32.IHTMLElementCollection.g.cs (12)
236 private static winmdroot.Foundation.HRESULT item(IHTMLElementCollection* pThis, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp) 253 public unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp) 255 return ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), name, index, pdisp); 261 private static winmdroot.Foundation.HRESULT tags(IHTMLElementCollection* pThis, winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp) 278 public unsafe winmdroot.System.Com.IDispatch* tags(winmdroot.System.Variant.VARIANT tagName) 280 winmdroot.System.Com.IDispatch* __retVal = default(winmdroot.System.Com.IDispatch*); 281 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), tagName, &__retVal).ThrowOnFailure(); 328 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> item_12; 330 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> tags_13; 377 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp); 380 unsafe winmdroot.Foundation.HRESULT tags(winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp);
Windows.Win32.IHTMLEventObj.g.cs (6)
840 private static winmdroot.Foundation.HRESULT get_srcFilter(IHTMLEventObj* pThis, winmdroot.System.Com.IDispatch** p) 858 internal unsafe winmdroot.System.Com.IDispatch* srcFilter 862 winmdroot.System.Com.IDispatch* __result; 863 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 951 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_srcFilter_32; 1108 unsafe winmdroot.System.Com.IDispatch* srcFilter
Windows.Win32.IHTMLFormElement.g.cs (20)
338 private static winmdroot.Foundation.HRESULT get_elements(IHTMLFormElement* pThis, winmdroot.System.Com.IDispatch** p) 356 internal unsafe winmdroot.System.Com.IDispatch* elements 360 winmdroot.System.Com.IDispatch* __result; 361 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 730 private static winmdroot.Foundation.HRESULT item(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp) 747 public unsafe winmdroot.System.Com.IDispatch* item(winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index) 749 winmdroot.System.Com.IDispatch* __retVal = default(winmdroot.System.Com.IDispatch*); 750 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLFormElement*)Unsafe.AsPointer(ref this), name, index, &__retVal).ThrowOnFailure(); 757 private static winmdroot.Foundation.HRESULT tags(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp) 774 public unsafe winmdroot.System.Com.IDispatch* tags(winmdroot.System.Variant.VARIANT tagName) 776 winmdroot.System.Com.IDispatch* __retVal = default(winmdroot.System.Com.IDispatch*); 777 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLFormElement*)Unsafe.AsPointer(ref this), tagName, &__retVal).ThrowOnFailure(); 832 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_elements_16; 860 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> item_30; 862 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> tags_31; 934 unsafe winmdroot.System.Com.IDispatch* elements 981 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp); 984 unsafe winmdroot.Foundation.HRESULT tags(winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp);
Windows.Win32.IHTMLSelectionObject.g.cs (7)
114 private static winmdroot.Foundation.HRESULT createRange(IHTMLSelectionObject* pThis, winmdroot.System.Com.IDispatch** range) 131 public unsafe winmdroot.System.Com.IDispatch* createRange() 133 winmdroot.System.Com.IDispatch* __retVal = default(winmdroot.System.Com.IDispatch*); 134 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 254 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> createRange_8; 289 unsafe winmdroot.Foundation.HRESULT createRange(winmdroot.System.Com.IDispatch** range);
Windows.Win32.IHTMLWindow2.g.cs (6)
2074 private static winmdroot.Foundation.HRESULT get_external(IHTMLWindow2* pThis, winmdroot.System.Com.IDispatch** p) 2092 internal unsafe winmdroot.System.Com.IDispatch* external 2096 winmdroot.System.Com.IDispatch* __result; 2097 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2275 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_external_77; 2598 unsafe winmdroot.System.Com.IDispatch* external
Windows.Win32.IHTMLWindow3.g.cs (12)
181 /// <inheritdoc cref="attachEvent(winmdroot.Foundation.BSTR, winmdroot.System.Com.IDispatch*, winmdroot.Foundation.VARIANT_BOOL*)"/> 182 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 194 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLWindow3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 211 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 213 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLWindow3*)Unsafe.AsPointer(ref this), @event, pDisp, pfResult); 219 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLWindow3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 236 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 238 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLWindow3*)Unsafe.AsPointer(ref this), @event, pDisp); 568 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_10; 570 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_11; 632 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 635 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp);
Windows.Win32.IHTMLWindow4.g.cs (9)
112 internal unsafe winmdroot.System.Com.IDispatch* createPopup(in winmdroot.System.Variant.VARIANT varArgIn) 116 winmdroot.System.Com.IDispatch* __result = this.createPopup(varArgInLocal); 124 private static winmdroot.Foundation.HRESULT createPopup(IHTMLWindow4* pThis, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Com.IDispatch** ppPopup) 141 public unsafe winmdroot.System.Com.IDispatch* createPopup(winmdroot.System.Variant.VARIANT* varArgIn) 143 winmdroot.System.Com.IDispatch* __retVal = default(winmdroot.System.Com.IDispatch*); 144 ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLWindow4*)Unsafe.AsPointer(ref this), varArgIn, &__retVal).ThrowOnFailure(); 208 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> createPopup_8; 237 unsafe winmdroot.Foundation.HRESULT createPopup(winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Com.IDispatch** ppPopup);
Windows.Win32.IOleControlSite.g.cs (5)
120 private static winmdroot.Foundation.HRESULT GetExtendedControl(IOleControlSite* pThis, winmdroot.System.Com.IDispatch** ppDisp) 148 public unsafe winmdroot.Foundation.HRESULT GetExtendedControl(winmdroot.System.Com.IDispatch** ppDisp) 150 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleControlSite*)Unsafe.AsPointer(ref this), ppDisp); 334 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> GetExtendedControl_6; 381 unsafe winmdroot.Foundation.HRESULT GetExtendedControl(winmdroot.System.Com.IDispatch** ppDisp);
Windows.Win32.IWebBrowser.g.cs (23)
331 private static winmdroot.Foundation.HRESULT get_Application(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 349 internal unsafe winmdroot.System.Com.IDispatch* Application 353 winmdroot.System.Com.IDispatch* __result; 354 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 362 private static winmdroot.Foundation.HRESULT get_Parent(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 380 internal unsafe winmdroot.System.Com.IDispatch* Parent 384 winmdroot.System.Com.IDispatch* __result; 385 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 393 private static winmdroot.Foundation.HRESULT get_Container(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 411 internal unsafe winmdroot.System.Com.IDispatch* Container 415 winmdroot.System.Com.IDispatch* __result; 416 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 424 private static winmdroot.Foundation.HRESULT get_Document(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 441 public unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp) 443 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IWebBrowser*)Unsafe.AsPointer(ref this), ppDisp); 868 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Application_16; 870 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Parent_17; 872 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Container_18; 874 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Document_19; 973 unsafe winmdroot.System.Com.IDispatch* Application 978 unsafe winmdroot.System.Com.IDispatch* Parent 983 unsafe winmdroot.System.Com.IDispatch* Container 989 unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp);
Windows.Win32.IWebBrowser2.g.cs (23)
344 private static winmdroot.Foundation.HRESULT get_Application(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 362 internal unsafe winmdroot.System.Com.IDispatch* Application 366 winmdroot.System.Com.IDispatch* __result; 367 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 375 private static winmdroot.Foundation.HRESULT get_Parent(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 393 internal unsafe winmdroot.System.Com.IDispatch* Parent 397 winmdroot.System.Com.IDispatch* __result; 398 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 406 private static winmdroot.Foundation.HRESULT get_Container(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 424 internal unsafe winmdroot.System.Com.IDispatch* Container 428 winmdroot.System.Com.IDispatch* __result; 429 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 437 private static winmdroot.Foundation.HRESULT get_Document(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 454 public unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp) 456 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IWebBrowser2*)Unsafe.AsPointer(ref this), ppDisp); 2045 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Application_16; 2047 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Parent_17; 2049 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Container_18; 2051 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Document_19; 2268 unsafe new winmdroot.System.Com.IDispatch* Application 2273 unsafe new winmdroot.System.Com.IDispatch* Parent 2278 unsafe new winmdroot.System.Com.IDispatch* Container 2284 unsafe new winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp);
Windows.Win32.IWebBrowserApp.g.cs (23)
331 private static winmdroot.Foundation.HRESULT get_Application(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 349 internal unsafe winmdroot.System.Com.IDispatch* Application 353 winmdroot.System.Com.IDispatch* __result; 354 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 362 private static winmdroot.Foundation.HRESULT get_Parent(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 380 internal unsafe winmdroot.System.Com.IDispatch* Parent 384 winmdroot.System.Com.IDispatch* __result; 385 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 393 private static winmdroot.Foundation.HRESULT get_Container(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 411 internal unsafe winmdroot.System.Com.IDispatch* Container 415 winmdroot.System.Com.IDispatch* __result; 416 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 424 private static winmdroot.Foundation.HRESULT get_Document(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 441 public unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp) 443 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IWebBrowserApp*)Unsafe.AsPointer(ref this), ppDisp); 1449 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Application_16; 1451 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Parent_17; 1453 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Container_18; 1455 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Document_19; 1614 unsafe new winmdroot.System.Com.IDispatch* Application 1619 unsafe new winmdroot.System.Com.IDispatch* Parent 1624 unsafe new winmdroot.System.Com.IDispatch* Container 1630 unsafe new winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp);
Windows.Win32.Web_MsHtml_IHTMLDocument3_Extensions.g.cs (2)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument3.Interface.attachEvent(winmdroot.Foundation.BSTR, winmdroot.System.Com.IDispatch*, winmdroot.Foundation.VARIANT_BOOL*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT attachEvent(this winmdroot.Web.MsHtml.IHTMLDocument3.Interface @this, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult)
Windows.Win32.Web_MsHtml_IHTMLElement2_Extensions.g.cs (2)
93 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement2.Interface.attachEvent(winmdroot.Foundation.BSTR, winmdroot.System.Com.IDispatch*, winmdroot.Foundation.VARIANT_BOOL*)"/> 94 internal static unsafe winmdroot.Foundation.HRESULT attachEvent(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult)
Windows.Win32.Web_MsHtml_IHTMLWindow3_Extensions.g.cs (2)
43 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow3.Interface.attachEvent(winmdroot.Foundation.BSTR, winmdroot.System.Com.IDispatch*, winmdroot.Foundation.VARIANT_BOOL*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT attachEvent(this winmdroot.Web.MsHtml.IHTMLWindow3.Interface @this, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult)
Windows.Win32.Web_MsHtml_IHTMLWindow4_Extensions.g.cs (2)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow4.Interface.createPopup(winmdroot.System.Variant.VARIANT*, winmdroot.System.Com.IDispatch**)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT createPopup(this winmdroot.Web.MsHtml.IHTMLWindow4.Interface @this, in winmdroot.System.Variant.VARIANT varArgIn, winmdroot.System.Com.IDispatch** ppPopup)
Windows\Win32\System\Com\StandardDispatch.cs (7)
10/// Base class for providing <see cref="IDispatch"/> services through a standard dispatch implementation 16/// through to <see cref="ITypeInfo"/> for basic <see cref="IDispatch"/> support. 19internal abstract unsafe class StandardDispatch<T> : IDispatch.Interface, IDispatchEx.Interface, IDisposable 60HRESULT IDispatch.Interface.GetTypeInfoCount(uint* pctinfo) 71HRESULT IDispatch.Interface.GetTypeInfo(uint iTInfo, uint lcid, ITypeInfo** ppTInfo) 89HRESULT IDispatch.Interface.GetIDsOfNames(Guid* riid, PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 100HRESULT IDispatch.Interface.Invoke(
Windows\Win32\System\Com\UnknownDispatch.cs (1)
7/// Base <see cref="IDispatch"/> class for <see cref="IUnknown"/>.
Windows\Win32\System\Ole\ClassPropertyDispatchAdapter.cs (1)
324FDEX_PROP_FLAGS flags = IDispatch.GetPropertyFlags(info.CanRead, info.CanWrite);
Windows\Win32\UI\Accessibility\AccessibleDispatch.cs (1)
9/// Base <see cref="IDispatch"/> class for <see cref="IAccessible"/>.
System.Windows.Forms.Primitives.Tests (23)
Interop\Ole32\IPictureTests.cs (2)
58IDispatch* dispatch = (IDispatch*)picture.Value;
Interop\Oleaut32\ITypeInfoTests.cs (16)
22((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 36((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 50((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 66((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 86((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 106((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 140((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 164((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 178((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 192((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 214((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 231((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 245((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 284((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 297((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo); 326((IDispatch*)iPictureDisp.Value)->GetTypeInfo(0, PInvokeCore.GetThreadLocale(), typeInfo);
Windows\Win32\System\Com\IDispatchTests.cs (1)
68HRESULT hr = ((IDispatch*)picture.Value)->TryGetProperty(
Windows\Win32\UI\Accessibility\AccessibleDispatchTests.cs (4)
17using var dispatch = ComHelpers.GetComScope<IDispatch>(accessibleObject); 25private unsafe class AccessibleTestObject : AccessibleDispatch, IAccessible.Interface, IManagedWrapper<IAccessible, IDispatch, IDispatchEx> 27HRESULT IAccessible.Interface.get_accParent(IDispatch** ppdispParent) => HRESULT.E_NOTIMPL; 34HRESULT IAccessible.Interface.get_accChild(VARIANT varChild, IDispatch** ppdispChild) => HRESULT.E_NOTIMPL;
System.Windows.Forms.Tests (13)
System\Windows\Forms\AxHostTests.cs (2)
1612using var iPictureDisp = ComHelpers.GetComScope<IDispatch>(disp); 1637using var iPictureDisp = ComHelpers.GetComScope<IDispatch>(disp);
System\Windows\Forms\ComponentModel\Com2Interop\COM2FontConverterTests.cs (6)
136private class DispatchStub : IDispatch.Interface, IManagedWrapper<IDispatch> 141HRESULT IDispatch.Interface.GetTypeInfoCount(uint* pctinfo) => throw new NotImplementedException(); 143HRESULT IDispatch.Interface.GetTypeInfo(uint iTInfo, uint lcid, ITypeInfo** ppTInfo) => throw new NotImplementedException(); 145HRESULT IDispatch.Interface.GetIDsOfNames(Guid* riid, PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) => throw new NotImplementedException(); 147HRESULT IDispatch.Interface.Invoke(
System\Windows\Forms\ComponentModel\Com2Interop\ComNativeDescriptorTests.cs (4)
241IManagedWrapper<IAccessible, IDispatch, IProvideMultipleClassInfo> 277return ((IDispatch.Interface)this).GetTypeInfo(iti, 0, pptiCoClass); 305HRESULT IAccessible.Interface.get_accParent(IDispatch** ppdispParent) => HRESULT.E_NOTIMPL; 306HRESULT IAccessible.Interface.get_accChild(VARIANT varChild, IDispatch** ppdispChild) => HRESULT.E_NOTIMPL;
System\Windows\Forms\HtmlToClrEventProxyTest.cs (1)
74using var dispatch = ComHelpers.GetComScope<IDispatch>(proxy);