90 instantiations of BSTR
System.Private.Windows.Core (5)
_generated\10\Windows.Win32.BSTR.g.cs (3)
37 public static explicit operator BSTR(char* value) => new BSTR(value); 54 public static explicit operator BSTR(IntPtr value) => new BSTR((char*)value.ToPointer()); 56 public static explicit operator BSTR(UIntPtr value) => new BSTR((char*)value.ToPointer());
Windows\Win32\System\Com\SafeArrayScope.cs (1)
189using BSTR bstrText = new(s);
Windows\Win32\System\Variant\VARIANT.cs (1)
935data = new() { bstrVal = new(value) }
System.Windows.Forms (82)
System\Windows\Forms\Accessibility\AccessibleObject.cs (28)
235using BSTR set = new(value); 340using BSTR set = new(value); 355internal virtual BSTR GetValueInternal() => SystemIAccessible is null ? new(string.Empty) : SystemIAccessible.TryGetValue(CHILDID_SELF); 1193: new(Name); 1207: new(Value); 1221: new(Description); 1256: new(Help); 1267*pszKeyboardShortcut = new(KeyboardShortcut); 1301*pszDefaultAction = new(DefaultAction); 1380*pRetVal = Value is null ? default : new(Value); 1953: new(DefaultAction); 1963: new(child.DefaultAction); 1993: new(Description); 2003: new(child.Description); 2084: new(Help); 2094: new(child.Help); 2130*pszHelpFile = new(helpFile); 2145*pszHelpFile = new(helpFile); 2169: new(KeyboardShortcut); 2179: new(child.KeyboardShortcut); 2208: new(Name); 2218: new(child.Name); 2230: new(Name); 2413: new(Value); 2423: new(child.Value); 2433((UIA.IAccessible.Interface)this).put_accName(ChildIdToVARIANT(childID), new(newName)); 2473((UIA.IAccessible.Interface)this).put_accValue(ChildIdToVARIANT(childID), new(newValue)); 3041*pRetVal = new BSTR(GetMultiViewProviderViewName(viewId));
System\Windows\Forms\ActiveX\AxHost.AxContainer.ExtenderProxy.cs (2)
261public BSTR Name => new(GetControl() is { } control ? GetNameForControl(control) : string.Empty); 313*pbstrName = new(name);
System\Windows\Forms\ActiveX\AxHost.cs (1)
2284hr = factory.Value->CreateInstanceLic(null, null, IID.Get<IUnknown>(), new BSTR(license), unknown);
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (4)
1091using BSTR bstrSource = new(_control.GetType().FullName!); 1092using BSTR bstrDescription = new(errorString); 1542using VARIANT data = (VARIANT)new BSTR(Convert.ToBase64String( 1571using VARIANT variant = (VARIANT)(new BSTR(value));
System\Windows\Forms\ComponentModel\COM2Interop\COM2FontConverter.cs (1)
115target->Name = new(source.Name);
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyBuilderUITypeEditor.cs (1)
57using BSTR guidString = new(_guidString);
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildTextUiaProvider.cs (1)
73return name.IsNull ? new(string.Empty) : name;
System\Windows\Forms\Controls\WebBrowser\HtmlDocument.cs (10)
111using BSTR newValue = new(value); 134using BSTR newValue = new(value); 319using BSTR newValue = new(value); 336using BSTR newValue = new(value ? "rtl" : "ltr"); 353using BSTR newValue = new(value); 433using BSTR bstrCommand = new(command); 451using BSTR bstrId = new(id); 468using BSTR bstrTagName = new(tagName); 477using BSTR url = new("text/html"); 494using BSTR bstrElementTag = new(elementTag);
System\Windows\Forms\Controls\WebBrowser\HtmlDocument.HtmlDocumentShim.cs (2)
56using BSTR name = new(eventName); 89using BSTR name = new(eventName);
System\Windows\Forms\Controls\WebBrowser\HtmlElement.cs (11)
198using BSTR newValue = new(value); 217using BSTR newValue = new(value); 246using BSTR newValue = new(value); 346using BSTR newValue = new(value); 375using BSTR newValue = new(value); 470using BSTR newValue = new(value); 540using BSTR name = new(attributeName); 551using BSTR name = new(tagName); 560using BSTR where = new(orientation.ToString()); 645using BSTR name = new(eventName); 663using BSTR name = new(attributeName);
System\Windows\Forms\Controls\WebBrowser\HtmlElement.HtmlElementShim.cs (2)
81using BSTR name = new(eventName); 113using BSTR name = new(eventName);
System\Windows\Forms\Controls\WebBrowser\HtmlToClrEventProxy.cs (3)
106*pbstrName = new(OnHtmlEventName); 109*pbstrName = new(EventNameProperty); 112*pbstrName = new(GetEventName);
System\Windows\Forms\Controls\WebBrowser\HtmlWindow.cs (14)
136using BSTR newValue = new(value); 217using BSTR newValue = new(value); 258using BSTR bstrMessage = new(message); 274using BSTR bstrMessage = new(message); 310using BSTR bstrUrl = new(url.ToString()); 321using BSTR url = new(urlString); 332using BSTR url = new(urlString); 333using BSTR bstrTarget = new(target); 334using BSTR options = new(windowOptions); 350using BSTR url = new(urlString); 351using BSTR target = new("_blank"); 352using BSTR options = new(windowOptions); 364using BSTR bstrMessage = new(message); 365using BSTR input = new(defaultInputValue);
System\Windows\Forms\Controls\WebBrowser\HtmlWindow.HtmlWindowShim.cs (2)
48using BSTR name = new(eventName); 79using BSTR name = new(eventName);
System.Windows.Forms.Primitives (3)
System\Windows\Forms\Automation\UiaTextRange.cs (2)
441? new(text[Start..]) 442: new(text.Substring(Start, maxLength));
Windows\Win32\PInvoke.UiaRaiseNotificationEvent.cs (1)
21using BSTR bstrText = displayString is null ? default : new(displayString);
3973 references to BSTR
System.Private.Windows.Core (219)
_generated\10\Windows.Win32.BSTR.g.cs (13)
25 : IEquatable<BSTR> 35 public static implicit operator char*(BSTR value) => value.Value; 37 public static explicit operator BSTR(char* value) => new BSTR(value); 39 public static bool operator ==(BSTR left, BSTR right) => left.Value == right.Value; 41 public static bool operator !=(BSTR left, BSTR right) => !(left == right); 43 public bool Equals(BSTR other) => this.Value == other.Value; 45 public override bool Equals(object obj) => obj is BSTR other && this.Equals(other); 52 public static implicit operator IntPtr(BSTR value) => new IntPtr(value.Value); 54 public static explicit operator BSTR(IntPtr value) => new BSTR((char*)value.ToPointer()); 56 public static explicit operator BSTR(UIntPtr value) => new BSTR((char*)value.ToPointer()); 64 public static unsafe implicit operator ReadOnlySpan<char>(BSTR bstr) => bstr.Value != null ? new ReadOnlySpan<char>(bstr.Value, *((int*)bstr.Value - 1) / 2) : default(ReadOnlySpan<char>);
_generated\130\Windows.Win32.IDispatchEx.g.cs (20)
140 /// <inheritdoc cref="GetDispID(winmdroot.Foundation.BSTR, uint, int*)"/> 142 internal unsafe winmdroot.Foundation.HRESULT GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, out int pid) 154 private static winmdroot.Foundation.HRESULT GetDispID(IDispatchEx* pThis, winmdroot.Foundation.BSTR bstrName, uint grfdex, int* pid) 171 public unsafe winmdroot.Foundation.HRESULT GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, int* pid) 173 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IDispatchEx*)Unsafe.AsPointer(ref this), bstrName, grfdex, pid); 231 private static winmdroot.Foundation.HRESULT DeleteMemberByName(IDispatchEx* pThis, winmdroot.Foundation.BSTR bstrName, uint grfdex) 248 public winmdroot.Foundation.HRESULT DeleteMemberByName(winmdroot.Foundation.BSTR bstrName, uint grfdex) 250 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IDispatchEx*)Unsafe.AsPointer(ref this), bstrName, grfdex); 314 /// <inheritdoc cref="GetMemberName(int, winmdroot.Foundation.BSTR*)"/> 316 internal unsafe winmdroot.Foundation.HRESULT GetMemberName(int id, out winmdroot.Foundation.BSTR pbstrName) 318 fixed (winmdroot.Foundation.BSTR* pbstrNameLocal = &pbstrName) 328 private static winmdroot.Foundation.HRESULT GetMemberName(IDispatchEx* pThis, int id, winmdroot.Foundation.BSTR* pbstrName) 345 public unsafe winmdroot.Foundation.HRESULT GetMemberName(int id, winmdroot.Foundation.BSTR* pbstrName) 347 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IDispatchEx*)Unsafe.AsPointer(ref this), id, pbstrName); 448 internal delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,int* ,winmdroot.Foundation.HRESULT> GetDispID_8; 452 internal delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,winmdroot.Foundation.HRESULT> DeleteMemberByName_10; 458 internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetMemberName_13; 495 unsafe winmdroot.Foundation.HRESULT GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, int* pid); 501winmdroot.Foundation.HRESULT DeleteMemberByName(winmdroot.Foundation.BSTR bstrName, uint grfdex); 510 unsafe winmdroot.Foundation.HRESULT GetMemberName(int id, winmdroot.Foundation.BSTR* pbstrName);
_generated\14\Windows.Win32.CABSTR.g.cs (1)
27 internal unsafe winmdroot.Foundation.BSTR* pElems;
_generated\156\Windows.Win32.IRecordInfo.g.cs (16)
201 /// <inheritdoc cref="GetName(winmdroot.Foundation.BSTR*)"/> 203 internal unsafe winmdroot.Foundation.HRESULT GetName(out winmdroot.Foundation.BSTR pbstrName) 205 fixed (winmdroot.Foundation.BSTR* pbstrNameLocal = &pbstrName) 215 private static winmdroot.Foundation.HRESULT GetName(IRecordInfo* pThis, winmdroot.Foundation.BSTR* pbstrName) 239 public unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pbstrName) 241 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRecordInfo*)Unsafe.AsPointer(ref this), pbstrName); 532 /// <inheritdoc cref="GetFieldNames(uint*, winmdroot.Foundation.BSTR*)"/> 534 internal unsafe winmdroot.Foundation.HRESULT GetFieldNames(ref uint pcNames, Span<winmdroot.Foundation.BSTR> rgBstrNames) 536 fixed (winmdroot.Foundation.BSTR* rgBstrNamesLocal = rgBstrNames) 549 private static winmdroot.Foundation.HRESULT GetFieldNames(IRecordInfo* pThis, uint* pcNames, winmdroot.Foundation.BSTR* rgBstrNames) 580 public unsafe winmdroot.Foundation.HRESULT GetFieldNames(uint* pcNames, winmdroot.Foundation.BSTR* rgBstrNames) 582 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IRecordInfo*)Unsafe.AsPointer(ref this), pcNames, rgBstrNames); 762 internal delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetName_8; 776 internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetFieldNames_15; 837 unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pbstrName); 858 unsafe winmdroot.Foundation.HRESULT GetFieldNames(uint* pcNames, winmdroot.Foundation.BSTR* rgBstrNames);
_generated\163\Windows.Win32.ITypeInfo.g.cs (66)
219 /// <inheritdoc cref="GetNames(int, winmdroot.Foundation.BSTR*, uint, uint*)"/> 220 internal unsafe winmdroot.Foundation.HRESULT GetNames(int memid, Span<winmdroot.Foundation.BSTR> rgBstrNames, out uint pcNames) 224 fixed (winmdroot.Foundation.BSTR* rgBstrNamesLocal = rgBstrNames) 235 private static winmdroot.Foundation.HRESULT GetNames(ITypeInfo* pThis, int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, uint* pcNames) 268 public unsafe winmdroot.Foundation.HRESULT GetNames(int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, uint* pcNames) 270 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, rgBstrNames, cMaxNames, pcNames); 481 /// <inheritdoc cref="GetDocumentation(int, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, uint*, winmdroot.Foundation.BSTR*)"/> 483 internal unsafe winmdroot.Foundation.HRESULT GetDocumentation(int memid, out winmdroot.Foundation.BSTR pBstrName, out winmdroot.Foundation.BSTR pBstrDocString, out uint pdwHelpContext, out winmdroot.Foundation.BSTR pBstrHelpFile) 485 fixed (winmdroot.Foundation.BSTR* pBstrHelpFileLocal = &pBstrHelpFile) 489 fixed (winmdroot.Foundation.BSTR* pBstrDocStringLocal = &pBstrDocString) 491 fixed (winmdroot.Foundation.BSTR* pBstrNameLocal = &pBstrName) 501 /// <inheritdoc cref="GetDocumentation(int, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, uint*, winmdroot.Foundation.BSTR*)"/> 506 winmdroot.Foundation.HRESULT __result = this.GetDocumentation(memid, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pdwHelpContextLocal, default(winmdroot.Foundation.BSTR* )); 514 private static winmdroot.Foundation.HRESULT GetDocumentation(ITypeInfo* pThis, int memid, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile) 547 public unsafe winmdroot.Foundation.HRESULT GetDocumentation(int memid, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile) 549 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, pBstrName, pBstrDocString, pdwHelpContext, pBstrHelpFile); 552 /// <inheritdoc cref="GetDllEntry(int, winmdroot.System.Com.INVOKEKIND, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, ushort*)"/> 554 internal unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, out winmdroot.Foundation.BSTR pBstrDllName, out winmdroot.Foundation.BSTR pBstrName, out ushort pwOrdinal) 558 fixed (winmdroot.Foundation.BSTR* pBstrNameLocal = &pBstrName) 560 fixed (winmdroot.Foundation.BSTR* pBstrDllNameLocal = &pBstrDllName) 569 /// <inheritdoc cref="GetDllEntry(int, winmdroot.System.Com.INVOKEKIND, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, ushort*)"/> 574 winmdroot.Foundation.HRESULT __result = this.GetDllEntry(memid, invKind, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pwOrdinalLocal); 582 private static winmdroot.Foundation.HRESULT GetDllEntry(ITypeInfo* pThis, int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal) 615 public unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal) 617 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,ushort* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, invKind, pBstrDllName, pBstrName, pwOrdinal); 749 /// <inheritdoc cref="GetMops(int, winmdroot.Foundation.BSTR*)"/> 751 internal unsafe winmdroot.Foundation.HRESULT GetMops(int memid, out winmdroot.Foundation.BSTR pBstrMops) 753 fixed (winmdroot.Foundation.BSTR* pBstrMopsLocal = &pBstrMops) 763 private static winmdroot.Foundation.HRESULT GetMops(ITypeInfo* pThis, int memid, winmdroot.Foundation.BSTR* pBstrMops) 792 public unsafe winmdroot.Foundation.HRESULT GetMops(int memid, winmdroot.Foundation.BSTR* pBstrMops) 794 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, pBstrMops); 994 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,uint ,uint* ,winmdroot.Foundation.HRESULT> GetNames_8; 1004 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDocumentation_13; 1006 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,ushort* ,winmdroot.Foundation.HRESULT> GetDllEntry_14; 1014 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetMops_18; 1078 unsafe winmdroot.Foundation.HRESULT GetNames(int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, uint* pcNames); 1093 unsafe winmdroot.Foundation.HRESULT GetDocumentation(int memid, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile); 1096 unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal); 1108 unsafe winmdroot.Foundation.HRESULT GetMops(int memid, winmdroot.Foundation.BSTR* pBstrMops);
_generated\164\Windows.Win32.ITypeLib.g.cs (30)
288 /// <inheritdoc cref="GetDocumentation(int, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, uint*, winmdroot.Foundation.BSTR*)"/> 290 internal unsafe winmdroot.Foundation.HRESULT GetDocumentation(int index, out winmdroot.Foundation.BSTR pBstrName, out winmdroot.Foundation.BSTR pBstrDocString, out uint pdwHelpContext, out winmdroot.Foundation.BSTR pBstrHelpFile) 292 fixed (winmdroot.Foundation.BSTR* pBstrHelpFileLocal = &pBstrHelpFile) 296 fixed (winmdroot.Foundation.BSTR* pBstrDocStringLocal = &pBstrDocString) 298 fixed (winmdroot.Foundation.BSTR* pBstrNameLocal = &pBstrName) 308 /// <inheritdoc cref="GetDocumentation(int, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, uint*, winmdroot.Foundation.BSTR*)"/> 313 winmdroot.Foundation.HRESULT __result = this.GetDocumentation(index, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pdwHelpContextLocal, default(winmdroot.Foundation.BSTR* )); 321 private static winmdroot.Foundation.HRESULT GetDocumentation(ITypeLib* pThis, int index, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile) 349 public unsafe winmdroot.Foundation.HRESULT GetDocumentation(int index, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile) 351 return ((delegate *unmanaged [Stdcall]<ITypeLib*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITypeLib*)Unsafe.AsPointer(ref this), index, pBstrName, pBstrDocString, pdwHelpContext, pBstrHelpFile); 545 internal delegate *unmanaged [Stdcall]<ITypeLib*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDocumentation_10; 604 unsafe winmdroot.Foundation.HRESULT GetDocumentation(int index, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile);
_generated\199\Windows.Win32.PInvokeCore.OLEAUT32.dll.g.cs (1)
32 internal static extern void SysFreeString([Optional] winmdroot.Foundation.BSTR bstrString);
_generated\205\Windows.Win32.PROPVARIANT.g.cs (2)
122 internal winmdroot.Foundation.BSTR bstrVal; 266 internal unsafe winmdroot.Foundation.BSTR* pbstrVal;
_generated\246\Windows.Win32.System_Com_ITypeInfo_Extensions.g.cs (31)
53 /// <inheritdoc cref="winmdroot.System.Com.ITypeInfo.Interface.GetNames(int, winmdroot.Foundation.BSTR*, uint, uint*)"/> 55 internal static unsafe winmdroot.Foundation.HRESULT GetNames(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, Span<winmdroot.Foundation.BSTR> rgBstrNames, out uint pcNames) 59 fixed (winmdroot.Foundation.BSTR* rgBstrNamesLocal = rgBstrNames) 121 /// <inheritdoc cref="winmdroot.System.Com.ITypeInfo.Interface.GetDocumentation(int, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, uint*, winmdroot.Foundation.BSTR*)"/> 122 internal static unsafe winmdroot.Foundation.HRESULT GetDocumentation(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, out winmdroot.Foundation.BSTR pBstrName, out winmdroot.Foundation.BSTR pBstrDocString, out uint pdwHelpContext, out winmdroot.Foundation.BSTR pBstrHelpFile) 124 fixed (winmdroot.Foundation.BSTR* pBstrHelpFileLocal = &pBstrHelpFile) 128 fixed (winmdroot.Foundation.BSTR* pBstrDocStringLocal = &pBstrDocString) 130 fixed (winmdroot.Foundation.BSTR* pBstrNameLocal = &pBstrName) 140 /// <inheritdoc cref="winmdroot.System.Com.ITypeInfo.Interface.GetDocumentation(int, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, uint*, winmdroot.Foundation.BSTR*)"/> 145 winmdroot.Foundation.HRESULT __result = @this.GetDocumentation(memid, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pdwHelpContextLocal, default(winmdroot.Foundation.BSTR* )); 150 /// <inheritdoc cref="winmdroot.System.Com.ITypeInfo.Interface.GetDllEntry(int, winmdroot.System.Com.INVOKEKIND, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, ushort*)"/> 151 internal static unsafe winmdroot.Foundation.HRESULT GetDllEntry(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.System.Com.INVOKEKIND invKind, out winmdroot.Foundation.BSTR pBstrDllName, out winmdroot.Foundation.BSTR pBstrName, out ushort pwOrdinal) 155 fixed (winmdroot.Foundation.BSTR* pBstrNameLocal = &pBstrName) 157 fixed (winmdroot.Foundation.BSTR* pBstrDllNameLocal = &pBstrDllName) 166 /// <inheritdoc cref="winmdroot.System.Com.ITypeInfo.Interface.GetDllEntry(int, winmdroot.System.Com.INVOKEKIND, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, ushort*)"/> 171 winmdroot.Foundation.HRESULT __result = @this.GetDllEntry(memid, invKind, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pwOrdinalLocal); 199 /// <inheritdoc cref="winmdroot.System.Com.ITypeInfo.Interface.GetMops(int, winmdroot.Foundation.BSTR*)"/> 200 internal static unsafe winmdroot.Foundation.HRESULT GetMops(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, out winmdroot.Foundation.BSTR pBstrMops) 202 fixed (winmdroot.Foundation.BSTR* pBstrMopsLocal = &pBstrMops)
_generated\247\Windows.Win32.System_Com_ITypeLib_Extensions.g.cs (15)
53 /// <inheritdoc cref="winmdroot.System.Com.ITypeLib.Interface.GetDocumentation(int, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, uint*, winmdroot.Foundation.BSTR*)"/> 54 internal static unsafe winmdroot.Foundation.HRESULT GetDocumentation(this winmdroot.System.Com.ITypeLib.Interface @this, int index, out winmdroot.Foundation.BSTR pBstrName, out winmdroot.Foundation.BSTR pBstrDocString, out uint pdwHelpContext, out winmdroot.Foundation.BSTR pBstrHelpFile) 56 fixed (winmdroot.Foundation.BSTR* pBstrHelpFileLocal = &pBstrHelpFile) 60 fixed (winmdroot.Foundation.BSTR* pBstrDocStringLocal = &pBstrDocString) 62 fixed (winmdroot.Foundation.BSTR* pBstrNameLocal = &pBstrName) 72 /// <inheritdoc cref="winmdroot.System.Com.ITypeLib.Interface.GetDocumentation(int, winmdroot.Foundation.BSTR*, winmdroot.Foundation.BSTR*, uint*, winmdroot.Foundation.BSTR*)"/> 77 winmdroot.Foundation.HRESULT __result = @this.GetDocumentation(index, default(winmdroot.Foundation.BSTR* ), default(winmdroot.Foundation.BSTR* ), pdwHelpContextLocal, default(winmdroot.Foundation.BSTR* ));
_generated\251\Windows.Win32.System_Ole_IDispatchEx_Extensions.g.cs (5)
23 /// <inheritdoc cref="winmdroot.System.Ole.IDispatchEx.Interface.GetDispID(winmdroot.Foundation.BSTR, uint, int*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT GetDispID(this winmdroot.System.Ole.IDispatchEx.Interface @this, winmdroot.Foundation.BSTR bstrName, uint grfdex, out int pid) 69 /// <inheritdoc cref="winmdroot.System.Ole.IDispatchEx.Interface.GetMemberName(int, winmdroot.Foundation.BSTR*)"/> 70 internal static unsafe winmdroot.Foundation.HRESULT GetMemberName(this winmdroot.System.Ole.IDispatchEx.Interface @this, int id, out winmdroot.Foundation.BSTR pbstrName) 72 fixed (winmdroot.Foundation.BSTR* pbstrNameLocal = &pbstrName)
_generated\254\Windows.Win32.System_Ole_IRecordInfo_Extensions.g.cs (6)
33 /// <inheritdoc cref="winmdroot.System.Ole.IRecordInfo.Interface.GetName(winmdroot.Foundation.BSTR*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT GetName(this winmdroot.System.Ole.IRecordInfo.Interface @this, out winmdroot.Foundation.BSTR pbstrName) 36 fixed (winmdroot.Foundation.BSTR* pbstrNameLocal = &pbstrName) 108 /// <inheritdoc cref="winmdroot.System.Ole.IRecordInfo.Interface.GetFieldNames(uint*, winmdroot.Foundation.BSTR*)"/> 109 internal static unsafe winmdroot.Foundation.HRESULT GetFieldNames(this winmdroot.System.Ole.IRecordInfo.Interface @this, ref uint pcNames, Span<winmdroot.Foundation.BSTR> rgBstrNames) 111 fixed (winmdroot.Foundation.BSTR* rgBstrNamesLocal = rgBstrNames)
_generated\272\Windows.Win32.VARIANT.g.cs (2)
92 internal winmdroot.Foundation.BSTR bstrVal; 137 internal unsafe winmdroot.Foundation.BSTR* pbstrVal;
_generated\69\Windows.Win32.EXCEPINFO.g.cs (3)
37 internal winmdroot.Foundation.BSTR bstrSource; 40 internal winmdroot.Foundation.BSTR bstrDescription; 43 internal winmdroot.Foundation.BSTR bstrHelpFile;
Windows\Win32\Foundation\BSTR.cs (2)
24/// Converts the <see cref="BSTR"/> to string and frees it. 34/// Converts the <see cref="BSTR"/> to a nullable string and frees it.
Windows\Win32\System\Com\SafeArrayScope.cs (3)
155using BSTR result = GetElement<BSTR>(i); 189using BSTR bstrText = new(s);
Windows\Win32\System\Variant\VARIANT.cs (3)
926public static explicit operator BSTR(VARIANT value) 927=> value.vt == VT_BSTR ? value.data.bstrVal : ThrowInvalidCast<BSTR>(); 939public static explicit operator VARIANT(BSTR value)
System.Windows.Forms (178)
System\Windows\Forms\Accessibility\AccessibleObject.cs (43)
163internal virtual BSTR GetDefaultActionInternal() => SystemIAccessible.TryGetDefaultAction(CHILDID_SELF); 183internal virtual BSTR GetDescriptionInternal() => SystemIAccessible.TryGetDescription(CHILDID_SELF); 205internal virtual BSTR GetHelpInternal() => SystemIAccessible.TryGetHelp(CHILDID_SELF); 225internal virtual BSTR GetKeyboardShortcutInternal(VARIANT childID) => SystemIAccessible.TryGetKeyboardShortcut(childID); 235using BSTR set = new(value); 253internal virtual BSTR GetNameInternal() => SystemIAccessible.TryGetName(CHILDID_SELF); 256/// Determines if <see cref="SetNameInternal(BSTR)"/> can be called without calling <see cref="Name"/> 268internal virtual void SetNameInternal(BSTR value) => SystemIAccessible.TrySetName(CHILDID_SELF, value); 340using BSTR set = new(value); 355internal virtual BSTR GetValueInternal() => SystemIAccessible is null ? new(string.Empty) : SystemIAccessible.TryGetValue(CHILDID_SELF); 358/// Determines if <see cref="SetValueInternal(BSTR)"/> can be called without calling <see cref="Value"/> 370internal virtual void SetValueInternal(BSTR value) => SystemIAccessible.TrySetValue(CHILDID_SELF, value); 470(int topic, BSTR file) = SystemIAccessible.TryGetHelpTopic(CHILDID_SELF); 488internal virtual (int topic, BSTR helpFile) GetHelpTopicInternal() => SystemIAccessible.TryGetHelpTopic(CHILDID_SELF); 1184HRESULT ILegacyIAccessibleProvider.Interface.get_Name(BSTR* pszName) 1197HRESULT ILegacyIAccessibleProvider.Interface.get_Value(BSTR* pszValue) 1212HRESULT ILegacyIAccessibleProvider.Interface.get_Description(BSTR* pszDescription) 1247HRESULT ILegacyIAccessibleProvider.Interface.get_Help(BSTR* pszHelp) 1260HRESULT ILegacyIAccessibleProvider.Interface.get_KeyboardShortcut(BSTR* pszKeyboardShortcut) 1294HRESULT ILegacyIAccessibleProvider.Interface.get_DefaultAction(BSTR* pszDefaultAction) 1373HRESULT IValueProvider.Interface.get_Value(BSTR* pRetVal) 1934using BSTR result = default; 1939HRESULT UIA.IAccessible.Interface.get_accDefaultAction(VARIANT varChild, BSTR* pszDefaultAction) 1974using BSTR description = default; 1979HRESULT UIA.IAccessible.Interface.get_accDescription(VARIANT varChild, BSTR* pszDescription) 2066using BSTR result = default; 2071HRESULT UIA.IAccessible.Interface.get_accHelp(VARIANT varChild, BSTR* pszHelp) 2105using BSTR helpFile = default; 2112HRESULT UIA.IAccessible.Interface.get_accHelpTopic(BSTR* pszHelpFile, VARIANT varChild, int* pidTopic) 2156using BSTR shortcut = default; 2161HRESULT UIA.IAccessible.Interface.get_accKeyboardShortcut(VARIANT varChild, BSTR* pszKeyboardShortcut) 2190using BSTR name = default; 2195HRESULT UIA.IAccessible.Interface.get_accName(VARIANT varChild, BSTR* pszName) 2223BSTR systemName = SystemIAccessible.TryGetName(varChild); 2394using BSTR value = default; 2399HRESULT UIA.IAccessible.Interface.get_accValue(VARIANT varChild, BSTR* pszValue) 2435HRESULT UIA.IAccessible.Interface.put_accName(VARIANT varChild, BSTR szName) 2475HRESULT UIA.IAccessible.Interface.put_accValue(VARIANT varChild, BSTR szValue) 2782/// Called prior to calling <see cref="UIA.IAccessible.get_accName(VARIANT, BSTR*)"/> on the 'inner' system 3034HRESULT IMultipleViewProvider.Interface.GetViewName(int viewId, BSTR* pRetVal) 3329HRESULT IDispatchEx.Interface.GetDispID(BSTR bstrName, uint grfdex, int* pid) 3342HRESULT IDispatchEx.Interface.DeleteMemberByName(BSTR bstrName, uint grfdex) 3351HRESULT IDispatchEx.Interface.GetMemberName(int id, BSTR* pbstrName)
System\Windows\Forms\Accessibility\AccessibleObjectExtensions.cs (21)
48public static BSTR TryGetDefaultAction(this AgileComPointer<IAccessible>? agile, int child) 51public static BSTR TryGetDefaultAction(this AgileComPointer<IAccessible>? agile, VARIANT child) 59BSTR bstr = default; 82public static BSTR TryGetDescription(this AgileComPointer<IAccessible>? agile, int child) => 85public static BSTR TryGetDescription(this AgileComPointer<IAccessible>? agile, VARIANT child) 93BSTR description = default; 102public static BSTR TryGetHelp(this AgileComPointer<IAccessible>? agile, int child) 105public static BSTR TryGetHelp(this AgileComPointer<IAccessible>? agile, VARIANT child) 113BSTR bstr = default; 122public static BSTR TryGetKeyboardShortcut(this AgileComPointer<IAccessible>? agile, int child) 125public static BSTR TryGetKeyboardShortcut(this AgileComPointer<IAccessible>? agile, VARIANT child) 133BSTR bstr = default; 142public static BSTR TryGetName(this AgileComPointer<IAccessible>? agile, int child) 145public static BSTR TryGetName(this AgileComPointer<IAccessible>? agile, VARIANT child) 153BSTR bstr = default; 160public static void TrySetName(this AgileComPointer<IAccessible>? agile, VARIANT child, BSTR name) 221public static BSTR TryGetValue(this AgileComPointer<IAccessible>? agile, VARIANT child) 229BSTR bstr = default; 238public static void TrySetValue(this AgileComPointer<IAccessible>? agile, VARIANT child, BSTR value) 258public static (int topic, BSTR helpFile) TryGetHelpTopic(this AgileComPointer<IAccessible>? agile, VARIANT child) 266BSTR file = default;
System\Windows\Forms\ActiveX\AxHost.AxContainer.ExtenderProxy.cs (3)
261public BSTR Name => new(GetControl() is { } control ? GetNameForControl(control) : string.Empty); 297protected override HRESULT GetDispID(BSTR bstrName, uint grfdex, int* pid) 309protected override HRESULT GetMemberName(int id, BSTR* pbstrName)
System\Windows\Forms\ActiveX\AxHost.cs (4)
2245using BSTR key = default; 2365using BSTR name = default; 3790using BSTR name = (BSTR)dispatch.Value->GetProperty(PInvokeCore.DISPID_FONT_NAME);
System\Windows\Forms\ActiveX\AxHost.VBFormat.cs (2)
16BSTR bstrFormat, 35using BSTR pbstr = default;
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (2)
1091using BSTR bstrSource = new(_control.GetType().FullName!); 1092using BSTR bstrDescription = new(errorString);
System\Windows\Forms\ComponentModel\COM2Interop\COM2ICategorizePropertiesHandler.cs (1)
49using BSTR categoryName = default;
System\Windows\Forms\ComponentModel\COM2Interop\COM2IManagedPerPropertyBrowsingHandler.cs (2)
50BSTR* nativeTypeNames; 197private static string[] GetStringsFromPtr(BSTR* values, uint count)
System\Windows\Forms\ComponentModel\COM2Interop\COM2IPerPropertyBrowsingHandler.cs (1)
44using BSTR value = default;
System\Windows\Forms\ComponentModel\COM2Interop\COM2IProvidePropertyBuilderHandler.cs (1)
22using BSTR guid = default;
System\Windows\Forms\ComponentModel\COM2Interop\COM2IVsPerPropertyBrowsingHandler.cs (2)
63using BSTR helpString = default; 135using BSTR name = default;
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyBuilderUITypeEditor.cs (1)
57using BSTR guidString = new(_guidString);
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (1)
883using BSTR description = default;
System\Windows\Forms\ComponentModel\COM2Interop\COM2TypeInfoProcessor.cs (6)
490using BSTR nameBstr = default; 491using BSTR helpStringBstr = default; 711using BSTR enumNameBstr = default; 712using BSTR enumHelpStringBstr = default; 736using BSTR nameBstr = default; 737using BSTR helpBstr = default;
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.cs (2)
76using BSTR className = default; 89using BSTR typeInfoName = default;
System\Windows\Forms\Controls\ComboBox\ComboBox.ChildAccessibleObject.cs (1)
26internal override BSTR GetNameInternal() => _owner.AccessibilityObject.GetNameInternal();
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildDropDownButtonUiaProvider.cs (3)
50internal override BSTR GetDefaultActionInternal() => SystemIAccessible.TryGetDefaultAction(GetChildId()); 88internal override BSTR GetHelpInternal() => SystemIAccessible.TryGetHelp(GetChildId()); 92internal override BSTR GetKeyboardShortcutInternal(VARIANT childID) => SystemIAccessible.TryGetKeyboardShortcut(childID);
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildTextUiaProvider.cs (2)
70internal override BSTR GetNameInternal() 72BSTR name = _owner.AccessibilityObject.GetNameInternal();
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxItemAccessibleObject.cs (2)
61internal override BSTR GetDefaultActionInternal() => 127internal override BSTR GetHelpInternal() => _owningComboBox.ChildListAccessibleObject.SystemIAccessible.TryGetHelp(GetChildId());
System\Windows\Forms\Controls\ListBoxes\ListBox.ItemAccessibleObject.cs (2)
85internal override BSTR GetDefaultActionInternal() => 90internal override BSTR GetHelpInternal() => _owningAccessibleObject.SystemIAccessible.TryGetHelp(GetChildId());
System\Windows\Forms\Controls\PropertyGrid\PropertyGridToolStrip.PropertyGridToolStripAccessibleObject.cs (1)
72internal override BSTR GetNameInternal()
System\Windows\Forms\Controls\TabControl\TabPage.TabAccessibleObject.cs (3)
49internal override BSTR GetDefaultActionInternal() => SystemIAccessibleInternal.TryGetDefaultAction(GetChildId()); 112internal override BSTR GetHelpInternal() => SystemIAccessibleInternal.TryGetHelp(GetChildId()); 116internal override BSTR GetKeyboardShortcutInternal(VARIANT childID) => SystemIAccessibleInternal.TryGetKeyboardShortcut(childID);
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.ToolStripDropDownAccessibleObject.cs (1)
52internal override BSTR GetNameInternal()
System\Windows\Forms\Controls\TrackBar\TrackBar.TrackBarChildAccessibleObject.cs (1)
39internal override BSTR GetHelpInternal()
System\Windows\Forms\Controls\UpDown\UpDownBase.UpDownEdit.UpDownEditAccessibleObject.cs (2)
36internal override void SetNameInternal(BSTR value) => _parent.AccessibilityObject.SetNameInternal(value); 42internal override BSTR GetKeyboardShortcutInternal(VARIANT childID) => _parent.AccessibilityObject.GetKeyboardShortcutInternal(childID);
System\Windows\Forms\Controls\WebBrowser\HtmlDocument.cs (17)
102using BSTR domain = default; 111using BSTR newValue = new(value); 127using BSTR title = default; 134using BSTR newValue = new(value); 151using BSTR href = default; 312using BSTR cookie = default; 319using BSTR newValue = new(value); 329using BSTR dir = default; 336using BSTR newValue = new(value ? "rtl" : "ltr"); 346using BSTR charset = default; 353using BSTR newValue = new(value); 363using BSTR charset = default; 433using BSTR bstrCommand = new(command); 451using BSTR bstrId = new(id); 468using BSTR bstrTagName = new(tagName); 477using BSTR url = new("text/html"); 494using BSTR bstrElementTag = new(elementTag);
System\Windows\Forms\Controls\WebBrowser\HtmlDocument.HtmlDocumentShim.cs (2)
56using BSTR name = new(eventName); 89using BSTR name = new(eventName);
System\Windows\Forms\Controls\WebBrowser\HtmlElement.cs (18)
191using BSTR id = default; 198using BSTR newValue = new(value); 208using BSTR innerHtml = default; 217using BSTR newValue = new(value); 237using BSTR innerText = default; 246using BSTR newValue = new(value); 337using BSTR outerHtml = default; 346using BSTR newValue = new(value); 366using BSTR outerText = default; 375using BSTR newValue = new(value); 461using BSTR cssText = default; 470using BSTR newValue = new(value); 480using BSTR tagName = default; 540using BSTR name = new(attributeName); 551using BSTR name = new(tagName); 560using BSTR where = new(orientation.ToString()); 645using BSTR name = new(eventName); 663using BSTR name = new(attributeName);
System\Windows\Forms\Controls\WebBrowser\HtmlElement.HtmlElementShim.cs (2)
81using BSTR name = new(eventName); 113using BSTR name = new(eventName);
System\Windows\Forms\Controls\WebBrowser\HtmlToClrEventProxy.cs (2)
48protected override unsafe HRESULT GetDispID(BSTR bstrName, uint grfdex, int* pid) 96protected override unsafe HRESULT GetMemberName(int id, BSTR* pbstrName)
System\Windows\Forms\Controls\WebBrowser\HtmlWindow.cs (17)
129using BSTR name = default; 136using BSTR newValue = new(value); 210using BSTR status = default; 217using BSTR newValue = new(value); 234using BSTR href = default; 258using BSTR bstrMessage = new(message); 274using BSTR bstrMessage = new(message); 310using BSTR bstrUrl = new(url.ToString()); 321using BSTR url = new(urlString); 332using BSTR url = new(urlString); 333using BSTR bstrTarget = new(target); 334using BSTR options = new(windowOptions); 350using BSTR url = new(urlString); 351using BSTR target = new("_blank"); 352using BSTR options = new(windowOptions); 364using BSTR bstrMessage = new(message); 365using BSTR input = new(defaultInputValue);
System\Windows\Forms\Controls\WebBrowser\HtmlWindow.HtmlWindowShim.cs (2)
48using BSTR name = new(eventName); 79using BSTR name = new(eventName);
System\Windows\Forms\Controls\WebBrowser\WebBrowser.cs (5)
232using BSTR href = default; 349using BSTR locationName = default; 357using BSTR title = default; 382using BSTR mimeType = default; 568using BSTR url = default;
System\Windows\Forms\Scrolling\ScrollBar.ScrollBarChildAccessibleObject.cs (3)
41internal override BSTR GetDefaultActionInternal() => 46internal override unsafe BSTR GetDescriptionInternal() => 51internal override BSTR GetNameInternal() => ParentInternal.SystemIAccessible.TryGetName(GetChildId());
System.Windows.Forms.Primitives (3576)
_generated\106\Windows.Win32.IAccessible.g.cs (66)
274 /// <inheritdoc cref="get_accName(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 276 internal unsafe winmdroot.Foundation.HRESULT get_accName(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszName) 278 fixed (winmdroot.Foundation.BSTR* pszNameLocal = &pszName) 288 private static winmdroot.Foundation.HRESULT get_accName(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszName) 325 public unsafe winmdroot.Foundation.HRESULT get_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszName) 327 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszName); 330 /// <inheritdoc cref="get_accValue(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 332 internal unsafe winmdroot.Foundation.HRESULT get_accValue(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszValue) 334 fixed (winmdroot.Foundation.BSTR* pszValueLocal = &pszValue) 344 private static winmdroot.Foundation.HRESULT get_accValue(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszValue) 378 public unsafe winmdroot.Foundation.HRESULT get_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszValue) 380 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszValue); 383 /// <inheritdoc cref="get_accDescription(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 385 internal unsafe winmdroot.Foundation.HRESULT get_accDescription(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszDescription) 387 fixed (winmdroot.Foundation.BSTR* pszDescriptionLocal = &pszDescription) 397 private static winmdroot.Foundation.HRESULT get_accDescription(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDescription) 434 public unsafe winmdroot.Foundation.HRESULT get_accDescription(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDescription) 436 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszDescription); 551 /// <inheritdoc cref="get_accHelp(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 553 internal unsafe winmdroot.Foundation.HRESULT get_accHelp(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszHelp) 555 fixed (winmdroot.Foundation.BSTR* pszHelpLocal = &pszHelp) 565 private static winmdroot.Foundation.HRESULT get_accHelp(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszHelp) 601 public unsafe winmdroot.Foundation.HRESULT get_accHelp(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszHelp) 603 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszHelp); 606 /// <inheritdoc cref="get_accHelpTopic(winmdroot.Foundation.BSTR*, winmdroot.System.Variant.VARIANT, int*)"/> 608 internal unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(out winmdroot.Foundation.BSTR pszHelpFile, winmdroot.System.Variant.VARIANT varChild, out int pidTopic) 612 fixed (winmdroot.Foundation.BSTR* pszHelpFileLocal = &pszHelpFile) 623 private static winmdroot.Foundation.HRESULT get_accHelpTopic(IAccessible* pThis, winmdroot.Foundation.BSTR* pszHelpFile, winmdroot.System.Variant.VARIANT varChild, int* pidTopic) 661 public unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(winmdroot.Foundation.BSTR* pszHelpFile, winmdroot.System.Variant.VARIANT varChild, int* pidTopic) 663 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.Foundation.BSTR* ,winmdroot.System.Variant.VARIANT ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IAccessible*)Unsafe.AsPointer(ref this), pszHelpFile, varChild, pidTopic); 666 /// <inheritdoc cref="get_accKeyboardShortcut(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 668 internal unsafe winmdroot.Foundation.HRESULT get_accKeyboardShortcut(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszKeyboardShortcut) 670 fixed (winmdroot.Foundation.BSTR* pszKeyboardShortcutLocal = &pszKeyboardShortcut) 680 private static winmdroot.Foundation.HRESULT get_accKeyboardShortcut(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszKeyboardShortcut) 718 public unsafe winmdroot.Foundation.HRESULT get_accKeyboardShortcut(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszKeyboardShortcut) 720 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszKeyboardShortcut); 828 /// <inheritdoc cref="get_accDefaultAction(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 830 internal unsafe winmdroot.Foundation.HRESULT get_accDefaultAction(winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszDefaultAction) 832 fixed (winmdroot.Foundation.BSTR* pszDefaultActionLocal = &pszDefaultAction) 842 private static winmdroot.Foundation.HRESULT get_accDefaultAction(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDefaultAction) 879 public unsafe winmdroot.Foundation.HRESULT get_accDefaultAction(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDefaultAction) 881 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszDefaultAction); 1169 private static winmdroot.Foundation.HRESULT put_accName(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szName) 1193 public winmdroot.Foundation.HRESULT put_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szName) 1195 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IAccessible*)Unsafe.AsPointer(ref this), varChild, szName); 1201 private static winmdroot.Foundation.HRESULT put_accValue(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szValue) 1232 public winmdroot.Foundation.HRESULT put_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szValue) 1234 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IAccessible*)Unsafe.AsPointer(ref this), varChild, szValue); 1280 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accName_11; 1282 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accValue_12; 1284 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accDescription_13; 1290 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accHelp_16; 1292 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.Foundation.BSTR* ,winmdroot.System.Variant.VARIANT ,int* ,winmdroot.Foundation.HRESULT> get_accHelpTopic_17; 1294 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accKeyboardShortcut_18; 1300 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accDefaultAction_21; 1312 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_accName_27; 1314 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_accValue_28; 1370 unsafe winmdroot.Foundation.HRESULT get_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszName); 1373 unsafe winmdroot.Foundation.HRESULT get_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszValue); 1376 unsafe winmdroot.Foundation.HRESULT get_accDescription(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDescription); 1385 unsafe winmdroot.Foundation.HRESULT get_accHelp(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszHelp); 1388 unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(winmdroot.Foundation.BSTR* pszHelpFile, winmdroot.System.Variant.VARIANT varChild, int* pidTopic); 1391 unsafe winmdroot.Foundation.HRESULT get_accKeyboardShortcut(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszKeyboardShortcut); 1400 unsafe winmdroot.Foundation.HRESULT get_accDefaultAction(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDefaultAction); 1418winmdroot.Foundation.HRESULT put_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szName); 1421winmdroot.Foundation.HRESULT put_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szValue);
_generated\115\Windows.Win32.IClassFactory2.g.cs (15)
167 /// <inheritdoc cref="RequestLicKey(uint, winmdroot.Foundation.BSTR*)"/> 169 internal unsafe winmdroot.Foundation.HRESULT RequestLicKey(uint dwReserved, out winmdroot.Foundation.BSTR pBstrKey) 171 fixed (winmdroot.Foundation.BSTR* pBstrKeyLocal = &pBstrKey) 181 private static winmdroot.Foundation.HRESULT RequestLicKey(IClassFactory2* pThis, uint dwReserved, winmdroot.Foundation.BSTR* pBstrKey) 209 public unsafe winmdroot.Foundation.HRESULT RequestLicKey(uint dwReserved, winmdroot.Foundation.BSTR* pBstrKey) 211 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,uint ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IClassFactory2*)Unsafe.AsPointer(ref this), dwReserved, pBstrKey); 214 /// <inheritdoc cref="CreateInstanceLic(winmdroot.System.Com.IUnknown*, winmdroot.System.Com.IUnknown*, global::System.Guid*, winmdroot.Foundation.BSTR, void**)"/> 215 internal unsafe winmdroot.Foundation.HRESULT CreateInstanceLic([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, winmdroot.Foundation.BSTR bstrKey, out void* ppvObj) 230 private static winmdroot.Foundation.HRESULT CreateInstanceLic(IClassFactory2* pThis, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, [Optional] winmdroot.System.Com.IUnknown* pUnkReserved, global::System.Guid* riid, winmdroot.Foundation.BSTR bstrKey, void** ppvObj) 261 public unsafe winmdroot.Foundation.HRESULT CreateInstanceLic([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, [Optional] winmdroot.System.Com.IUnknown* pUnkReserved, global::System.Guid* riid, winmdroot.Foundation.BSTR bstrKey, void** ppvObj) 263 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.System.Com.IUnknown* ,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,winmdroot.Foundation.BSTR ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IClassFactory2*)Unsafe.AsPointer(ref this), pUnkOuter, pUnkReserved, riid, bstrKey, ppvObj); 301 internal delegate *unmanaged [Stdcall]<IClassFactory2*,uint ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> RequestLicKey_7; 303 internal delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.System.Com.IUnknown* ,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,winmdroot.Foundation.BSTR ,void** ,winmdroot.Foundation.HRESULT> CreateInstanceLic_8; 343 unsafe winmdroot.Foundation.HRESULT RequestLicKey(uint dwReserved, winmdroot.Foundation.BSTR* pBstrKey); 346 unsafe winmdroot.Foundation.HRESULT CreateInstanceLic([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, [Optional] winmdroot.System.Com.IUnknown* pUnkReserved, global::System.Guid* riid, winmdroot.Foundation.BSTR bstrKey, void** ppvObj);
_generated\126\Windows.Win32.IErrorInfo.g.cs (24)
99 /// <inheritdoc cref="GetSource(winmdroot.Foundation.BSTR*)"/> 101 internal unsafe void GetSource(out winmdroot.Foundation.BSTR pBstrSource) 103 fixed (winmdroot.Foundation.BSTR* pBstrSourceLocal = &pBstrSource) 112 private static winmdroot.Foundation.HRESULT GetSource(IErrorInfo* pThis, winmdroot.Foundation.BSTR* pBstrSource) 133 public unsafe void GetSource(winmdroot.Foundation.BSTR* pBstrSource) 135 ((delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IErrorInfo*)Unsafe.AsPointer(ref this), pBstrSource).ThrowOnFailure(); 138 /// <inheritdoc cref="GetDescription(winmdroot.Foundation.BSTR*)"/> 140 internal unsafe winmdroot.Foundation.HRESULT GetDescription(out winmdroot.Foundation.BSTR pBstrDescription) 142 fixed (winmdroot.Foundation.BSTR* pBstrDescriptionLocal = &pBstrDescription) 152 private static winmdroot.Foundation.HRESULT GetDescription(IErrorInfo* pThis, winmdroot.Foundation.BSTR* pBstrDescription) 173 public unsafe winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstrDescription) 175 return ((delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IErrorInfo*)Unsafe.AsPointer(ref this), pBstrDescription); 178 /// <inheritdoc cref="GetHelpFile(winmdroot.Foundation.BSTR*)"/> 180 internal unsafe void GetHelpFile(out winmdroot.Foundation.BSTR pBstrHelpFile) 182 fixed (winmdroot.Foundation.BSTR* pBstrHelpFileLocal = &pBstrHelpFile) 191 private static winmdroot.Foundation.HRESULT GetHelpFile(IErrorInfo* pThis, winmdroot.Foundation.BSTR* pBstrHelpFile) 212 public unsafe void GetHelpFile(winmdroot.Foundation.BSTR* pBstrHelpFile) 214 ((delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IErrorInfo*)Unsafe.AsPointer(ref this), pBstrHelpFile).ThrowOnFailure(); 287 internal delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetSource_5; 289 internal delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDescription_6; 291 internal delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetHelpFile_7; 326 unsafe winmdroot.Foundation.HRESULT GetSource(winmdroot.Foundation.BSTR* pBstrSource); 329 unsafe winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstrDescription); 332 unsafe winmdroot.Foundation.HRESULT GetHelpFile(winmdroot.Foundation.BSTR* pBstrHelpFile);
_generated\135\Windows.Win32.IFont.g.cs (9)
60 private static winmdroot.Foundation.HRESULT get_Name(IFont* pThis, winmdroot.Foundation.BSTR* pName) 86 internal winmdroot.Foundation.BSTR Name 90 winmdroot.Foundation.BSTR __result; 91 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 96 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 103 private static winmdroot.Foundation.HRESULT put_Name(IFont* pThis, winmdroot.Foundation.BSTR name) 896 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_4; 898 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_Name_5; 991 winmdroot.Foundation.BSTR Name
_generated\141\Windows.Win32.IHTMLCurrentStyle.g.cs (305)
139 private static winmdroot.Foundation.HRESULT get_position(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 157 internal winmdroot.Foundation.BSTR position 161 winmdroot.Foundation.BSTR __result; 162 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT get_styleFloat(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 188 internal winmdroot.Foundation.BSTR styleFloat 192 winmdroot.Foundation.BSTR __result; 193 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 263 private static winmdroot.Foundation.HRESULT get_fontFamily(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 281 internal winmdroot.Foundation.BSTR fontFamily 285 winmdroot.Foundation.BSTR __result; 286 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 294 private static winmdroot.Foundation.HRESULT get_fontStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 312 internal winmdroot.Foundation.BSTR fontStyle 316 winmdroot.Foundation.BSTR __result; 317 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 325 private static winmdroot.Foundation.HRESULT get_fontVariant(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 343 internal winmdroot.Foundation.BSTR fontVariant 347 winmdroot.Foundation.BSTR __result; 348 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 418 private static winmdroot.Foundation.HRESULT get_backgroundImage(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 436 internal winmdroot.Foundation.BSTR backgroundImage 440 winmdroot.Foundation.BSTR __result; 441 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 511 private static winmdroot.Foundation.HRESULT get_backgroundRepeat(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 529 internal winmdroot.Foundation.BSTR backgroundRepeat 533 winmdroot.Foundation.BSTR __result; 534 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 666 private static winmdroot.Foundation.HRESULT get_borderTopStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 684 internal winmdroot.Foundation.BSTR borderTopStyle 688 winmdroot.Foundation.BSTR __result; 689 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 697 private static winmdroot.Foundation.HRESULT get_borderRightStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 715 internal winmdroot.Foundation.BSTR borderRightStyle 719 winmdroot.Foundation.BSTR __result; 720 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 728 private static winmdroot.Foundation.HRESULT get_borderBottomStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 746 internal winmdroot.Foundation.BSTR borderBottomStyle 750 winmdroot.Foundation.BSTR __result; 751 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 759 private static winmdroot.Foundation.HRESULT get_borderLeftStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 777 internal winmdroot.Foundation.BSTR borderLeftStyle 781 winmdroot.Foundation.BSTR __result; 782 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1162 private static winmdroot.Foundation.HRESULT get_textAlign(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1180 internal winmdroot.Foundation.BSTR textAlign 1184 winmdroot.Foundation.BSTR __result; 1185 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1193 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1211 internal winmdroot.Foundation.BSTR textDecoration 1215 winmdroot.Foundation.BSTR __result; 1216 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1224 private static winmdroot.Foundation.HRESULT get_display(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1242 internal winmdroot.Foundation.BSTR display 1246 winmdroot.Foundation.BSTR __result; 1247 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1255 private static winmdroot.Foundation.HRESULT get_visibility(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1273 internal winmdroot.Foundation.BSTR visibility 1277 winmdroot.Foundation.BSTR __result; 1278 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1441 private static winmdroot.Foundation.HRESULT get_backgroundAttachment(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1459 internal winmdroot.Foundation.BSTR backgroundAttachment 1463 winmdroot.Foundation.BSTR __result; 1464 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1596 private static winmdroot.Foundation.HRESULT get_clear(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1614 internal winmdroot.Foundation.BSTR clear 1618 winmdroot.Foundation.BSTR __result; 1619 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1627 private static winmdroot.Foundation.HRESULT get_listStyleType(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1645 internal winmdroot.Foundation.BSTR listStyleType 1649 winmdroot.Foundation.BSTR __result; 1650 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1658 private static winmdroot.Foundation.HRESULT get_listStylePosition(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1676 internal winmdroot.Foundation.BSTR listStylePosition 1680 winmdroot.Foundation.BSTR __result; 1681 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1689 private static winmdroot.Foundation.HRESULT get_listStyleImage(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1707 internal winmdroot.Foundation.BSTR listStyleImage 1711 winmdroot.Foundation.BSTR __result; 1712 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1844 private static winmdroot.Foundation.HRESULT get_overflow(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1862 internal winmdroot.Foundation.BSTR overflow 1866 winmdroot.Foundation.BSTR __result; 1867 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1875 private static winmdroot.Foundation.HRESULT get_pageBreakBefore(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1893 internal winmdroot.Foundation.BSTR pageBreakBefore 1897 winmdroot.Foundation.BSTR __result; 1898 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1906 private static winmdroot.Foundation.HRESULT get_pageBreakAfter(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1924 internal winmdroot.Foundation.BSTR pageBreakAfter 1928 winmdroot.Foundation.BSTR __result; 1929 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1937 private static winmdroot.Foundation.HRESULT get_cursor(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1955 internal winmdroot.Foundation.BSTR cursor 1959 winmdroot.Foundation.BSTR __result; 1960 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1968 private static winmdroot.Foundation.HRESULT get_tableLayout(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1986 internal winmdroot.Foundation.BSTR tableLayout 1990 winmdroot.Foundation.BSTR __result; 1991 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1999 private static winmdroot.Foundation.HRESULT get_borderCollapse(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2017 internal winmdroot.Foundation.BSTR borderCollapse 2021 winmdroot.Foundation.BSTR __result; 2022 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2030 private static winmdroot.Foundation.HRESULT get_direction(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2048 internal winmdroot.Foundation.BSTR direction 2052 winmdroot.Foundation.BSTR __result; 2053 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2061 private static winmdroot.Foundation.HRESULT get_behavior(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2079 internal winmdroot.Foundation.BSTR behavior 2083 winmdroot.Foundation.BSTR __result; 2084 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2092 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 2109 public winmdroot.System.Variant.VARIANT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags) 2112 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 2119 private static winmdroot.Foundation.HRESULT get_unicodeBidi(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2137 internal winmdroot.Foundation.BSTR unicodeBidi 2141 winmdroot.Foundation.BSTR __result; 2142 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2212 private static winmdroot.Foundation.HRESULT get_imeMode(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2230 internal winmdroot.Foundation.BSTR imeMode 2234 winmdroot.Foundation.BSTR __result; 2235 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2243 private static winmdroot.Foundation.HRESULT get_rubyAlign(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2261 internal winmdroot.Foundation.BSTR rubyAlign 2265 winmdroot.Foundation.BSTR __result; 2266 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2274 private static winmdroot.Foundation.HRESULT get_rubyPosition(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2292 internal winmdroot.Foundation.BSTR rubyPosition 2296 winmdroot.Foundation.BSTR __result; 2297 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2305 private static winmdroot.Foundation.HRESULT get_rubyOverhang(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2323 internal winmdroot.Foundation.BSTR rubyOverhang 2327 winmdroot.Foundation.BSTR __result; 2328 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2336 private static winmdroot.Foundation.HRESULT get_textAutospace(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2354 internal winmdroot.Foundation.BSTR textAutospace 2358 winmdroot.Foundation.BSTR __result; 2359 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2367 private static winmdroot.Foundation.HRESULT get_lineBreak(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2385 internal winmdroot.Foundation.BSTR lineBreak 2389 winmdroot.Foundation.BSTR __result; 2390 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2398 private static winmdroot.Foundation.HRESULT get_wordBreak(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2416 internal winmdroot.Foundation.BSTR wordBreak 2420 winmdroot.Foundation.BSTR __result; 2421 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2429 private static winmdroot.Foundation.HRESULT get_textJustify(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2447 internal winmdroot.Foundation.BSTR textJustify 2451 winmdroot.Foundation.BSTR __result; 2452 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2460 private static winmdroot.Foundation.HRESULT get_textJustifyTrim(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2478 internal winmdroot.Foundation.BSTR textJustifyTrim 2482 winmdroot.Foundation.BSTR __result; 2483 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2522 private static winmdroot.Foundation.HRESULT get_blockDirection(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2540 internal winmdroot.Foundation.BSTR blockDirection 2544 winmdroot.Foundation.BSTR __result; 2545 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2615 private static winmdroot.Foundation.HRESULT get_layoutGridMode(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2633 internal winmdroot.Foundation.BSTR layoutGridMode 2637 winmdroot.Foundation.BSTR __result; 2638 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2646 private static winmdroot.Foundation.HRESULT get_layoutGridType(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2664 internal winmdroot.Foundation.BSTR layoutGridType 2668 winmdroot.Foundation.BSTR __result; 2669 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2677 private static winmdroot.Foundation.HRESULT get_borderStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2695 internal winmdroot.Foundation.BSTR borderStyle 2699 winmdroot.Foundation.BSTR __result; 2700 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2708 private static winmdroot.Foundation.HRESULT get_borderColor(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2726 internal winmdroot.Foundation.BSTR borderColor 2730 winmdroot.Foundation.BSTR __result; 2731 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2739 private static winmdroot.Foundation.HRESULT get_borderWidth(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2757 internal winmdroot.Foundation.BSTR borderWidth 2761 winmdroot.Foundation.BSTR __result; 2762 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2770 private static winmdroot.Foundation.HRESULT get_padding(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2788 internal winmdroot.Foundation.BSTR padding 2792 winmdroot.Foundation.BSTR __result; 2793 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2801 private static winmdroot.Foundation.HRESULT get_margin(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2819 internal winmdroot.Foundation.BSTR margin 2823 winmdroot.Foundation.BSTR __result; 2824 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2832 private static winmdroot.Foundation.HRESULT get_accelerator(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2850 internal winmdroot.Foundation.BSTR accelerator 2854 winmdroot.Foundation.BSTR __result; 2855 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2863 private static winmdroot.Foundation.HRESULT get_overflowX(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2881 internal winmdroot.Foundation.BSTR overflowX 2885 winmdroot.Foundation.BSTR __result; 2886 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[95])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2894 private static winmdroot.Foundation.HRESULT get_overflowY(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2912 internal winmdroot.Foundation.BSTR overflowY 2916 winmdroot.Foundation.BSTR __result; 2917 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[96])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2925 private static winmdroot.Foundation.HRESULT get_textTransform(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2943 internal winmdroot.Foundation.BSTR textTransform 2947 winmdroot.Foundation.BSTR __result; 2948 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[97])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2990 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_position_8; 2992 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_styleFloat_9; 2998 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontFamily_12; 3000 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontStyle_13; 3002 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontVariant_14; 3008 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundImage_17; 3014 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundRepeat_20; 3024 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTopStyle_25; 3026 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRightStyle_26; 3028 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottomStyle_27; 3030 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeftStyle_28; 3056 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAlign_41; 3058 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_42; 3060 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_display_43; 3062 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_visibility_44; 3074 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundAttachment_50; 3084 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clear_55; 3086 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleType_56; 3088 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStylePosition_57; 3090 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleImage_58; 3100 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflow_63; 3102 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakBefore_64; 3104 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakAfter_65; 3106 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cursor_66; 3108 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_tableLayout_67; 3110 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderCollapse_68; 3112 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_direction_69; 3114 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_behavior_70; 3116 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_71; 3118 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_unicodeBidi_72; 3124 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_imeMode_75; 3126 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_rubyAlign_76; 3128 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_rubyPosition_77; 3130 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_rubyOverhang_78; 3132 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAutospace_79; 3134 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lineBreak_80; 3136 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_wordBreak_81; 3138 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textJustify_82; 3140 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textJustifyTrim_83; 3144 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_blockDirection_85; 3150 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_layoutGridMode_88; 3152 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_layoutGridType_89; 3154 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderStyle_90; 3156 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderColor_91; 3158 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderWidth_92; 3160 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_padding_93; 3162 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_margin_94; 3164 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accelerator_95; 3166 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflowX_96; 3168 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflowY_97; 3170 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textTransform_98; 3285 winmdroot.Foundation.BSTR position 3290 winmdroot.Foundation.BSTR styleFloat 3305 winmdroot.Foundation.BSTR fontFamily 3310 winmdroot.Foundation.BSTR fontStyle 3315 winmdroot.Foundation.BSTR fontVariant 3330 winmdroot.Foundation.BSTR backgroundImage 3345 winmdroot.Foundation.BSTR backgroundRepeat 3370 winmdroot.Foundation.BSTR borderTopStyle 3375 winmdroot.Foundation.BSTR borderRightStyle 3380 winmdroot.Foundation.BSTR borderBottomStyle 3385 winmdroot.Foundation.BSTR borderLeftStyle 3450 winmdroot.Foundation.BSTR textAlign 3455 winmdroot.Foundation.BSTR textDecoration 3460 winmdroot.Foundation.BSTR display 3465 winmdroot.Foundation.BSTR visibility 3495 winmdroot.Foundation.BSTR backgroundAttachment 3520 winmdroot.Foundation.BSTR clear 3525 winmdroot.Foundation.BSTR listStyleType 3530 winmdroot.Foundation.BSTR listStylePosition 3535 winmdroot.Foundation.BSTR listStyleImage 3560 winmdroot.Foundation.BSTR overflow 3565 winmdroot.Foundation.BSTR pageBreakBefore 3570 winmdroot.Foundation.BSTR pageBreakAfter 3575 winmdroot.Foundation.BSTR cursor 3580 winmdroot.Foundation.BSTR tableLayout 3585 winmdroot.Foundation.BSTR borderCollapse 3590 winmdroot.Foundation.BSTR direction 3595 winmdroot.Foundation.BSTR behavior 3601 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue); 3603 winmdroot.Foundation.BSTR unicodeBidi 3618 winmdroot.Foundation.BSTR imeMode 3623 winmdroot.Foundation.BSTR rubyAlign 3628 winmdroot.Foundation.BSTR rubyPosition 3633 winmdroot.Foundation.BSTR rubyOverhang 3638 winmdroot.Foundation.BSTR textAutospace 3643 winmdroot.Foundation.BSTR lineBreak 3648 winmdroot.Foundation.BSTR wordBreak 3653 winmdroot.Foundation.BSTR textJustify 3658 winmdroot.Foundation.BSTR textJustifyTrim 3668 winmdroot.Foundation.BSTR blockDirection 3683 winmdroot.Foundation.BSTR layoutGridMode 3688 winmdroot.Foundation.BSTR layoutGridType 3693 winmdroot.Foundation.BSTR borderStyle 3698 winmdroot.Foundation.BSTR borderColor 3703 winmdroot.Foundation.BSTR borderWidth 3708 winmdroot.Foundation.BSTR padding 3713 winmdroot.Foundation.BSTR margin 3718 winmdroot.Foundation.BSTR accelerator 3723 winmdroot.Foundation.BSTR overflowX 3728 winmdroot.Foundation.BSTR overflowY 3733 winmdroot.Foundation.BSTR textTransform
_generated\142\Windows.Win32.IHTMLDataTransfer.g.cs (35)
136 /// <inheritdoc cref="setData(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*)"/> 138 internal unsafe winmdroot.Foundation.VARIANT_BOOL setData(winmdroot.Foundation.BSTR format, in winmdroot.System.Variant.VARIANT data) 150 private static winmdroot.Foundation.HRESULT setData(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* data, winmdroot.Foundation.VARIANT_BOOL* pret) 167 public unsafe winmdroot.Foundation.VARIANT_BOOL setData(winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* data) 170 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), format, data, &__retVal).ThrowOnFailure(); 177 private static winmdroot.Foundation.HRESULT getData(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* pvarRet) 194 public winmdroot.System.Variant.VARIANT getData(winmdroot.Foundation.BSTR format) 197 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), format, &__retVal).ThrowOnFailure(); 204 private static winmdroot.Foundation.HRESULT clearData(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR format, winmdroot.Foundation.VARIANT_BOOL* pret) 221 public winmdroot.Foundation.VARIANT_BOOL clearData(winmdroot.Foundation.BSTR format) 224 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), format, &__retVal).ThrowOnFailure(); 231 private static winmdroot.Foundation.HRESULT put_dropEffect(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR v) 249 internal winmdroot.Foundation.BSTR dropEffect 253 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 257 winmdroot.Foundation.BSTR __result; 258 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 266 private static winmdroot.Foundation.HRESULT get_dropEffect(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR* p) 287 private static winmdroot.Foundation.HRESULT put_effectAllowed(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR v) 305 internal winmdroot.Foundation.BSTR effectAllowed 309 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 313 winmdroot.Foundation.BSTR __result; 314 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 322 private static winmdroot.Foundation.HRESULT get_effectAllowed(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR* p) 377 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> setData_8; 379 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getData_9; 381 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> clearData_10; 383 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dropEffect_11; 385 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dropEffect_12; 387 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_effectAllowed_13; 389 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_effectAllowed_14; 421 unsafe winmdroot.Foundation.HRESULT setData(winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* data, winmdroot.Foundation.VARIANT_BOOL* pret); 424 unsafe winmdroot.Foundation.HRESULT getData(winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* pvarRet); 427 unsafe winmdroot.Foundation.HRESULT clearData(winmdroot.Foundation.BSTR format, winmdroot.Foundation.VARIANT_BOOL* pret); 429 winmdroot.Foundation.BSTR dropEffect 435 winmdroot.Foundation.BSTR effectAllowed
_generated\144\Windows.Win32.IHTMLDocument2.g.cs (222)
376 private static winmdroot.Foundation.HRESULT put_title(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 393 public winmdroot.Foundation.HRESULT put_title(winmdroot.Foundation.BSTR v) 395 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 398 /// <inheritdoc cref="get_title(winmdroot.Foundation.BSTR*)"/> 400 internal unsafe winmdroot.Foundation.HRESULT get_title(out winmdroot.Foundation.BSTR p) 402 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 412 private static winmdroot.Foundation.HRESULT get_title(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 429 public unsafe winmdroot.Foundation.HRESULT get_title(winmdroot.Foundation.BSTR* p) 431 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 468 private static winmdroot.Foundation.HRESULT put_designMode(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 486 internal winmdroot.Foundation.BSTR designMode 490 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 494 winmdroot.Foundation.BSTR __result; 495 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 503 private static winmdroot.Foundation.HRESULT get_designMode(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 555 private static winmdroot.Foundation.HRESULT get_readyState(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 573 internal winmdroot.Foundation.BSTR readyState 577 winmdroot.Foundation.BSTR __result; 578 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 984 private static winmdroot.Foundation.HRESULT get_referrer(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1002 internal winmdroot.Foundation.BSTR referrer 1006 winmdroot.Foundation.BSTR __result; 1007 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1040 private static winmdroot.Foundation.HRESULT get_lastModified(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1058 internal winmdroot.Foundation.BSTR lastModified 1062 winmdroot.Foundation.BSTR __result; 1063 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1071 private static winmdroot.Foundation.HRESULT put_URL(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1089 internal winmdroot.Foundation.BSTR URL 1093 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1097 winmdroot.Foundation.BSTR __result; 1098 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1106 private static winmdroot.Foundation.HRESULT get_URL(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1127 private static winmdroot.Foundation.HRESULT put_domain(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1144 public winmdroot.Foundation.HRESULT put_domain(winmdroot.Foundation.BSTR v) 1146 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1149 /// <inheritdoc cref="get_domain(winmdroot.Foundation.BSTR*)"/> 1151 internal unsafe winmdroot.Foundation.HRESULT get_domain(out winmdroot.Foundation.BSTR p) 1153 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 1163 private static winmdroot.Foundation.HRESULT get_domain(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1180 public unsafe winmdroot.Foundation.HRESULT get_domain(winmdroot.Foundation.BSTR* p) 1182 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1188 private static winmdroot.Foundation.HRESULT put_cookie(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1205 public winmdroot.Foundation.HRESULT put_cookie(winmdroot.Foundation.BSTR v) 1207 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1210 /// <inheritdoc cref="get_cookie(winmdroot.Foundation.BSTR*)"/> 1212 internal unsafe winmdroot.Foundation.HRESULT get_cookie(out winmdroot.Foundation.BSTR p) 1214 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 1224 private static winmdroot.Foundation.HRESULT get_cookie(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1241 public unsafe winmdroot.Foundation.HRESULT get_cookie(winmdroot.Foundation.BSTR* p) 1243 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1305 private static winmdroot.Foundation.HRESULT put_charset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1322 public winmdroot.Foundation.HRESULT put_charset(winmdroot.Foundation.BSTR v) 1324 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1327 /// <inheritdoc cref="get_charset(winmdroot.Foundation.BSTR*)"/> 1329 internal unsafe winmdroot.Foundation.HRESULT get_charset(out winmdroot.Foundation.BSTR p) 1331 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 1341 private static winmdroot.Foundation.HRESULT get_charset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1358 public unsafe winmdroot.Foundation.HRESULT get_charset(winmdroot.Foundation.BSTR* p) 1360 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1366 private static winmdroot.Foundation.HRESULT put_defaultCharset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1383 public winmdroot.Foundation.HRESULT put_defaultCharset(winmdroot.Foundation.BSTR v) 1385 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1388 /// <inheritdoc cref="get_defaultCharset(winmdroot.Foundation.BSTR*)"/> 1390 internal unsafe winmdroot.Foundation.HRESULT get_defaultCharset(out winmdroot.Foundation.BSTR p) 1392 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 1402 private static winmdroot.Foundation.HRESULT get_defaultCharset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1419 public unsafe winmdroot.Foundation.HRESULT get_defaultCharset(winmdroot.Foundation.BSTR* p) 1421 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1424 /// <inheritdoc cref="get_mimeType(winmdroot.Foundation.BSTR*)"/> 1426 internal unsafe winmdroot.Foundation.HRESULT get_mimeType(out winmdroot.Foundation.BSTR p) 1428 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 1438 private static winmdroot.Foundation.HRESULT get_mimeType(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1455 public unsafe winmdroot.Foundation.HRESULT get_mimeType(winmdroot.Foundation.BSTR* p) 1457 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1463 private static winmdroot.Foundation.HRESULT get_fileSize(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1481 internal winmdroot.Foundation.BSTR fileSize 1485 winmdroot.Foundation.BSTR __result; 1486 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1494 private static winmdroot.Foundation.HRESULT get_fileCreatedDate(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1512 internal winmdroot.Foundation.BSTR fileCreatedDate 1516 winmdroot.Foundation.BSTR __result; 1517 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1525 private static winmdroot.Foundation.HRESULT get_fileModifiedDate(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1543 internal winmdroot.Foundation.BSTR fileModifiedDate 1547 winmdroot.Foundation.BSTR __result; 1548 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1556 private static winmdroot.Foundation.HRESULT get_fileUpdatedDate(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1574 internal winmdroot.Foundation.BSTR fileUpdatedDate 1578 winmdroot.Foundation.BSTR __result; 1579 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1587 private static winmdroot.Foundation.HRESULT get_security(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1605 internal winmdroot.Foundation.BSTR security 1609 winmdroot.Foundation.BSTR __result; 1610 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1618 private static winmdroot.Foundation.HRESULT get_protocol(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1636 internal winmdroot.Foundation.BSTR protocol 1640 winmdroot.Foundation.BSTR __result; 1641 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1649 private static winmdroot.Foundation.HRESULT get_nameProp(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1667 internal winmdroot.Foundation.BSTR nameProp 1671 winmdroot.Foundation.BSTR __result; 1672 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1730 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) 1747 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) 1749 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); 1805 private static winmdroot.Foundation.HRESULT queryCommandSupported(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1822 public winmdroot.Foundation.VARIANT_BOOL queryCommandSupported(winmdroot.Foundation.BSTR cmdID) 1825 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1832 private static winmdroot.Foundation.HRESULT queryCommandEnabled(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1849 public winmdroot.Foundation.VARIANT_BOOL queryCommandEnabled(winmdroot.Foundation.BSTR cmdID) 1852 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1859 private static winmdroot.Foundation.HRESULT queryCommandState(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1876 public winmdroot.Foundation.VARIANT_BOOL queryCommandState(winmdroot.Foundation.BSTR cmdID) 1879 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1886 private static winmdroot.Foundation.HRESULT queryCommandIndeterm(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1903 public winmdroot.Foundation.VARIANT_BOOL queryCommandIndeterm(winmdroot.Foundation.BSTR cmdID) 1906 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1913 private static winmdroot.Foundation.HRESULT queryCommandText(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.BSTR* pcmdText) 1930 public winmdroot.Foundation.BSTR queryCommandText(winmdroot.Foundation.BSTR cmdID) 1932 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 1933 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1940 private static winmdroot.Foundation.HRESULT queryCommandValue(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.System.Variant.VARIANT* pcmdValue) 1957 public winmdroot.System.Variant.VARIANT queryCommandValue(winmdroot.Foundation.BSTR cmdID) 1960 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1964 /// <inheritdoc cref="execCommand(winmdroot.Foundation.BSTR, winmdroot.Foundation.VARIANT_BOOL, winmdroot.System.Variant.VARIANT, winmdroot.Foundation.VARIANT_BOOL*)"/> 1966 internal unsafe winmdroot.Foundation.HRESULT execCommand(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL showUI, winmdroot.System.Variant.VARIANT value, out winmdroot.Foundation.VARIANT_BOOL pfRet) 1978 private static winmdroot.Foundation.HRESULT execCommand(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL showUI, winmdroot.System.Variant.VARIANT value, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1995 public unsafe winmdroot.Foundation.HRESULT execCommand(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL showUI, winmdroot.System.Variant.VARIANT value, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1997 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, showUI, value, pfRet); 2003 private static winmdroot.Foundation.HRESULT execCommandShowHelp(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 2020 public winmdroot.Foundation.VARIANT_BOOL execCommandShowHelp(winmdroot.Foundation.BSTR cmdID) 2023 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 2030 private static winmdroot.Foundation.HRESULT createElement(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR eTag, winmdroot.Web.MsHtml.IHTMLElement** newElem) 2047 public unsafe winmdroot.Foundation.HRESULT createElement(winmdroot.Foundation.BSTR eTag, winmdroot.Web.MsHtml.IHTMLElement** newElem) 2049 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLDocument2*)Unsafe.AsPointer(ref this), eTag, newElem); 3200 private static winmdroot.Foundation.HRESULT toString(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* String) 3217 public winmdroot.Foundation.BSTR toString() 3219 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 3220 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[114])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 3227 private static winmdroot.Foundation.HRESULT createStyleSheet(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR bstrHref, int lIndex, winmdroot.Web.MsHtml.IHTMLStyleSheet** ppnewStyleSheet) 3244 public unsafe winmdroot.Web.MsHtml.IHTMLStyleSheet* createStyleSheet(winmdroot.Foundation.BSTR bstrHref, int lIndex) 3247 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,int ,winmdroot.Web.MsHtml.IHTMLStyleSheet** ,winmdroot.Foundation.HRESULT>)lpVtbl[115])((IHTMLDocument2*)Unsafe.AsPointer(ref this), bstrHref, lIndex, &__retVal).ThrowOnFailure(); 3306 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_title_17; 3308 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_title_18; 3312 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_designMode_20; 3314 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_designMode_21; 3318 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_readyState_23; 3346 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_referrer_37; 3350 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lastModified_39; 3352 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_URL_40; 3354 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_URL_41; 3356 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_domain_42; 3358 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_domain_43; 3360 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cookie_44; 3362 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cookie_45; 3368 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_charset_48; 3370 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_charset_49; 3372 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_defaultCharset_50; 3374 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_defaultCharset_51; 3376 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_mimeType_52; 3378 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileSize_53; 3380 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileCreatedDate_54; 3382 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileModifiedDate_55; 3384 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileUpdatedDate_56; 3386 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_security_57; 3388 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_protocol_58; 3390 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_nameProp_59; 3396 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; 3402 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandSupported_65; 3404 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandEnabled_66; 3406 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandState_67; 3408 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandIndeterm_68; 3410 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> queryCommandText_69; 3412 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> queryCommandValue_70; 3414 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> execCommand_71; 3416 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> execCommandShowHelp_72; 3418 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> createElement_73; 3502 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_115; 3504 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,int ,winmdroot.Web.MsHtml.IHTMLStyleSheet** ,winmdroot.Foundation.HRESULT> createStyleSheet_116; 3669winmdroot.Foundation.HRESULT put_title(winmdroot.Foundation.BSTR v); 3672 unsafe winmdroot.Foundation.HRESULT get_title(winmdroot.Foundation.BSTR* p); 3679 winmdroot.Foundation.BSTR designMode 3690 winmdroot.Foundation.BSTR readyState 3740 winmdroot.Foundation.BSTR referrer 3748 winmdroot.Foundation.BSTR lastModified 3753 winmdroot.Foundation.BSTR URL 3760winmdroot.Foundation.HRESULT put_domain(winmdroot.Foundation.BSTR v); 3763 unsafe winmdroot.Foundation.HRESULT get_domain(winmdroot.Foundation.BSTR* p); 3766winmdroot.Foundation.HRESULT put_cookie(winmdroot.Foundation.BSTR v); 3769 unsafe winmdroot.Foundation.HRESULT get_cookie(winmdroot.Foundation.BSTR* p); 3778winmdroot.Foundation.HRESULT put_charset(winmdroot.Foundation.BSTR v); 3781 unsafe winmdroot.Foundation.HRESULT get_charset(winmdroot.Foundation.BSTR* p); 3784winmdroot.Foundation.HRESULT put_defaultCharset(winmdroot.Foundation.BSTR v); 3787 unsafe winmdroot.Foundation.HRESULT get_defaultCharset(winmdroot.Foundation.BSTR* p); 3790 unsafe winmdroot.Foundation.HRESULT get_mimeType(winmdroot.Foundation.BSTR* p); 3792 winmdroot.Foundation.BSTR fileSize 3797 winmdroot.Foundation.BSTR fileCreatedDate 3802 winmdroot.Foundation.BSTR fileModifiedDate 3807 winmdroot.Foundation.BSTR fileUpdatedDate 3812 winmdroot.Foundation.BSTR security 3817 winmdroot.Foundation.BSTR protocol 3822 winmdroot.Foundation.BSTR nameProp 3834 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); 3843 unsafe winmdroot.Foundation.HRESULT queryCommandSupported(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3846 unsafe winmdroot.Foundation.HRESULT queryCommandEnabled(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3849 unsafe winmdroot.Foundation.HRESULT queryCommandState(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3852 unsafe winmdroot.Foundation.HRESULT queryCommandIndeterm(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3855 unsafe winmdroot.Foundation.HRESULT queryCommandText(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.BSTR* pcmdText); 3858 unsafe winmdroot.Foundation.HRESULT queryCommandValue(winmdroot.Foundation.BSTR cmdID, winmdroot.System.Variant.VARIANT* pcmdValue); 3861 unsafe winmdroot.Foundation.HRESULT execCommand(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL showUI, winmdroot.System.Variant.VARIANT value, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3864 unsafe winmdroot.Foundation.HRESULT execCommandShowHelp(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3867 unsafe winmdroot.Foundation.HRESULT createElement(winmdroot.Foundation.BSTR eTag, winmdroot.Web.MsHtml.IHTMLElement** newElem); 3995 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String); 3998 unsafe winmdroot.Foundation.HRESULT createStyleSheet(winmdroot.Foundation.BSTR bstrHref, int lIndex, winmdroot.Web.MsHtml.IHTMLStyleSheet** ppnewStyleSheet);
_generated\145\Windows.Win32.IHTMLDocument3.g.cs (60)
189 private static winmdroot.Foundation.HRESULT createTextNode(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR text, winmdroot.Web.MsHtml.IHTMLDOMNode** newTextNode) 206 public unsafe winmdroot.Web.MsHtml.IHTMLDOMNode* createTextNode(winmdroot.Foundation.BSTR text) 209 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDocument3*)Unsafe.AsPointer(ref this), text, &__retVal).ThrowOnFailure(); 247 private static winmdroot.Foundation.HRESULT get_uniqueID(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR* p) 265 internal winmdroot.Foundation.BSTR uniqueID 269 winmdroot.Foundation.BSTR __result; 270 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 275 /// <inheritdoc cref="attachEvent(winmdroot.Foundation.BSTR, winmdroot.System.Com.IDispatch*, winmdroot.Foundation.VARIANT_BOOL*)"/> 277 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 289 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 306 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 308 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); 314 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 331 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 333 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDocument3*)Unsafe.AsPointer(ref this), @event, pDisp); 731 private static winmdroot.Foundation.HRESULT put_dir(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v) 748 public winmdroot.Foundation.HRESULT put_dir(winmdroot.Foundation.BSTR v) 750 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v); 753 /// <inheritdoc cref="get_dir(winmdroot.Foundation.BSTR*)"/> 755 internal unsafe winmdroot.Foundation.HRESULT get_dir(out winmdroot.Foundation.BSTR p) 757 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 767 private static winmdroot.Foundation.HRESULT get_dir(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR* p) 784 public unsafe winmdroot.Foundation.HRESULT get_dir(winmdroot.Foundation.BSTR* p) 786 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLDocument3*)Unsafe.AsPointer(ref this), p); 1018 private static winmdroot.Foundation.HRESULT put_baseUrl(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v) 1036 internal winmdroot.Foundation.BSTR baseUrl 1040 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1044 winmdroot.Foundation.BSTR __result; 1045 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1053 private static winmdroot.Foundation.HRESULT get_baseUrl(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR* p) 1217 private static winmdroot.Foundation.HRESULT getElementsByName(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 1234 public unsafe winmdroot.Web.MsHtml.IHTMLElementCollection* getElementsByName(winmdroot.Foundation.BSTR v) 1237 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v, &__retVal).ThrowOnFailure(); 1244 private static winmdroot.Foundation.HRESULT getElementById(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElement** pel) 1261 public unsafe winmdroot.Foundation.HRESULT getElementById(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElement** pel) 1263 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v, pel); 1269 private static winmdroot.Foundation.HRESULT getElementsByTagName(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 1286 public unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 1288 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v, pelColl); 1332 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> createTextNode_10; 1336 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_uniqueID_12; 1338 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_13; 1340 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_14; 1370 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dir_29; 1372 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dir_30; 1390 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_baseUrl_39; 1392 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_baseUrl_40; 1404 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> getElementsByName_46; 1406 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> getElementById_47; 1408 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> getElementsByTagName_48; 1480 unsafe winmdroot.Foundation.HRESULT createTextNode(winmdroot.Foundation.BSTR text, winmdroot.Web.MsHtml.IHTMLDOMNode** newTextNode); 1487 winmdroot.Foundation.BSTR uniqueID 1493 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 1496 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp); 1541winmdroot.Foundation.HRESULT put_dir(winmdroot.Foundation.BSTR v); 1544 unsafe winmdroot.Foundation.HRESULT get_dir(winmdroot.Foundation.BSTR* p); 1572 winmdroot.Foundation.BSTR baseUrl 1596 unsafe winmdroot.Foundation.HRESULT getElementsByName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl); 1599 unsafe winmdroot.Foundation.HRESULT getElementById(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElement** pel); 1602 unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl);
_generated\146\Windows.Win32.IHTMLDocument4.g.cs (37)
287 private static winmdroot.Foundation.HRESULT createDocumentFromUrl(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR bstrUrl, winmdroot.Foundation.BSTR bstrOptions, winmdroot.Web.MsHtml.IHTMLDocument2** newDoc) 304 public unsafe winmdroot.Web.MsHtml.IHTMLDocument2* createDocumentFromUrl(winmdroot.Foundation.BSTR bstrUrl, winmdroot.Foundation.BSTR bstrOptions) 307 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLDocument4*)Unsafe.AsPointer(ref this), bstrUrl, bstrOptions, &__retVal).ThrowOnFailure(); 314 private static winmdroot.Foundation.HRESULT put_media(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR v) 332 internal winmdroot.Foundation.BSTR media 336 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDocument4*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 340 winmdroot.Foundation.BSTR __result; 341 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 349 private static winmdroot.Foundation.HRESULT get_media(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR* p) 405 /// <inheritdoc cref="fireEvent(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.Foundation.VARIANT_BOOL*)"/> 407 internal unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, in winmdroot.System.Variant.VARIANT pvarEventObject, out winmdroot.Foundation.VARIANT_BOOL pfCancelled) 422 private static winmdroot.Foundation.HRESULT fireEvent(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 439 public unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 441 return ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLDocument4*)Unsafe.AsPointer(ref this), bstrEventName, pvarEventObject, pfCancelled); 447 private static winmdroot.Foundation.HRESULT createRenderStyle(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLRenderStyle** ppIHTMLRenderStyle) 464 public unsafe winmdroot.Web.MsHtml.IHTMLRenderStyle* createRenderStyle(winmdroot.Foundation.BSTR v) 467 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLRenderStyle** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLDocument4*)Unsafe.AsPointer(ref this), v, &__retVal).ThrowOnFailure(); 530 private static winmdroot.Foundation.HRESULT get_URLUnencoded(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR* p) 548 internal winmdroot.Foundation.BSTR URLUnencoded 552 winmdroot.Foundation.BSTR __result; 553 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 605 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT> createDocumentFromUrl_13; 607 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_media_14; 609 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_media_15; 613 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> fireEvent_17; 615 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLRenderStyle** ,winmdroot.Foundation.HRESULT> createRenderStyle_18; 621 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_URLUnencoded_21; 677 unsafe winmdroot.Foundation.HRESULT createDocumentFromUrl(winmdroot.Foundation.BSTR bstrUrl, winmdroot.Foundation.BSTR bstrOptions, winmdroot.Web.MsHtml.IHTMLDocument2** newDoc); 679 winmdroot.Foundation.BSTR media 689 unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled); 692 unsafe winmdroot.Foundation.HRESULT createRenderStyle(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLRenderStyle** ppIHTMLRenderStyle); 700 winmdroot.Foundation.BSTR URLUnencoded
_generated\147\Windows.Win32.IHTMLDOMNode.g.cs (6)
504 private static winmdroot.Foundation.HRESULT get_nodeName(IHTMLDOMNode* pThis, winmdroot.Foundation.BSTR* p) 522 internal winmdroot.Foundation.BSTR nodeName 526 winmdroot.Foundation.BSTR __result; 527 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 763 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_nodeName_21; 866 winmdroot.Foundation.BSTR nodeName
_generated\148\Windows.Win32.IHTMLElement.g.cs (153)
139 private static winmdroot.Foundation.HRESULT setAttribute(IHTMLElement* pThis, winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 156 public winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 158 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLElement*)Unsafe.AsPointer(ref this), strAttributeName, AttributeValue, lFlags); 161 /// <inheritdoc cref="getAttribute(winmdroot.Foundation.BSTR, int, winmdroot.System.Variant.VARIANT*)"/> 163 internal unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.System.Variant.VARIANT AttributeValue) 175 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLElement* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 192 public unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 194 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLElement*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, AttributeValue); 200 private static winmdroot.Foundation.HRESULT removeAttribute(IHTMLElement* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 217 public winmdroot.Foundation.VARIANT_BOOL removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags) 220 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLElement*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 227 private static winmdroot.Foundation.HRESULT put_className(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 245 internal winmdroot.Foundation.BSTR className 249 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 253 winmdroot.Foundation.BSTR __result; 254 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 262 private static winmdroot.Foundation.HRESULT get_className(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 283 private static winmdroot.Foundation.HRESULT put_id(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 300 public winmdroot.Foundation.HRESULT put_id(winmdroot.Foundation.BSTR v) 302 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 305 /// <inheritdoc cref="get_id(winmdroot.Foundation.BSTR*)"/> 307 internal unsafe winmdroot.Foundation.HRESULT get_id(out winmdroot.Foundation.BSTR p) 309 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 319 private static winmdroot.Foundation.HRESULT get_id(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 336 public unsafe winmdroot.Foundation.HRESULT get_id(winmdroot.Foundation.BSTR* p) 338 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 341 /// <inheritdoc cref="get_tagName(winmdroot.Foundation.BSTR*)"/> 343 internal unsafe winmdroot.Foundation.HRESULT get_tagName(out winmdroot.Foundation.BSTR p) 345 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 355 private static winmdroot.Foundation.HRESULT get_tagName(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 372 public unsafe winmdroot.Foundation.HRESULT get_tagName(winmdroot.Foundation.BSTR* p) 374 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1071 private static winmdroot.Foundation.HRESULT put_title(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1089 internal winmdroot.Foundation.BSTR title 1093 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1097 winmdroot.Foundation.BSTR __result; 1098 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1106 private static winmdroot.Foundation.HRESULT get_title(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1127 private static winmdroot.Foundation.HRESULT put_language(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1145 internal winmdroot.Foundation.BSTR language 1149 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1153 winmdroot.Foundation.BSTR __result; 1154 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1162 private static winmdroot.Foundation.HRESULT get_language(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1353 private static winmdroot.Foundation.HRESULT put_lang(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1371 internal winmdroot.Foundation.BSTR lang 1375 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1379 winmdroot.Foundation.BSTR __result; 1380 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1388 private static winmdroot.Foundation.HRESULT get_lang(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1578 private static winmdroot.Foundation.HRESULT put_innerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1595 public winmdroot.Foundation.HRESULT put_innerHTML(winmdroot.Foundation.BSTR v) 1597 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1600 /// <inheritdoc cref="get_innerHTML(winmdroot.Foundation.BSTR*)"/> 1602 internal unsafe winmdroot.Foundation.HRESULT get_innerHTML(out winmdroot.Foundation.BSTR p) 1604 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 1614 private static winmdroot.Foundation.HRESULT get_innerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1631 public unsafe winmdroot.Foundation.HRESULT get_innerHTML(winmdroot.Foundation.BSTR* p) 1633 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1639 private static winmdroot.Foundation.HRESULT put_innerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1656 public winmdroot.Foundation.HRESULT put_innerText(winmdroot.Foundation.BSTR v) 1658 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1661 /// <inheritdoc cref="get_innerText(winmdroot.Foundation.BSTR*)"/> 1663 internal unsafe winmdroot.Foundation.HRESULT get_innerText(out winmdroot.Foundation.BSTR p) 1665 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 1675 private static winmdroot.Foundation.HRESULT get_innerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1692 public unsafe winmdroot.Foundation.HRESULT get_innerText(winmdroot.Foundation.BSTR* p) 1694 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1700 private static winmdroot.Foundation.HRESULT put_outerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1717 public winmdroot.Foundation.HRESULT put_outerHTML(winmdroot.Foundation.BSTR v) 1719 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1722 /// <inheritdoc cref="get_outerHTML(winmdroot.Foundation.BSTR*)"/> 1724 internal unsafe winmdroot.Foundation.HRESULT get_outerHTML(out winmdroot.Foundation.BSTR p) 1726 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 1736 private static winmdroot.Foundation.HRESULT get_outerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1753 public unsafe winmdroot.Foundation.HRESULT get_outerHTML(winmdroot.Foundation.BSTR* p) 1755 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1761 private static winmdroot.Foundation.HRESULT put_outerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1778 public winmdroot.Foundation.HRESULT put_outerText(winmdroot.Foundation.BSTR v) 1780 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1783 /// <inheritdoc cref="get_outerText(winmdroot.Foundation.BSTR*)"/> 1785 internal unsafe winmdroot.Foundation.HRESULT get_outerText(out winmdroot.Foundation.BSTR p) 1787 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 1797 private static winmdroot.Foundation.HRESULT get_outerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1814 public unsafe winmdroot.Foundation.HRESULT get_outerText(winmdroot.Foundation.BSTR* p) 1816 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1822 private static winmdroot.Foundation.HRESULT insertAdjacentHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR html) 1839 public void insertAdjacentHTML(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR html) 1841 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLElement*)Unsafe.AsPointer(ref this), where, html).ThrowOnFailure(); 1847 private static winmdroot.Foundation.HRESULT insertAdjacentText(IHTMLElement* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR text) 1864 public void insertAdjacentText(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR text) 1866 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLElement*)Unsafe.AsPointer(ref this), where, text).ThrowOnFailure(); 2046 private static winmdroot.Foundation.HRESULT toString(IHTMLElement* pThis, winmdroot.Foundation.BSTR* String) 2063 public winmdroot.Foundation.BSTR toString() 2065 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 2066 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLElement*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 2661 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT> setAttribute_8; 2663 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_9; 2665 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeAttribute_10; 2667 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_className_11; 2669 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_className_12; 2671 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_id_13; 2673 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_id_14; 2675 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_tagName_15; 2727 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_title_41; 2729 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_title_42; 2731 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_language_43; 2733 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_language_44; 2747 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_lang_51; 2749 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lang_52; 2761 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_innerHTML_58; 2763 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_innerHTML_59; 2765 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_innerText_60; 2767 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_innerText_61; 2769 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_outerHTML_62; 2771 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_outerHTML_63; 2773 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_outerText_64; 2775 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_outerText_65; 2777 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> insertAdjacentHTML_66; 2779 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> insertAdjacentText_67; 2793 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_74; 2945winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags); 2948 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue); 2951 unsafe winmdroot.Foundation.HRESULT removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess); 2953 winmdroot.Foundation.BSTR className 2960winmdroot.Foundation.HRESULT put_id(winmdroot.Foundation.BSTR v); 2963 unsafe winmdroot.Foundation.HRESULT get_id(winmdroot.Foundation.BSTR* p); 2966 unsafe winmdroot.Foundation.HRESULT get_tagName(winmdroot.Foundation.BSTR* p); 3043 winmdroot.Foundation.BSTR title 3049 winmdroot.Foundation.BSTR language 3077 winmdroot.Foundation.BSTR lang 3099winmdroot.Foundation.HRESULT put_innerHTML(winmdroot.Foundation.BSTR v); 3102 unsafe winmdroot.Foundation.HRESULT get_innerHTML(winmdroot.Foundation.BSTR* p); 3105winmdroot.Foundation.HRESULT put_innerText(winmdroot.Foundation.BSTR v); 3108 unsafe winmdroot.Foundation.HRESULT get_innerText(winmdroot.Foundation.BSTR* p); 3111winmdroot.Foundation.HRESULT put_outerHTML(winmdroot.Foundation.BSTR v); 3114 unsafe winmdroot.Foundation.HRESULT get_outerHTML(winmdroot.Foundation.BSTR* p); 3117winmdroot.Foundation.HRESULT put_outerText(winmdroot.Foundation.BSTR v); 3120 unsafe winmdroot.Foundation.HRESULT get_outerText(winmdroot.Foundation.BSTR* p); 3123winmdroot.Foundation.HRESULT insertAdjacentHTML(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR html); 3126winmdroot.Foundation.HRESULT insertAdjacentText(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR text); 3153 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String);
_generated\149\Windows.Win32.IHTMLElement2.g.cs (128)
139 private static winmdroot.Foundation.HRESULT get_scopeName(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 157 internal winmdroot.Foundation.BSTR scopeName 161 winmdroot.Foundation.BSTR __result; 162 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 276 private static winmdroot.Foundation.HRESULT componentFromPoint(IHTMLElement2* pThis, int x, int y, winmdroot.Foundation.BSTR* component) 293 public winmdroot.Foundation.BSTR componentFromPoint(int x, int y) 295 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 296 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLElement2*)Unsafe.AsPointer(ref this), x, y, &__retVal).ThrowOnFailure(); 1197 private static winmdroot.Foundation.HRESULT setExpression(IHTMLElement2* pThis, winmdroot.Foundation.BSTR propname, winmdroot.Foundation.BSTR expression, winmdroot.Foundation.BSTR language) 1214 public void setExpression(winmdroot.Foundation.BSTR propname, winmdroot.Foundation.BSTR expression, winmdroot.Foundation.BSTR language) 1216 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLElement2*)Unsafe.AsPointer(ref this), propname, expression, language).ThrowOnFailure(); 1222 private static winmdroot.Foundation.HRESULT getExpression(IHTMLElement2* pThis, winmdroot.Foundation.BSTR propname, winmdroot.System.Variant.VARIANT* expression) 1239 public winmdroot.System.Variant.VARIANT getExpression(winmdroot.Foundation.BSTR propname) 1242 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLElement2*)Unsafe.AsPointer(ref this), propname, &__retVal).ThrowOnFailure(); 1249 private static winmdroot.Foundation.HRESULT removeExpression(IHTMLElement2* pThis, winmdroot.Foundation.BSTR propname, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 1266 public winmdroot.Foundation.VARIANT_BOOL removeExpression(winmdroot.Foundation.BSTR propname) 1269 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLElement2*)Unsafe.AsPointer(ref this), propname, &__retVal).ThrowOnFailure(); 1362 private static winmdroot.Foundation.HRESULT put_accessKey(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v) 1380 internal winmdroot.Foundation.BSTR accessKey 1384 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1388 winmdroot.Foundation.BSTR __result; 1389 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1397 private static winmdroot.Foundation.HRESULT get_accessKey(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 1802 /// <inheritdoc cref="attachEvent(winmdroot.Foundation.BSTR, winmdroot.System.Com.IDispatch*, winmdroot.Foundation.VARIANT_BOOL*)"/> 1804 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 1816 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLElement2* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 1833 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 1835 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); 1841 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLElement2* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 1858 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 1860 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLElement2*)Unsafe.AsPointer(ref this), @event, pDisp); 2121 private static winmdroot.Foundation.HRESULT put_dir(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v) 2139 internal winmdroot.Foundation.BSTR dir 2143 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2147 winmdroot.Foundation.BSTR __result; 2148 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2156 private static winmdroot.Foundation.HRESULT get_dir(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 2504 private static winmdroot.Foundation.HRESULT insertAdjacentElement(IHTMLElement2* pThis, winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement* insertedElement, winmdroot.Web.MsHtml.IHTMLElement** inserted) 2521 public unsafe winmdroot.Foundation.HRESULT insertAdjacentElement(winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement* insertedElement, winmdroot.Web.MsHtml.IHTMLElement** inserted) 2523 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLElement2*)Unsafe.AsPointer(ref this), where, insertedElement, inserted); 2529 private static winmdroot.Foundation.HRESULT applyElement(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLElement* apply, winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement** applied) 2546 public unsafe winmdroot.Web.MsHtml.IHTMLElement* applyElement(winmdroot.Web.MsHtml.IHTMLElement* apply, winmdroot.Foundation.BSTR where) 2549 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLElement2*)Unsafe.AsPointer(ref this), apply, where, &__retVal).ThrowOnFailure(); 2556 private static winmdroot.Foundation.HRESULT getAdjacentText(IHTMLElement2* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR* text) 2573 public winmdroot.Foundation.BSTR getAdjacentText(winmdroot.Foundation.BSTR where) 2575 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 2576 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLElement2*)Unsafe.AsPointer(ref this), where, &__retVal).ThrowOnFailure(); 2583 private static winmdroot.Foundation.HRESULT replaceAdjacentText(IHTMLElement2* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR newText, winmdroot.Foundation.BSTR* oldText) 2600 public winmdroot.Foundation.BSTR replaceAdjacentText(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR newText) 2602 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 2603 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLElement2*)Unsafe.AsPointer(ref this), where, newText, &__retVal).ThrowOnFailure(); 2643 /// <inheritdoc cref="addBehavior(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*)"/> 2645 internal unsafe int addBehavior(winmdroot.Foundation.BSTR bstrUrl, in winmdroot.System.Variant.VARIANT pvarFactory) 2657 private static winmdroot.Foundation.HRESULT addBehavior(IHTMLElement2* pThis, winmdroot.Foundation.BSTR bstrUrl, winmdroot.System.Variant.VARIANT* pvarFactory, int* pCookie) 2674 public unsafe int addBehavior(winmdroot.Foundation.BSTR bstrUrl, winmdroot.System.Variant.VARIANT* pvarFactory) 2677 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[95])((IHTMLElement2*)Unsafe.AsPointer(ref this), bstrUrl, pvarFactory, &__retVal).ThrowOnFailure(); 2773 private static winmdroot.Foundation.HRESULT put_tagUrn(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v) 2791 internal winmdroot.Foundation.BSTR tagUrn 2795 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[99])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2799 winmdroot.Foundation.BSTR __result; 2800 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[100])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2808 private static winmdroot.Foundation.HRESULT get_tagUrn(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 2916 private static winmdroot.Foundation.HRESULT getElementsByTagName(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 2933 public unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 2935 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[104])((IHTMLElement2*)Unsafe.AsPointer(ref this), v, pelColl); 2975 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_scopeName_8; 2985 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> componentFromPoint_13; 3051 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> setExpression_46; 3053 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getExpression_47; 3055 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeExpression_48; 3063 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_accessKey_52; 3065 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accessKey_53; 3093 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_67; 3095 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_68; 3115 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dir_78; 3117 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dir_79; 3141 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> insertAdjacentElement_91; 3143 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> applyElement_92; 3145 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> getAdjacentText_93; 3147 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> replaceAdjacentText_94; 3151 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> addBehavior_96; 3159 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_tagUrn_100; 3161 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_tagUrn_101; 3169 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> getElementsByTagName_105; 3291 winmdroot.Foundation.BSTR scopeName 3309 unsafe winmdroot.Foundation.HRESULT componentFromPoint(int x, int y, winmdroot.Foundation.BSTR* component); 3410winmdroot.Foundation.HRESULT setExpression(winmdroot.Foundation.BSTR propname, winmdroot.Foundation.BSTR expression, winmdroot.Foundation.BSTR language); 3413 unsafe winmdroot.Foundation.HRESULT getExpression(winmdroot.Foundation.BSTR propname, winmdroot.System.Variant.VARIANT* expression); 3416 unsafe winmdroot.Foundation.HRESULT removeExpression(winmdroot.Foundation.BSTR propname, winmdroot.Foundation.VARIANT_BOOL* pfSuccess); 3427 winmdroot.Foundation.BSTR accessKey 3473 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 3476 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp); 3507 winmdroot.Foundation.BSTR dir 3547 unsafe winmdroot.Foundation.HRESULT insertAdjacentElement(winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement* insertedElement, winmdroot.Web.MsHtml.IHTMLElement** inserted); 3550 unsafe winmdroot.Foundation.HRESULT applyElement(winmdroot.Web.MsHtml.IHTMLElement* apply, winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement** applied); 3553 unsafe winmdroot.Foundation.HRESULT getAdjacentText(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR* text); 3556 unsafe winmdroot.Foundation.HRESULT replaceAdjacentText(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR newText, winmdroot.Foundation.BSTR* oldText); 3562 unsafe winmdroot.Foundation.HRESULT addBehavior(winmdroot.Foundation.BSTR bstrUrl, winmdroot.System.Variant.VARIANT* pvarFactory, int* pCookie); 3577 winmdroot.Foundation.BSTR tagUrn 3595 unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl);
_generated\150\Windows.Win32.IHTMLElement3.g.cs (16)
485 private static winmdroot.Foundation.HRESULT put_contentEditable(IHTMLElement3* pThis, winmdroot.Foundation.BSTR v) 503 internal winmdroot.Foundation.BSTR contentEditable 507 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 511 winmdroot.Foundation.BSTR __result; 512 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 520 private static winmdroot.Foundation.HRESULT get_contentEditable(IHTMLElement3* pThis, winmdroot.Foundation.BSTR* p) 829 /// <inheritdoc cref="fireEvent(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.Foundation.VARIANT_BOOL*)"/> 831 internal unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, in winmdroot.System.Variant.VARIANT pvarEventObject, out winmdroot.Foundation.VARIANT_BOOL pfCancelled) 846 private static winmdroot.Foundation.HRESULT fireEvent(IHTMLElement3* pThis, winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 863 public unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 865 return ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLElement3*)Unsafe.AsPointer(ref this), bstrEventName, pvarEventObject, pfCancelled); 1435 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_contentEditable_20; 1437 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_contentEditable_21; 1459 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> fireEvent_32; 1602 winmdroot.Foundation.BSTR contentEditable 1643 unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled);
_generated\151\Windows.Win32.IHTMLElementCollection.g.cs (7)
139 private static winmdroot.Foundation.HRESULT toString(IHTMLElementCollection* pThis, winmdroot.Foundation.BSTR* String) 156 public winmdroot.Foundation.BSTR toString() 158 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 159 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 348 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_8; 389 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String);
_generated\152\Windows.Win32.IHTMLEventObj.g.cs (12)
524 private static winmdroot.Foundation.HRESULT get_type(IHTMLEventObj* pThis, winmdroot.Foundation.BSTR* p) 542 internal winmdroot.Foundation.BSTR type 546 winmdroot.Foundation.BSTR __result; 547 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 555 private static winmdroot.Foundation.HRESULT get_qualifier(IHTMLEventObj* pThis, winmdroot.Foundation.BSTR* p) 573 internal winmdroot.Foundation.BSTR qualifier 577 winmdroot.Foundation.BSTR __result; 578 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 956 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_type_21; 958 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_qualifier_22; 1080 winmdroot.Foundation.BSTR type 1085 winmdroot.Foundation.BSTR qualifier
_generated\154\Windows.Win32.IHTMLFormElement.g.cs (54)
139 private static winmdroot.Foundation.HRESULT put_action(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 157 internal winmdroot.Foundation.BSTR action 161 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 165 winmdroot.Foundation.BSTR __result; 166 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_action(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 195 private static winmdroot.Foundation.HRESULT put_dir(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 213 internal winmdroot.Foundation.BSTR dir 217 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 221 winmdroot.Foundation.BSTR __result; 222 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_dir(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 251 private static winmdroot.Foundation.HRESULT put_encoding(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 269 internal winmdroot.Foundation.BSTR encoding 273 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 277 winmdroot.Foundation.BSTR __result; 278 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT get_encoding(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 307 private static winmdroot.Foundation.HRESULT put_method(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 325 internal winmdroot.Foundation.BSTR method 329 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 333 winmdroot.Foundation.BSTR __result; 334 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 342 private static winmdroot.Foundation.HRESULT get_method(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 394 private static winmdroot.Foundation.HRESULT put_target(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 412 internal winmdroot.Foundation.BSTR target 416 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 420 winmdroot.Foundation.BSTR __result; 421 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 429 private static winmdroot.Foundation.HRESULT get_target(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 450 private static winmdroot.Foundation.HRESULT put_name(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 468 internal winmdroot.Foundation.BSTR name 472 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 476 winmdroot.Foundation.BSTR __result; 477 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 485 private static winmdroot.Foundation.HRESULT get_name(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 843 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_action_8; 845 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_action_9; 847 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dir_10; 849 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dir_11; 851 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_encoding_12; 853 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_encoding_13; 855 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_method_14; 857 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_method_15; 861 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_target_17; 863 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_target_18; 865 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_19; 867 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_20; 937 winmdroot.Foundation.BSTR action 943 winmdroot.Foundation.BSTR dir 949 winmdroot.Foundation.BSTR encoding 955 winmdroot.Foundation.BSTR method 966 winmdroot.Foundation.BSTR target 972 winmdroot.Foundation.BSTR name
_generated\155\Windows.Win32.IHTMLFrameBase.g.cs (36)
139 private static winmdroot.Foundation.HRESULT put_src(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 157 internal winmdroot.Foundation.BSTR src 161 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 165 winmdroot.Foundation.BSTR __result; 166 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_src(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 195 private static winmdroot.Foundation.HRESULT put_name(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 213 internal winmdroot.Foundation.BSTR name 217 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 221 winmdroot.Foundation.BSTR __result; 222 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_name(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 307 private static winmdroot.Foundation.HRESULT put_frameBorder(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 325 internal winmdroot.Foundation.BSTR frameBorder 329 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 333 winmdroot.Foundation.BSTR __result; 334 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 342 private static winmdroot.Foundation.HRESULT get_frameBorder(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 587 private static winmdroot.Foundation.HRESULT put_scrolling(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 605 internal winmdroot.Foundation.BSTR scrolling 609 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 613 winmdroot.Foundation.BSTR __result; 614 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 622 private static winmdroot.Foundation.HRESULT get_scrolling(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 677 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_src_8; 679 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_src_9; 681 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_10; 683 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_11; 689 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_frameBorder_14; 691 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_frameBorder_15; 709 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_scrolling_24; 711 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_scrolling_25; 753 winmdroot.Foundation.BSTR src 759 winmdroot.Foundation.BSTR name 771 winmdroot.Foundation.BSTR frameBorder 801 winmdroot.Foundation.BSTR scrolling
_generated\158\Windows.Win32.IHTMLImgElement.g.cs (135)
195 private static winmdroot.Foundation.HRESULT put_useMap(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 213 internal winmdroot.Foundation.BSTR useMap 217 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 221 winmdroot.Foundation.BSTR __result; 222 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_useMap(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 251 private static winmdroot.Foundation.HRESULT get_mimeType(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 269 internal winmdroot.Foundation.BSTR mimeType 273 winmdroot.Foundation.BSTR __result; 274 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 282 private static winmdroot.Foundation.HRESULT get_fileSize(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 300 internal winmdroot.Foundation.BSTR fileSize 304 winmdroot.Foundation.BSTR __result; 305 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 313 private static winmdroot.Foundation.HRESULT get_fileCreatedDate(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 331 internal winmdroot.Foundation.BSTR fileCreatedDate 335 winmdroot.Foundation.BSTR __result; 336 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 344 private static winmdroot.Foundation.HRESULT get_fileModifiedDate(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 362 internal winmdroot.Foundation.BSTR fileModifiedDate 366 winmdroot.Foundation.BSTR __result; 367 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 375 private static winmdroot.Foundation.HRESULT get_fileUpdatedDate(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 393 internal winmdroot.Foundation.BSTR fileUpdatedDate 397 winmdroot.Foundation.BSTR __result; 398 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 406 private static winmdroot.Foundation.HRESULT get_protocol(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 424 internal winmdroot.Foundation.BSTR protocol 428 winmdroot.Foundation.BSTR __result; 429 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 437 private static winmdroot.Foundation.HRESULT get_href(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 455 internal winmdroot.Foundation.BSTR href 459 winmdroot.Foundation.BSTR __result; 460 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 468 private static winmdroot.Foundation.HRESULT get_nameProp(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 486 internal winmdroot.Foundation.BSTR nameProp 490 winmdroot.Foundation.BSTR __result; 491 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 667 private static winmdroot.Foundation.HRESULT put_alt(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 685 internal winmdroot.Foundation.BSTR alt 689 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 693 winmdroot.Foundation.BSTR __result; 694 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 702 private static winmdroot.Foundation.HRESULT get_alt(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 723 private static winmdroot.Foundation.HRESULT put_src(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 741 internal winmdroot.Foundation.BSTR src 745 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 749 winmdroot.Foundation.BSTR __result; 750 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 758 private static winmdroot.Foundation.HRESULT get_src(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 779 private static winmdroot.Foundation.HRESULT put_lowsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 797 internal winmdroot.Foundation.BSTR lowsrc 801 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 805 winmdroot.Foundation.BSTR __result; 806 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 814 private static winmdroot.Foundation.HRESULT get_lowsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 835 private static winmdroot.Foundation.HRESULT put_vrml(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 853 internal winmdroot.Foundation.BSTR vrml 857 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 861 winmdroot.Foundation.BSTR __result; 862 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 870 private static winmdroot.Foundation.HRESULT get_vrml(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 891 private static winmdroot.Foundation.HRESULT put_dynsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 909 internal winmdroot.Foundation.BSTR dynsrc 913 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 917 winmdroot.Foundation.BSTR __result; 918 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 926 private static winmdroot.Foundation.HRESULT get_dynsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 947 private static winmdroot.Foundation.HRESULT get_readyState(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 965 internal winmdroot.Foundation.BSTR readyState 969 winmdroot.Foundation.BSTR __result; 970 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1065 private static winmdroot.Foundation.HRESULT put_align(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 1083 internal winmdroot.Foundation.BSTR align 1087 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1091 winmdroot.Foundation.BSTR __result; 1092 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1100 private static winmdroot.Foundation.HRESULT get_align(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 1289 private static winmdroot.Foundation.HRESULT put_name(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 1307 internal winmdroot.Foundation.BSTR name 1311 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1315 winmdroot.Foundation.BSTR __result; 1316 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1324 private static winmdroot.Foundation.HRESULT get_name(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 1457 private static winmdroot.Foundation.HRESULT put_start(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 1475 internal winmdroot.Foundation.BSTR start 1479 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1483 winmdroot.Foundation.BSTR __result; 1484 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1492 private static winmdroot.Foundation.HRESULT get_start(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 1551 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_useMap_10; 1553 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_useMap_11; 1555 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_mimeType_12; 1557 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileSize_13; 1559 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileCreatedDate_14; 1561 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileModifiedDate_15; 1563 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileUpdatedDate_16; 1565 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_protocol_17; 1567 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_href_18; 1569 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_nameProp_19; 1583 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_alt_26; 1585 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_alt_27; 1587 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_src_28; 1589 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_src_29; 1591 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_lowsrc_30; 1593 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lowsrc_31; 1595 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_vrml_32; 1597 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_vrml_33; 1599 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dynsrc_34; 1601 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dynsrc_35; 1603 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_readyState_36; 1611 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_align_40; 1613 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_align_41; 1627 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_48; 1629 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_49; 1639 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_start_54; 1641 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_start_55; 1719 winmdroot.Foundation.BSTR useMap 1725 winmdroot.Foundation.BSTR mimeType 1730 winmdroot.Foundation.BSTR fileSize 1735 winmdroot.Foundation.BSTR fileCreatedDate 1740 winmdroot.Foundation.BSTR fileModifiedDate 1745 winmdroot.Foundation.BSTR fileUpdatedDate 1750 winmdroot.Foundation.BSTR protocol 1755 winmdroot.Foundation.BSTR href 1760 winmdroot.Foundation.BSTR nameProp 1783 winmdroot.Foundation.BSTR alt 1789 winmdroot.Foundation.BSTR src 1795 winmdroot.Foundation.BSTR lowsrc 1801 winmdroot.Foundation.BSTR vrml 1807 winmdroot.Foundation.BSTR dynsrc 1813 winmdroot.Foundation.BSTR readyState 1829 winmdroot.Foundation.BSTR align 1853 winmdroot.Foundation.BSTR name 1871 winmdroot.Foundation.BSTR start
_generated\159\Windows.Win32.IHTMLLocation.g.cs (93)
139 private static winmdroot.Foundation.HRESULT put_href(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 157 internal winmdroot.Foundation.BSTR href 161 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 165 /// <inheritdoc cref="get_href(winmdroot.Foundation.BSTR*)"/> 167 internal unsafe winmdroot.Foundation.HRESULT get_href(out winmdroot.Foundation.BSTR p) 169 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 179 private static winmdroot.Foundation.HRESULT get_href(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 196 public unsafe winmdroot.Foundation.HRESULT get_href(winmdroot.Foundation.BSTR* p) 198 return ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLLocation*)Unsafe.AsPointer(ref this), p); 204 private static winmdroot.Foundation.HRESULT put_protocol(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 222 internal winmdroot.Foundation.BSTR protocol 226 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 230 winmdroot.Foundation.BSTR __result; 231 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 239 private static winmdroot.Foundation.HRESULT get_protocol(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 260 private static winmdroot.Foundation.HRESULT put_host(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 278 internal winmdroot.Foundation.BSTR host 282 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 286 winmdroot.Foundation.BSTR __result; 287 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 295 private static winmdroot.Foundation.HRESULT get_host(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 316 private static winmdroot.Foundation.HRESULT put_hostname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 334 internal winmdroot.Foundation.BSTR hostname 338 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 342 winmdroot.Foundation.BSTR __result; 343 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 351 private static winmdroot.Foundation.HRESULT get_hostname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 372 private static winmdroot.Foundation.HRESULT put_port(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 390 internal winmdroot.Foundation.BSTR port 394 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 398 winmdroot.Foundation.BSTR __result; 399 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 407 private static winmdroot.Foundation.HRESULT get_port(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 428 private static winmdroot.Foundation.HRESULT put_pathname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 446 internal winmdroot.Foundation.BSTR pathname 450 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 454 winmdroot.Foundation.BSTR __result; 455 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 463 private static winmdroot.Foundation.HRESULT get_pathname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 484 private static winmdroot.Foundation.HRESULT put_search(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 502 internal winmdroot.Foundation.BSTR search 506 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 510 winmdroot.Foundation.BSTR __result; 511 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 519 private static winmdroot.Foundation.HRESULT get_search(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 540 private static winmdroot.Foundation.HRESULT put_hash(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 558 internal winmdroot.Foundation.BSTR hash 562 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 566 winmdroot.Foundation.BSTR __result; 567 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 575 private static winmdroot.Foundation.HRESULT get_hash(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 621 private static winmdroot.Foundation.HRESULT replace(IHTMLLocation* pThis, winmdroot.Foundation.BSTR bstr) 638 public void replace(winmdroot.Foundation.BSTR bstr) 640 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLLocation*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 646 private static winmdroot.Foundation.HRESULT assign(IHTMLLocation* pThis, winmdroot.Foundation.BSTR bstr) 663 public void assign(winmdroot.Foundation.BSTR bstr) 665 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLLocation*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 671 private static winmdroot.Foundation.HRESULT toString(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* @string) 688 public winmdroot.Foundation.BSTR toString() 690 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 691 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 732 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_href_8; 734 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_href_9; 736 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_protocol_10; 738 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_protocol_11; 740 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_host_12; 742 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_host_13; 744 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_hostname_14; 746 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_hostname_15; 748 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_port_16; 750 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_port_17; 752 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pathname_18; 754 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pathname_19; 756 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_search_20; 758 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_search_21; 760 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_hash_22; 762 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_hash_23; 766 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> replace_25; 768 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> assign_26; 770 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_27; 814 winmdroot.Foundation.BSTR href 820 unsafe winmdroot.Foundation.HRESULT get_href(winmdroot.Foundation.BSTR* p); 822 winmdroot.Foundation.BSTR protocol 828 winmdroot.Foundation.BSTR host 834 winmdroot.Foundation.BSTR hostname 840 winmdroot.Foundation.BSTR port 846 winmdroot.Foundation.BSTR pathname 852 winmdroot.Foundation.BSTR search 858 winmdroot.Foundation.BSTR hash 868winmdroot.Foundation.HRESULT replace(winmdroot.Foundation.BSTR bstr); 871winmdroot.Foundation.HRESULT assign(winmdroot.Foundation.BSTR bstr); 874 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* @string);
_generated\161\Windows.Win32.IHTMLOpsProfile.g.cs (32)
139 private static winmdroot.Foundation.HRESULT addRequest(IHTMLOpsProfile* pThis, winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success) 156 public winmdroot.Foundation.VARIANT_BOOL addRequest(winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved) 159 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), name, reserved, &__retVal).ThrowOnFailure(); 216 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLOpsProfile* pThis, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR* value) 233 public winmdroot.Foundation.BSTR getAttribute(winmdroot.Foundation.BSTR name) 235 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 236 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), name, &__retVal).ThrowOnFailure(); 243 private static winmdroot.Foundation.HRESULT setAttribute(IHTMLOpsProfile* pThis, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR value, winmdroot.System.Variant.VARIANT prefs, winmdroot.Foundation.VARIANT_BOOL* success) 260 public winmdroot.Foundation.VARIANT_BOOL setAttribute(winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR value, winmdroot.System.Variant.VARIANT prefs) 263 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), name, value, prefs, &__retVal).ThrowOnFailure(); 297 private static winmdroot.Foundation.HRESULT addReadRequest(IHTMLOpsProfile* pThis, winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success) 314 public winmdroot.Foundation.VARIANT_BOOL addReadRequest(winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved) 317 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), name, reserved, &__retVal).ThrowOnFailure(); 410 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> addRequest_8; 416 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> getAttribute_11; 418 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> setAttribute_12; 422 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> addReadRequest_14; 460 unsafe winmdroot.Foundation.HRESULT addRequest(winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success); 469 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR* value); 472 unsafe winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR value, winmdroot.System.Variant.VARIANT prefs, winmdroot.Foundation.VARIANT_BOOL* success); 478 unsafe winmdroot.Foundation.HRESULT addReadRequest(winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success);
_generated\162\Windows.Win32.IHTMLOptionElement.g.cs (18)
195 private static winmdroot.Foundation.HRESULT put_value(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR v) 213 internal winmdroot.Foundation.BSTR value 217 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 221 winmdroot.Foundation.BSTR __result; 222 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_value(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR* p) 363 private static winmdroot.Foundation.HRESULT put_text(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR v) 381 internal winmdroot.Foundation.BSTR text 385 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 389 winmdroot.Foundation.BSTR __result; 390 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 398 private static winmdroot.Foundation.HRESULT get_text(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR* p) 488 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_value_10; 490 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_value_11; 500 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_text_16; 502 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_text_17; 545 winmdroot.Foundation.BSTR value 563 winmdroot.Foundation.BSTR text
_generated\167\Windows.Win32.IHTMLRenderStyle.g.cs (45)
139 private static winmdroot.Foundation.HRESULT put_textLineThroughStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 157 internal winmdroot.Foundation.BSTR textLineThroughStyle 161 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 165 winmdroot.Foundation.BSTR __result; 166 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_textLineThroughStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 195 private static winmdroot.Foundation.HRESULT put_textUnderlineStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 213 internal winmdroot.Foundation.BSTR textUnderlineStyle 217 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 221 winmdroot.Foundation.BSTR __result; 222 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_textUnderlineStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 251 private static winmdroot.Foundation.HRESULT put_textEffect(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 269 internal winmdroot.Foundation.BSTR textEffect 273 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 277 winmdroot.Foundation.BSTR __result; 278 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT get_textEffect(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 531 private static winmdroot.Foundation.HRESULT put_defaultTextSelection(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 549 internal winmdroot.Foundation.BSTR defaultTextSelection 553 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 557 winmdroot.Foundation.BSTR __result; 558 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 566 private static winmdroot.Foundation.HRESULT get_defaultTextSelection(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 587 private static winmdroot.Foundation.HRESULT put_textDecoration(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 605 internal winmdroot.Foundation.BSTR textDecoration 609 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 613 winmdroot.Foundation.BSTR __result; 614 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 622 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 677 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textLineThroughStyle_8; 679 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textLineThroughStyle_9; 681 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textUnderlineStyle_10; 683 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textUnderlineStyle_11; 685 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textEffect_12; 687 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textEffect_13; 705 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_defaultTextSelection_22; 707 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_defaultTextSelection_23; 709 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textDecoration_24; 711 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_25; 753 winmdroot.Foundation.BSTR textLineThroughStyle 759 winmdroot.Foundation.BSTR textUnderlineStyle 765 winmdroot.Foundation.BSTR textEffect 795 winmdroot.Foundation.BSTR defaultTextSelection 801 winmdroot.Foundation.BSTR textDecoration
_generated\168\Windows.Win32.IHTMLRuleStyle.g.cs (408)
139 private static winmdroot.Foundation.HRESULT put_fontFamily(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 157 internal winmdroot.Foundation.BSTR fontFamily 161 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 165 winmdroot.Foundation.BSTR __result; 166 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_fontFamily(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 195 private static winmdroot.Foundation.HRESULT put_fontStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 213 internal winmdroot.Foundation.BSTR fontStyle 217 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 221 winmdroot.Foundation.BSTR __result; 222 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_fontStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 251 private static winmdroot.Foundation.HRESULT put_fontVariant(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 269 internal winmdroot.Foundation.BSTR fontVariant 273 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 277 winmdroot.Foundation.BSTR __result; 278 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT get_fontVariant(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 307 private static winmdroot.Foundation.HRESULT put_fontWeight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 325 internal winmdroot.Foundation.BSTR fontWeight 329 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 333 winmdroot.Foundation.BSTR __result; 334 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 342 private static winmdroot.Foundation.HRESULT get_fontWeight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 419 private static winmdroot.Foundation.HRESULT put_font(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 437 internal winmdroot.Foundation.BSTR font 441 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 445 winmdroot.Foundation.BSTR __result; 446 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 454 private static winmdroot.Foundation.HRESULT get_font(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 531 private static winmdroot.Foundation.HRESULT put_background(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 549 internal winmdroot.Foundation.BSTR background 553 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 557 winmdroot.Foundation.BSTR __result; 558 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 566 private static winmdroot.Foundation.HRESULT get_background(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 643 private static winmdroot.Foundation.HRESULT put_backgroundImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 661 internal winmdroot.Foundation.BSTR backgroundImage 665 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 669 winmdroot.Foundation.BSTR __result; 670 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 678 private static winmdroot.Foundation.HRESULT get_backgroundImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 699 private static winmdroot.Foundation.HRESULT put_backgroundRepeat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 717 internal winmdroot.Foundation.BSTR backgroundRepeat 721 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 725 winmdroot.Foundation.BSTR __result; 726 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 734 private static winmdroot.Foundation.HRESULT get_backgroundRepeat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 755 private static winmdroot.Foundation.HRESULT put_backgroundAttachment(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 773 internal winmdroot.Foundation.BSTR backgroundAttachment 777 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 781 winmdroot.Foundation.BSTR __result; 782 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 790 private static winmdroot.Foundation.HRESULT get_backgroundAttachment(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 811 private static winmdroot.Foundation.HRESULT put_backgroundPosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 829 internal winmdroot.Foundation.BSTR backgroundPosition 833 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 837 winmdroot.Foundation.BSTR __result; 838 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 846 private static winmdroot.Foundation.HRESULT get_backgroundPosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1091 private static winmdroot.Foundation.HRESULT put_textDecoration(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1109 internal winmdroot.Foundation.BSTR textDecoration 1113 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1117 winmdroot.Foundation.BSTR __result; 1118 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1126 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1483 private static winmdroot.Foundation.HRESULT put_textTransform(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1501 internal winmdroot.Foundation.BSTR textTransform 1505 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1509 winmdroot.Foundation.BSTR __result; 1510 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1518 private static winmdroot.Foundation.HRESULT get_textTransform(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1539 private static winmdroot.Foundation.HRESULT put_textAlign(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1557 internal winmdroot.Foundation.BSTR textAlign 1561 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1565 winmdroot.Foundation.BSTR __result; 1566 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1574 private static winmdroot.Foundation.HRESULT get_textAlign(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1931 private static winmdroot.Foundation.HRESULT put_margin(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1949 internal winmdroot.Foundation.BSTR margin 1953 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1957 winmdroot.Foundation.BSTR __result; 1958 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1966 private static winmdroot.Foundation.HRESULT get_margin(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2211 private static winmdroot.Foundation.HRESULT put_padding(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2229 internal winmdroot.Foundation.BSTR padding 2233 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2237 winmdroot.Foundation.BSTR __result; 2238 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2246 private static winmdroot.Foundation.HRESULT get_padding(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2267 private static winmdroot.Foundation.HRESULT put_border(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2285 internal winmdroot.Foundation.BSTR border 2289 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2293 winmdroot.Foundation.BSTR __result; 2294 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2302 private static winmdroot.Foundation.HRESULT get_border(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2323 private static winmdroot.Foundation.HRESULT put_borderTop(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2341 internal winmdroot.Foundation.BSTR borderTop 2345 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2349 winmdroot.Foundation.BSTR __result; 2350 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2358 private static winmdroot.Foundation.HRESULT get_borderTop(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2379 private static winmdroot.Foundation.HRESULT put_borderRight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2397 internal winmdroot.Foundation.BSTR borderRight 2401 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2405 winmdroot.Foundation.BSTR __result; 2406 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2414 private static winmdroot.Foundation.HRESULT get_borderRight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2435 private static winmdroot.Foundation.HRESULT put_borderBottom(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2453 internal winmdroot.Foundation.BSTR borderBottom 2457 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2461 winmdroot.Foundation.BSTR __result; 2462 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2470 private static winmdroot.Foundation.HRESULT get_borderBottom(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2491 private static winmdroot.Foundation.HRESULT put_borderLeft(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2509 internal winmdroot.Foundation.BSTR borderLeft 2513 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2517 winmdroot.Foundation.BSTR __result; 2518 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2526 private static winmdroot.Foundation.HRESULT get_borderLeft(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2547 private static winmdroot.Foundation.HRESULT put_borderColor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2565 internal winmdroot.Foundation.BSTR borderColor 2569 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2573 winmdroot.Foundation.BSTR __result; 2574 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2582 private static winmdroot.Foundation.HRESULT get_borderColor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2827 private static winmdroot.Foundation.HRESULT put_borderWidth(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2845 internal winmdroot.Foundation.BSTR borderWidth 2849 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[103])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2853 winmdroot.Foundation.BSTR __result; 2854 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[104])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2862 private static winmdroot.Foundation.HRESULT get_borderWidth(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3107 private static winmdroot.Foundation.HRESULT put_borderStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3125 internal winmdroot.Foundation.BSTR borderStyle 3129 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[113])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3133 winmdroot.Foundation.BSTR __result; 3134 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[114])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3142 private static winmdroot.Foundation.HRESULT get_borderStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3163 private static winmdroot.Foundation.HRESULT put_borderTopStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3181 internal winmdroot.Foundation.BSTR borderTopStyle 3185 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[115])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3189 winmdroot.Foundation.BSTR __result; 3190 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[116])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3198 private static winmdroot.Foundation.HRESULT get_borderTopStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3219 private static winmdroot.Foundation.HRESULT put_borderRightStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3237 internal winmdroot.Foundation.BSTR borderRightStyle 3241 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[117])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3245 winmdroot.Foundation.BSTR __result; 3246 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[118])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3254 private static winmdroot.Foundation.HRESULT get_borderRightStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3275 private static winmdroot.Foundation.HRESULT put_borderBottomStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3293 internal winmdroot.Foundation.BSTR borderBottomStyle 3297 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[119])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3301 winmdroot.Foundation.BSTR __result; 3302 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[120])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3310 private static winmdroot.Foundation.HRESULT get_borderBottomStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3331 private static winmdroot.Foundation.HRESULT put_borderLeftStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3349 internal winmdroot.Foundation.BSTR borderLeftStyle 3353 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[121])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3357 winmdroot.Foundation.BSTR __result; 3358 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[122])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3366 private static winmdroot.Foundation.HRESULT get_borderLeftStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3499 private static winmdroot.Foundation.HRESULT put_styleFloat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3517 internal winmdroot.Foundation.BSTR styleFloat 3521 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[127])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3525 winmdroot.Foundation.BSTR __result; 3526 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[128])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3534 private static winmdroot.Foundation.HRESULT get_styleFloat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3555 private static winmdroot.Foundation.HRESULT put_clear(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3573 internal winmdroot.Foundation.BSTR clear 3577 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[129])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3581 winmdroot.Foundation.BSTR __result; 3582 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[130])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3590 private static winmdroot.Foundation.HRESULT get_clear(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3611 private static winmdroot.Foundation.HRESULT put_display(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3629 internal winmdroot.Foundation.BSTR display 3633 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[131])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3637 winmdroot.Foundation.BSTR __result; 3638 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[132])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3646 private static winmdroot.Foundation.HRESULT get_display(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3667 private static winmdroot.Foundation.HRESULT put_visibility(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3685 internal winmdroot.Foundation.BSTR visibility 3689 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[133])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3693 winmdroot.Foundation.BSTR __result; 3694 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[134])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3702 private static winmdroot.Foundation.HRESULT get_visibility(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3723 private static winmdroot.Foundation.HRESULT put_listStyleType(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3741 internal winmdroot.Foundation.BSTR listStyleType 3745 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[135])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3749 winmdroot.Foundation.BSTR __result; 3750 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[136])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3758 private static winmdroot.Foundation.HRESULT get_listStyleType(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3779 private static winmdroot.Foundation.HRESULT put_listStylePosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3797 internal winmdroot.Foundation.BSTR listStylePosition 3801 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[137])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3805 winmdroot.Foundation.BSTR __result; 3806 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[138])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3814 private static winmdroot.Foundation.HRESULT get_listStylePosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3835 private static winmdroot.Foundation.HRESULT put_listStyleImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3853 internal winmdroot.Foundation.BSTR listStyleImage 3857 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[139])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3861 winmdroot.Foundation.BSTR __result; 3862 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[140])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3870 private static winmdroot.Foundation.HRESULT get_listStyleImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3891 private static winmdroot.Foundation.HRESULT put_listStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3909 internal winmdroot.Foundation.BSTR listStyle 3913 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[141])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3917 winmdroot.Foundation.BSTR __result; 3918 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[142])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3926 private static winmdroot.Foundation.HRESULT get_listStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3947 private static winmdroot.Foundation.HRESULT put_whiteSpace(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3965 internal winmdroot.Foundation.BSTR whiteSpace 3969 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[143])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3973 winmdroot.Foundation.BSTR __result; 3974 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[144])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3982 private static winmdroot.Foundation.HRESULT get_whiteSpace(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4115 private static winmdroot.Foundation.HRESULT get_position(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4133 internal winmdroot.Foundation.BSTR position 4137 winmdroot.Foundation.BSTR __result; 4138 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[149])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4202 private static winmdroot.Foundation.HRESULT put_overflow(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4220 internal winmdroot.Foundation.BSTR overflow 4224 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[152])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4228 winmdroot.Foundation.BSTR __result; 4229 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[153])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4237 private static winmdroot.Foundation.HRESULT get_overflow(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4258 private static winmdroot.Foundation.HRESULT put_pageBreakBefore(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4276 internal winmdroot.Foundation.BSTR pageBreakBefore 4280 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[154])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4284 winmdroot.Foundation.BSTR __result; 4285 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[155])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4293 private static winmdroot.Foundation.HRESULT get_pageBreakBefore(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4314 private static winmdroot.Foundation.HRESULT put_pageBreakAfter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4332 internal winmdroot.Foundation.BSTR pageBreakAfter 4336 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[156])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4340 winmdroot.Foundation.BSTR __result; 4341 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[157])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4349 private static winmdroot.Foundation.HRESULT get_pageBreakAfter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4370 private static winmdroot.Foundation.HRESULT put_cssText(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4388 internal winmdroot.Foundation.BSTR cssText 4392 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[158])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4396 winmdroot.Foundation.BSTR __result; 4397 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[159])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4405 private static winmdroot.Foundation.HRESULT get_cssText(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4426 private static winmdroot.Foundation.HRESULT put_cursor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4444 internal winmdroot.Foundation.BSTR cursor 4448 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[160])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4452 winmdroot.Foundation.BSTR __result; 4453 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[161])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4461 private static winmdroot.Foundation.HRESULT get_cursor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4482 private static winmdroot.Foundation.HRESULT put_clip(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4500 internal winmdroot.Foundation.BSTR clip 4504 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[162])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4508 winmdroot.Foundation.BSTR __result; 4509 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[163])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4517 private static winmdroot.Foundation.HRESULT get_clip(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4538 private static winmdroot.Foundation.HRESULT put_filter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4556 internal winmdroot.Foundation.BSTR filter 4560 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[164])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4564 winmdroot.Foundation.BSTR __result; 4565 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[165])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4573 private static winmdroot.Foundation.HRESULT get_filter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4594 private static winmdroot.Foundation.HRESULT setAttribute(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 4611 public void setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 4613 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[166])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), strAttributeName, AttributeValue, lFlags).ThrowOnFailure(); 4619 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 4636 public winmdroot.System.Variant.VARIANT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags) 4639 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[167])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 4646 private static winmdroot.Foundation.HRESULT removeAttribute(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 4663 public winmdroot.Foundation.VARIANT_BOOL removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags) 4666 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[168])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 4707 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontFamily_8; 4709 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontFamily_9; 4711 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontStyle_10; 4713 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontStyle_11; 4715 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontVariant_12; 4717 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontVariant_13; 4719 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontWeight_14; 4721 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontWeight_15; 4727 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_font_18; 4729 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_font_19; 4735 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_background_22; 4737 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_background_23; 4743 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundImage_26; 4745 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundImage_27; 4747 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundRepeat_28; 4749 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundRepeat_29; 4751 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundAttachment_30; 4753 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundAttachment_31; 4755 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundPosition_32; 4757 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundPosition_33; 4775 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textDecoration_42; 4777 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_43; 4803 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textTransform_56; 4805 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textTransform_57; 4807 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textAlign_58; 4809 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAlign_59; 4835 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_margin_72; 4837 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_margin_73; 4855 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_padding_82; 4857 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_padding_83; 4859 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_border_84; 4861 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_border_85; 4863 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTop_86; 4865 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTop_87; 4867 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRight_88; 4869 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRight_89; 4871 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottom_90; 4873 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottom_91; 4875 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeft_92; 4877 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeft_93; 4879 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderColor_94; 4881 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderColor_95; 4899 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderWidth_104; 4901 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderWidth_105; 4919 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderStyle_114; 4921 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderStyle_115; 4923 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTopStyle_116; 4925 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTopStyle_117; 4927 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRightStyle_118; 4929 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRightStyle_119; 4931 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottomStyle_120; 4933 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottomStyle_121; 4935 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeftStyle_122; 4937 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeftStyle_123; 4947 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_styleFloat_128; 4949 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_styleFloat_129; 4951 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clear_130; 4953 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clear_131; 4955 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_display_132; 4957 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_display_133; 4959 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_visibility_134; 4961 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_visibility_135; 4963 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleType_136; 4965 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleType_137; 4967 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStylePosition_138; 4969 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStylePosition_139; 4971 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleImage_140; 4973 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleImage_141; 4975 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyle_142; 4977 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyle_143; 4979 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_whiteSpace_144; 4981 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_whiteSpace_145; 4991 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_position_150; 4997 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_overflow_153; 4999 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflow_154; 5001 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakBefore_155; 5003 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakBefore_156; 5005 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakAfter_157; 5007 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakAfter_158; 5009 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cssText_159; 5011 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cssText_160; 5013 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cursor_161; 5015 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cursor_162; 5017 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clip_163; 5019 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clip_164; 5021 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_filter_165; 5023 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_filter_166; 5025 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT> setAttribute_167; 5027 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_168; 5029 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeAttribute_169; 5215 winmdroot.Foundation.BSTR fontFamily 5221 winmdroot.Foundation.BSTR fontStyle 5227 winmdroot.Foundation.BSTR fontVariant 5233 winmdroot.Foundation.BSTR fontWeight 5245 winmdroot.Foundation.BSTR font 5257 winmdroot.Foundation.BSTR background 5269 winmdroot.Foundation.BSTR backgroundImage 5275 winmdroot.Foundation.BSTR backgroundRepeat 5281 winmdroot.Foundation.BSTR backgroundAttachment 5287 winmdroot.Foundation.BSTR backgroundPosition 5317 winmdroot.Foundation.BSTR textDecoration 5359 winmdroot.Foundation.BSTR textTransform 5365 winmdroot.Foundation.BSTR textAlign 5407 winmdroot.Foundation.BSTR margin 5437 winmdroot.Foundation.BSTR padding 5443 winmdroot.Foundation.BSTR border 5449 winmdroot.Foundation.BSTR borderTop 5455 winmdroot.Foundation.BSTR borderRight 5461 winmdroot.Foundation.BSTR borderBottom 5467 winmdroot.Foundation.BSTR borderLeft 5473 winmdroot.Foundation.BSTR borderColor 5503 winmdroot.Foundation.BSTR borderWidth 5533 winmdroot.Foundation.BSTR borderStyle 5539 winmdroot.Foundation.BSTR borderTopStyle 5545 winmdroot.Foundation.BSTR borderRightStyle 5551 winmdroot.Foundation.BSTR borderBottomStyle 5557 winmdroot.Foundation.BSTR borderLeftStyle 5575 winmdroot.Foundation.BSTR styleFloat 5581 winmdroot.Foundation.BSTR clear 5587 winmdroot.Foundation.BSTR display 5593 winmdroot.Foundation.BSTR visibility 5599 winmdroot.Foundation.BSTR listStyleType 5605 winmdroot.Foundation.BSTR listStylePosition 5611 winmdroot.Foundation.BSTR listStyleImage 5617 winmdroot.Foundation.BSTR listStyle 5623 winmdroot.Foundation.BSTR whiteSpace 5641 winmdroot.Foundation.BSTR position 5652 winmdroot.Foundation.BSTR overflow 5658 winmdroot.Foundation.BSTR pageBreakBefore 5664 winmdroot.Foundation.BSTR pageBreakAfter 5670 winmdroot.Foundation.BSTR cssText 5676 winmdroot.Foundation.BSTR cursor 5682 winmdroot.Foundation.BSTR clip 5688 winmdroot.Foundation.BSTR filter 5695winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags); 5698 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue); 5701 unsafe winmdroot.Foundation.HRESULT removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess);
_generated\170\Windows.Win32.IHTMLSelectionObject.g.cs (6)
216 private static winmdroot.Foundation.HRESULT get_type(IHTMLSelectionObject* pThis, winmdroot.Foundation.BSTR* p) 234 internal winmdroot.Foundation.BSTR type 238 winmdroot.Foundation.BSTR __result; 239 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 287 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_type_11; 324 winmdroot.Foundation.BSTR type
_generated\171\Windows.Win32.IHTMLStyle.g.cs (419)
139 private static winmdroot.Foundation.HRESULT put_fontFamily(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 157 internal winmdroot.Foundation.BSTR fontFamily 161 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 165 winmdroot.Foundation.BSTR __result; 166 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_fontFamily(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 195 private static winmdroot.Foundation.HRESULT put_fontStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 213 internal winmdroot.Foundation.BSTR fontStyle 217 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 221 winmdroot.Foundation.BSTR __result; 222 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_fontStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 251 private static winmdroot.Foundation.HRESULT put_fontVariant(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 269 internal winmdroot.Foundation.BSTR fontVariant 273 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 277 winmdroot.Foundation.BSTR __result; 278 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT get_fontVariant(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 307 private static winmdroot.Foundation.HRESULT put_fontWeight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 325 internal winmdroot.Foundation.BSTR fontWeight 329 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 333 winmdroot.Foundation.BSTR __result; 334 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 342 private static winmdroot.Foundation.HRESULT get_fontWeight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 419 private static winmdroot.Foundation.HRESULT put_font(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 437 internal winmdroot.Foundation.BSTR font 441 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 445 winmdroot.Foundation.BSTR __result; 446 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 454 private static winmdroot.Foundation.HRESULT get_font(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 531 private static winmdroot.Foundation.HRESULT put_background(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 549 internal winmdroot.Foundation.BSTR background 553 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 557 winmdroot.Foundation.BSTR __result; 558 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 566 private static winmdroot.Foundation.HRESULT get_background(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 643 private static winmdroot.Foundation.HRESULT put_backgroundImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 661 internal winmdroot.Foundation.BSTR backgroundImage 665 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 669 winmdroot.Foundation.BSTR __result; 670 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 678 private static winmdroot.Foundation.HRESULT get_backgroundImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 699 private static winmdroot.Foundation.HRESULT put_backgroundRepeat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 717 internal winmdroot.Foundation.BSTR backgroundRepeat 721 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 725 winmdroot.Foundation.BSTR __result; 726 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 734 private static winmdroot.Foundation.HRESULT get_backgroundRepeat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 755 private static winmdroot.Foundation.HRESULT put_backgroundAttachment(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 773 internal winmdroot.Foundation.BSTR backgroundAttachment 777 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 781 winmdroot.Foundation.BSTR __result; 782 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 790 private static winmdroot.Foundation.HRESULT get_backgroundAttachment(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 811 private static winmdroot.Foundation.HRESULT put_backgroundPosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 829 internal winmdroot.Foundation.BSTR backgroundPosition 833 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 837 winmdroot.Foundation.BSTR __result; 838 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 846 private static winmdroot.Foundation.HRESULT get_backgroundPosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1091 private static winmdroot.Foundation.HRESULT put_textDecoration(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1109 internal winmdroot.Foundation.BSTR textDecoration 1113 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1117 winmdroot.Foundation.BSTR __result; 1118 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1126 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1483 private static winmdroot.Foundation.HRESULT put_textTransform(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1501 internal winmdroot.Foundation.BSTR textTransform 1505 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1509 winmdroot.Foundation.BSTR __result; 1510 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1518 private static winmdroot.Foundation.HRESULT get_textTransform(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1539 private static winmdroot.Foundation.HRESULT put_textAlign(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1557 internal winmdroot.Foundation.BSTR textAlign 1561 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1565 winmdroot.Foundation.BSTR __result; 1566 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1574 private static winmdroot.Foundation.HRESULT get_textAlign(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1931 private static winmdroot.Foundation.HRESULT put_margin(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1949 internal winmdroot.Foundation.BSTR margin 1953 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1957 winmdroot.Foundation.BSTR __result; 1958 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1966 private static winmdroot.Foundation.HRESULT get_margin(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2211 private static winmdroot.Foundation.HRESULT put_padding(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2229 internal winmdroot.Foundation.BSTR padding 2233 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2237 winmdroot.Foundation.BSTR __result; 2238 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2246 private static winmdroot.Foundation.HRESULT get_padding(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2267 private static winmdroot.Foundation.HRESULT put_border(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2285 internal winmdroot.Foundation.BSTR border 2289 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2293 winmdroot.Foundation.BSTR __result; 2294 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2302 private static winmdroot.Foundation.HRESULT get_border(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2323 private static winmdroot.Foundation.HRESULT put_borderTop(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2341 internal winmdroot.Foundation.BSTR borderTop 2345 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2349 winmdroot.Foundation.BSTR __result; 2350 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2358 private static winmdroot.Foundation.HRESULT get_borderTop(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2379 private static winmdroot.Foundation.HRESULT put_borderRight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2397 internal winmdroot.Foundation.BSTR borderRight 2401 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2405 winmdroot.Foundation.BSTR __result; 2406 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2414 private static winmdroot.Foundation.HRESULT get_borderRight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2435 private static winmdroot.Foundation.HRESULT put_borderBottom(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2453 internal winmdroot.Foundation.BSTR borderBottom 2457 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2461 winmdroot.Foundation.BSTR __result; 2462 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2470 private static winmdroot.Foundation.HRESULT get_borderBottom(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2491 private static winmdroot.Foundation.HRESULT put_borderLeft(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2509 internal winmdroot.Foundation.BSTR borderLeft 2513 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2517 winmdroot.Foundation.BSTR __result; 2518 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2526 private static winmdroot.Foundation.HRESULT get_borderLeft(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2547 private static winmdroot.Foundation.HRESULT put_borderColor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2565 internal winmdroot.Foundation.BSTR borderColor 2569 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2573 winmdroot.Foundation.BSTR __result; 2574 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2582 private static winmdroot.Foundation.HRESULT get_borderColor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2827 private static winmdroot.Foundation.HRESULT put_borderWidth(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2845 internal winmdroot.Foundation.BSTR borderWidth 2849 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[103])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2853 winmdroot.Foundation.BSTR __result; 2854 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[104])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2862 private static winmdroot.Foundation.HRESULT get_borderWidth(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3107 private static winmdroot.Foundation.HRESULT put_borderStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3125 internal winmdroot.Foundation.BSTR borderStyle 3129 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[113])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3133 winmdroot.Foundation.BSTR __result; 3134 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[114])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3142 private static winmdroot.Foundation.HRESULT get_borderStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3163 private static winmdroot.Foundation.HRESULT put_borderTopStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3181 internal winmdroot.Foundation.BSTR borderTopStyle 3185 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[115])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3189 winmdroot.Foundation.BSTR __result; 3190 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[116])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3198 private static winmdroot.Foundation.HRESULT get_borderTopStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3219 private static winmdroot.Foundation.HRESULT put_borderRightStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3237 internal winmdroot.Foundation.BSTR borderRightStyle 3241 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[117])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3245 winmdroot.Foundation.BSTR __result; 3246 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[118])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3254 private static winmdroot.Foundation.HRESULT get_borderRightStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3275 private static winmdroot.Foundation.HRESULT put_borderBottomStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3293 internal winmdroot.Foundation.BSTR borderBottomStyle 3297 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[119])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3301 winmdroot.Foundation.BSTR __result; 3302 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[120])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3310 private static winmdroot.Foundation.HRESULT get_borderBottomStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3331 private static winmdroot.Foundation.HRESULT put_borderLeftStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3349 internal winmdroot.Foundation.BSTR borderLeftStyle 3353 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[121])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3357 winmdroot.Foundation.BSTR __result; 3358 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[122])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3366 private static winmdroot.Foundation.HRESULT get_borderLeftStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3499 private static winmdroot.Foundation.HRESULT put_styleFloat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3517 internal winmdroot.Foundation.BSTR styleFloat 3521 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[127])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3525 winmdroot.Foundation.BSTR __result; 3526 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[128])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3534 private static winmdroot.Foundation.HRESULT get_styleFloat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3555 private static winmdroot.Foundation.HRESULT put_clear(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3573 internal winmdroot.Foundation.BSTR clear 3577 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[129])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3581 winmdroot.Foundation.BSTR __result; 3582 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[130])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3590 private static winmdroot.Foundation.HRESULT get_clear(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3611 private static winmdroot.Foundation.HRESULT put_display(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3629 internal winmdroot.Foundation.BSTR display 3633 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[131])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3637 winmdroot.Foundation.BSTR __result; 3638 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[132])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3646 private static winmdroot.Foundation.HRESULT get_display(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3667 private static winmdroot.Foundation.HRESULT put_visibility(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3685 internal winmdroot.Foundation.BSTR visibility 3689 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[133])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3693 winmdroot.Foundation.BSTR __result; 3694 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[134])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3702 private static winmdroot.Foundation.HRESULT get_visibility(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3723 private static winmdroot.Foundation.HRESULT put_listStyleType(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3741 internal winmdroot.Foundation.BSTR listStyleType 3745 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[135])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3749 winmdroot.Foundation.BSTR __result; 3750 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[136])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3758 private static winmdroot.Foundation.HRESULT get_listStyleType(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3779 private static winmdroot.Foundation.HRESULT put_listStylePosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3797 internal winmdroot.Foundation.BSTR listStylePosition 3801 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[137])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3805 winmdroot.Foundation.BSTR __result; 3806 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[138])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3814 private static winmdroot.Foundation.HRESULT get_listStylePosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3835 private static winmdroot.Foundation.HRESULT put_listStyleImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3853 internal winmdroot.Foundation.BSTR listStyleImage 3857 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[139])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3861 winmdroot.Foundation.BSTR __result; 3862 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[140])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3870 private static winmdroot.Foundation.HRESULT get_listStyleImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3891 private static winmdroot.Foundation.HRESULT put_listStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3909 internal winmdroot.Foundation.BSTR listStyle 3913 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[141])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3917 winmdroot.Foundation.BSTR __result; 3918 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[142])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3926 private static winmdroot.Foundation.HRESULT get_listStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3947 private static winmdroot.Foundation.HRESULT put_whiteSpace(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3965 internal winmdroot.Foundation.BSTR whiteSpace 3969 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[143])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3973 winmdroot.Foundation.BSTR __result; 3974 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[144])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3982 private static winmdroot.Foundation.HRESULT get_whiteSpace(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4115 private static winmdroot.Foundation.HRESULT get_position(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4133 internal winmdroot.Foundation.BSTR position 4137 winmdroot.Foundation.BSTR __result; 4138 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[149])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4202 private static winmdroot.Foundation.HRESULT put_overflow(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4220 internal winmdroot.Foundation.BSTR overflow 4224 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[152])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4228 winmdroot.Foundation.BSTR __result; 4229 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[153])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4237 private static winmdroot.Foundation.HRESULT get_overflow(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4258 private static winmdroot.Foundation.HRESULT put_pageBreakBefore(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4276 internal winmdroot.Foundation.BSTR pageBreakBefore 4280 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[154])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4284 winmdroot.Foundation.BSTR __result; 4285 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[155])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4293 private static winmdroot.Foundation.HRESULT get_pageBreakBefore(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4314 private static winmdroot.Foundation.HRESULT put_pageBreakAfter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4332 internal winmdroot.Foundation.BSTR pageBreakAfter 4336 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[156])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4340 winmdroot.Foundation.BSTR __result; 4341 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[157])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4349 private static winmdroot.Foundation.HRESULT get_pageBreakAfter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4370 private static winmdroot.Foundation.HRESULT put_cssText(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4387 public winmdroot.Foundation.HRESULT put_cssText(winmdroot.Foundation.BSTR v) 4389 return ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[158])((IHTMLStyle*)Unsafe.AsPointer(ref this), v); 4392 /// <inheritdoc cref="get_cssText(winmdroot.Foundation.BSTR*)"/> 4394 internal unsafe winmdroot.Foundation.HRESULT get_cssText(out winmdroot.Foundation.BSTR p) 4396 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 4406 private static winmdroot.Foundation.HRESULT get_cssText(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4423 public unsafe winmdroot.Foundation.HRESULT get_cssText(winmdroot.Foundation.BSTR* p) 4425 return ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[159])((IHTMLStyle*)Unsafe.AsPointer(ref this), p); 4879 private static winmdroot.Foundation.HRESULT put_cursor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4897 internal winmdroot.Foundation.BSTR cursor 4901 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[176])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4905 winmdroot.Foundation.BSTR __result; 4906 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[177])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4914 private static winmdroot.Foundation.HRESULT get_cursor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4935 private static winmdroot.Foundation.HRESULT put_clip(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4953 internal winmdroot.Foundation.BSTR clip 4957 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[178])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4961 winmdroot.Foundation.BSTR __result; 4962 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[179])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4970 private static winmdroot.Foundation.HRESULT get_clip(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4991 private static winmdroot.Foundation.HRESULT put_filter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 5009 internal winmdroot.Foundation.BSTR filter 5013 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[180])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 5017 winmdroot.Foundation.BSTR __result; 5018 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[181])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 5026 private static winmdroot.Foundation.HRESULT get_filter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 5047 private static winmdroot.Foundation.HRESULT setAttribute(IHTMLStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 5064 public void setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 5066 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[182])((IHTMLStyle*)Unsafe.AsPointer(ref this), strAttributeName, AttributeValue, lFlags).ThrowOnFailure(); 5072 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 5089 public winmdroot.System.Variant.VARIANT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags) 5092 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[183])((IHTMLStyle*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 5099 private static winmdroot.Foundation.HRESULT removeAttribute(IHTMLStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 5116 public winmdroot.Foundation.VARIANT_BOOL removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags) 5119 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[184])((IHTMLStyle*)Unsafe.AsPointer(ref this), strAttributeName, lFlags, &__retVal).ThrowOnFailure(); 5126 private static winmdroot.Foundation.HRESULT toString(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* String) 5143 public winmdroot.Foundation.BSTR toString() 5145 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 5146 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[185])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 5187 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontFamily_8; 5189 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontFamily_9; 5191 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontStyle_10; 5193 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontStyle_11; 5195 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontVariant_12; 5197 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontVariant_13; 5199 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontWeight_14; 5201 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontWeight_15; 5207 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_font_18; 5209 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_font_19; 5215 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_background_22; 5217 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_background_23; 5223 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundImage_26; 5225 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundImage_27; 5227 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundRepeat_28; 5229 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundRepeat_29; 5231 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundAttachment_30; 5233 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundAttachment_31; 5235 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundPosition_32; 5237 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundPosition_33; 5255 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textDecoration_42; 5257 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_43; 5283 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textTransform_56; 5285 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textTransform_57; 5287 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textAlign_58; 5289 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAlign_59; 5315 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_margin_72; 5317 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_margin_73; 5335 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_padding_82; 5337 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_padding_83; 5339 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_border_84; 5341 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_border_85; 5343 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTop_86; 5345 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTop_87; 5347 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRight_88; 5349 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRight_89; 5351 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottom_90; 5353 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottom_91; 5355 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeft_92; 5357 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeft_93; 5359 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderColor_94; 5361 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderColor_95; 5379 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderWidth_104; 5381 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderWidth_105; 5399 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderStyle_114; 5401 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderStyle_115; 5403 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTopStyle_116; 5405 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTopStyle_117; 5407 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRightStyle_118; 5409 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRightStyle_119; 5411 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottomStyle_120; 5413 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottomStyle_121; 5415 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeftStyle_122; 5417 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeftStyle_123; 5427 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_styleFloat_128; 5429 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_styleFloat_129; 5431 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clear_130; 5433 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clear_131; 5435 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_display_132; 5437 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_display_133; 5439 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_visibility_134; 5441 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_visibility_135; 5443 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleType_136; 5445 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleType_137; 5447 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStylePosition_138; 5449 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStylePosition_139; 5451 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleImage_140; 5453 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleImage_141; 5455 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyle_142; 5457 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyle_143; 5459 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_whiteSpace_144; 5461 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_whiteSpace_145; 5471 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_position_150; 5477 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_overflow_153; 5479 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflow_154; 5481 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakBefore_155; 5483 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakBefore_156; 5485 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakAfter_157; 5487 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakAfter_158; 5489 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cssText_159; 5491 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cssText_160; 5525 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cursor_177; 5527 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cursor_178; 5529 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clip_179; 5531 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clip_180; 5533 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_filter_181; 5535 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_filter_182; 5537 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT> setAttribute_183; 5539 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_184; 5541 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeAttribute_185; 5543 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_186; 5746 winmdroot.Foundation.BSTR fontFamily 5752 winmdroot.Foundation.BSTR fontStyle 5758 winmdroot.Foundation.BSTR fontVariant 5764 winmdroot.Foundation.BSTR fontWeight 5776 winmdroot.Foundation.BSTR font 5788 winmdroot.Foundation.BSTR background 5800 winmdroot.Foundation.BSTR backgroundImage 5806 winmdroot.Foundation.BSTR backgroundRepeat 5812 winmdroot.Foundation.BSTR backgroundAttachment 5818 winmdroot.Foundation.BSTR backgroundPosition 5848 winmdroot.Foundation.BSTR textDecoration 5890 winmdroot.Foundation.BSTR textTransform 5896 winmdroot.Foundation.BSTR textAlign 5938 winmdroot.Foundation.BSTR margin 5968 winmdroot.Foundation.BSTR padding 5974 winmdroot.Foundation.BSTR border 5980 winmdroot.Foundation.BSTR borderTop 5986 winmdroot.Foundation.BSTR borderRight 5992 winmdroot.Foundation.BSTR borderBottom 5998 winmdroot.Foundation.BSTR borderLeft 6004 winmdroot.Foundation.BSTR borderColor 6034 winmdroot.Foundation.BSTR borderWidth 6064 winmdroot.Foundation.BSTR borderStyle 6070 winmdroot.Foundation.BSTR borderTopStyle 6076 winmdroot.Foundation.BSTR borderRightStyle 6082 winmdroot.Foundation.BSTR borderBottomStyle 6088 winmdroot.Foundation.BSTR borderLeftStyle 6106 winmdroot.Foundation.BSTR styleFloat 6112 winmdroot.Foundation.BSTR clear 6118 winmdroot.Foundation.BSTR display 6124 winmdroot.Foundation.BSTR visibility 6130 winmdroot.Foundation.BSTR listStyleType 6136 winmdroot.Foundation.BSTR listStylePosition 6142 winmdroot.Foundation.BSTR listStyleImage 6148 winmdroot.Foundation.BSTR listStyle 6154 winmdroot.Foundation.BSTR whiteSpace 6172 winmdroot.Foundation.BSTR position 6183 winmdroot.Foundation.BSTR overflow 6189 winmdroot.Foundation.BSTR pageBreakBefore 6195 winmdroot.Foundation.BSTR pageBreakAfter 6202winmdroot.Foundation.HRESULT put_cssText(winmdroot.Foundation.BSTR v); 6205 unsafe winmdroot.Foundation.HRESULT get_cssText(winmdroot.Foundation.BSTR* p); 6255 winmdroot.Foundation.BSTR cursor 6261 winmdroot.Foundation.BSTR clip 6267 winmdroot.Foundation.BSTR filter 6274winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags); 6277 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue); 6280 unsafe winmdroot.Foundation.HRESULT removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess); 6283 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String);
_generated\172\Windows.Win32.IHTMLStyleSheet.g.cs (63)
139 private static winmdroot.Foundation.HRESULT put_title(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 157 internal winmdroot.Foundation.BSTR title 161 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 165 winmdroot.Foundation.BSTR __result; 166 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_title(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 375 private static winmdroot.Foundation.HRESULT put_href(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 393 internal winmdroot.Foundation.BSTR href 397 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 401 winmdroot.Foundation.BSTR __result; 402 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 410 private static winmdroot.Foundation.HRESULT get_href(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 431 private static winmdroot.Foundation.HRESULT get_type(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 449 internal winmdroot.Foundation.BSTR type 453 winmdroot.Foundation.BSTR __result; 454 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 462 private static winmdroot.Foundation.HRESULT get_id(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 480 internal winmdroot.Foundation.BSTR id 484 winmdroot.Foundation.BSTR __result; 485 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 493 private static winmdroot.Foundation.HRESULT addImport(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR bstrURL, int lIndex, int* plIndex) 510 public int addImport(winmdroot.Foundation.BSTR bstrURL, int lIndex) 513 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), bstrURL, lIndex, &__retVal).ThrowOnFailure(); 520 private static winmdroot.Foundation.HRESULT addRule(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR bstrSelector, winmdroot.Foundation.BSTR bstrStyle, int lIndex, int* plNewIndex) 537 public int addRule(winmdroot.Foundation.BSTR bstrSelector, winmdroot.Foundation.BSTR bstrStyle, int lIndex) 540 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), bstrSelector, bstrStyle, lIndex, &__retVal).ThrowOnFailure(); 597 private static winmdroot.Foundation.HRESULT put_media(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 615 internal winmdroot.Foundation.BSTR media 619 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 623 winmdroot.Foundation.BSTR __result; 624 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 632 private static winmdroot.Foundation.HRESULT get_media(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 653 private static winmdroot.Foundation.HRESULT put_cssText(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 671 internal winmdroot.Foundation.BSTR cssText 675 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 679 winmdroot.Foundation.BSTR __result; 680 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 688 private static winmdroot.Foundation.HRESULT get_cssText(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 774 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_title_8; 776 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_title_9; 790 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_href_16; 792 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_href_17; 794 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_type_18; 796 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_id_19; 798 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,int ,int* ,winmdroot.Foundation.HRESULT> addImport_20; 800 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,int ,int* ,winmdroot.Foundation.HRESULT> addRule_21; 806 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_media_24; 808 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_media_25; 810 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cssText_26; 812 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cssText_27; 859 winmdroot.Foundation.BSTR title 891 winmdroot.Foundation.BSTR href 897 winmdroot.Foundation.BSTR type 902 winmdroot.Foundation.BSTR id 908 unsafe winmdroot.Foundation.HRESULT addImport(winmdroot.Foundation.BSTR bstrURL, int lIndex, int* plIndex); 911 unsafe winmdroot.Foundation.HRESULT addRule(winmdroot.Foundation.BSTR bstrSelector, winmdroot.Foundation.BSTR bstrStyle, int lIndex, int* plNewIndex); 919 winmdroot.Foundation.BSTR media 925 winmdroot.Foundation.BSTR cssText
_generated\173\Windows.Win32.IHTMLStyleSheetRule.g.cs (9)
139 private static winmdroot.Foundation.HRESULT put_selectorText(IHTMLStyleSheetRule* pThis, winmdroot.Foundation.BSTR v) 157 internal winmdroot.Foundation.BSTR selectorText 161 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 165 winmdroot.Foundation.BSTR __result; 166 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT get_selectorText(IHTMLStyleSheetRule* pThis, winmdroot.Foundation.BSTR* p) 291 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_selectorText_8; 293 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_selectorText_9; 325 winmdroot.Foundation.BSTR selectorText
_generated\176\Windows.Win32.IHTMLWindow2.g.cs (129)
238 private static winmdroot.Foundation.HRESULT put_defaultStatus(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR v) 256 internal winmdroot.Foundation.BSTR defaultStatus 260 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 264 winmdroot.Foundation.BSTR __result; 265 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 273 private static winmdroot.Foundation.HRESULT get_defaultStatus(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* p) 294 private static winmdroot.Foundation.HRESULT put_status(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR v) 311 public winmdroot.Foundation.HRESULT put_status(winmdroot.Foundation.BSTR v) 313 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLWindow2*)Unsafe.AsPointer(ref this), v); 316 /// <inheritdoc cref="get_status(winmdroot.Foundation.BSTR*)"/> 318 internal unsafe winmdroot.Foundation.HRESULT get_status(out winmdroot.Foundation.BSTR p) 320 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 330 private static winmdroot.Foundation.HRESULT get_status(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* p) 347 public unsafe winmdroot.Foundation.HRESULT get_status(winmdroot.Foundation.BSTR* p) 349 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 352 /// <inheritdoc cref="setTimeout(winmdroot.Foundation.BSTR, int, winmdroot.System.Variant.VARIANT*)"/> 354 internal unsafe int setTimeout(winmdroot.Foundation.BSTR expression, int msec, in winmdroot.System.Variant.VARIANT language) 366 private static winmdroot.Foundation.HRESULT setTimeout(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID) 383 public unsafe int setTimeout(winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language) 386 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLWindow2*)Unsafe.AsPointer(ref this), expression, msec, language, &__retVal).ThrowOnFailure(); 418 private static winmdroot.Foundation.HRESULT alert(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR message) 435 public winmdroot.Foundation.HRESULT alert(winmdroot.Foundation.BSTR message) 437 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLWindow2*)Unsafe.AsPointer(ref this), message); 440 /// <inheritdoc cref="confirm(winmdroot.Foundation.BSTR, winmdroot.Foundation.VARIANT_BOOL*)"/> 442 internal unsafe winmdroot.Foundation.HRESULT confirm(winmdroot.Foundation.BSTR message, out winmdroot.Foundation.VARIANT_BOOL confirmed) 454 private static winmdroot.Foundation.HRESULT confirm(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR message, winmdroot.Foundation.VARIANT_BOOL* confirmed) 471 public unsafe winmdroot.Foundation.HRESULT confirm(winmdroot.Foundation.BSTR message, winmdroot.Foundation.VARIANT_BOOL* confirmed) 473 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLWindow2*)Unsafe.AsPointer(ref this), message, confirmed); 476 /// <inheritdoc cref="prompt(winmdroot.Foundation.BSTR, winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*)"/> 478 internal unsafe winmdroot.Foundation.HRESULT prompt(winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, out winmdroot.System.Variant.VARIANT textdata) 490 private static winmdroot.Foundation.HRESULT prompt(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, winmdroot.System.Variant.VARIANT* textdata) 507 public unsafe winmdroot.Foundation.HRESULT prompt(winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, winmdroot.System.Variant.VARIANT* textdata) 509 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLWindow2*)Unsafe.AsPointer(ref this), message, defstr, textdata); 717 private static winmdroot.Foundation.HRESULT put_name(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR v) 734 public winmdroot.Foundation.HRESULT put_name(winmdroot.Foundation.BSTR v) 736 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLWindow2*)Unsafe.AsPointer(ref this), v); 739 /// <inheritdoc cref="get_name(winmdroot.Foundation.BSTR*)"/> 741 internal unsafe winmdroot.Foundation.HRESULT get_name(out winmdroot.Foundation.BSTR p) 743 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 753 private static winmdroot.Foundation.HRESULT get_name(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* p) 770 public unsafe winmdroot.Foundation.HRESULT get_name(winmdroot.Foundation.BSTR* p) 772 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 803 private static winmdroot.Foundation.HRESULT open(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR url, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR features, winmdroot.Foundation.VARIANT_BOOL replace, winmdroot.Web.MsHtml.IHTMLWindow2** pomWindowResult) 820 public unsafe winmdroot.Foundation.HRESULT open(winmdroot.Foundation.BSTR url, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR features, winmdroot.Foundation.VARIANT_BOOL replace, winmdroot.Web.MsHtml.IHTMLWindow2** pomWindowResult) 822 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLWindow2*)Unsafe.AsPointer(ref this), url, name, features, replace, pomWindowResult); 921 private static winmdroot.Foundation.HRESULT navigate(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR url) 938 public winmdroot.Foundation.HRESULT navigate(winmdroot.Foundation.BSTR url) 940 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLWindow2*)Unsafe.AsPointer(ref this), url); 1534 /// <inheritdoc cref="showModalDialog(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*)"/> 1536 internal unsafe winmdroot.System.Variant.VARIANT showModalDialog(winmdroot.Foundation.BSTR dialog, in winmdroot.System.Variant.VARIANT varArgIn, in winmdroot.System.Variant.VARIANT varOptions) 1551 private static winmdroot.Foundation.HRESULT showModalDialog(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR dialog, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* varOptions, winmdroot.System.Variant.VARIANT* varArgOut) 1568 public unsafe winmdroot.System.Variant.VARIANT showModalDialog(winmdroot.Foundation.BSTR dialog, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* varOptions) 1571 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLWindow2*)Unsafe.AsPointer(ref this), dialog, varArgIn, varOptions, &__retVal).ThrowOnFailure(); 1578 private static winmdroot.Foundation.HRESULT showHelp(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR helpURL, winmdroot.System.Variant.VARIANT helpArg, winmdroot.Foundation.BSTR features) 1595 public void showHelp(winmdroot.Foundation.BSTR helpURL, winmdroot.System.Variant.VARIANT helpArg, winmdroot.Foundation.BSTR features) 1597 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLWindow2*)Unsafe.AsPointer(ref this), helpURL, helpArg, features).ThrowOnFailure(); 1804 /// <inheritdoc cref="setInterval(winmdroot.Foundation.BSTR, int, winmdroot.System.Variant.VARIANT*)"/> 1806 internal unsafe int setInterval(winmdroot.Foundation.BSTR expression, int msec, in winmdroot.System.Variant.VARIANT language) 1818 private static winmdroot.Foundation.HRESULT setInterval(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID) 1835 public unsafe int setInterval(winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language) 1838 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLWindow2*)Unsafe.AsPointer(ref this), expression, msec, language, &__retVal).ThrowOnFailure(); 1926 private static winmdroot.Foundation.HRESULT execScript(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR code, winmdroot.Foundation.BSTR language, winmdroot.System.Variant.VARIANT* pvarRet) 1943 public winmdroot.System.Variant.VARIANT execScript(winmdroot.Foundation.BSTR code, winmdroot.Foundation.BSTR language) 1946 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLWindow2*)Unsafe.AsPointer(ref this), code, language, &__retVal).ThrowOnFailure(); 1953 private static winmdroot.Foundation.HRESULT toString(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* String) 1970 public winmdroot.Foundation.BSTR toString() 1972 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 1973 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 2201 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_defaultStatus_11; 2203 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_defaultStatus_12; 2205 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_status_13; 2207 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_status_14; 2209 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> setTimeout_15; 2213 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> alert_17; 2215 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> confirm_18; 2217 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> prompt_19; 2233 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_27; 2235 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_28; 2239 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> open_30; 2247 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> navigate_34; 2291 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> showModalDialog_56; 2293 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> showHelp_57; 2309 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> setInterval_65; 2317 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> execScript_69; 2319 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_70; 2436 winmdroot.Foundation.BSTR defaultStatus 2443winmdroot.Foundation.HRESULT put_status(winmdroot.Foundation.BSTR v); 2446 unsafe winmdroot.Foundation.HRESULT get_status(winmdroot.Foundation.BSTR* p); 2449 unsafe winmdroot.Foundation.HRESULT setTimeout(winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID); 2455winmdroot.Foundation.HRESULT alert(winmdroot.Foundation.BSTR message); 2458 unsafe winmdroot.Foundation.HRESULT confirm(winmdroot.Foundation.BSTR message, winmdroot.Foundation.VARIANT_BOOL* confirmed); 2461 unsafe winmdroot.Foundation.HRESULT prompt(winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, winmdroot.System.Variant.VARIANT* textdata); 2491winmdroot.Foundation.HRESULT put_name(winmdroot.Foundation.BSTR v); 2494 unsafe winmdroot.Foundation.HRESULT get_name(winmdroot.Foundation.BSTR* p); 2500 unsafe winmdroot.Foundation.HRESULT open(winmdroot.Foundation.BSTR url, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR features, winmdroot.Foundation.VARIANT_BOOL replace, winmdroot.Web.MsHtml.IHTMLWindow2** pomWindowResult); 2518winmdroot.Foundation.HRESULT navigate(winmdroot.Foundation.BSTR url); 2588 unsafe winmdroot.Foundation.HRESULT showModalDialog(winmdroot.Foundation.BSTR dialog, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* varOptions, winmdroot.System.Variant.VARIANT* varArgOut); 2591winmdroot.Foundation.HRESULT showHelp(winmdroot.Foundation.BSTR helpURL, winmdroot.System.Variant.VARIANT helpArg, winmdroot.Foundation.BSTR features); 2621 unsafe winmdroot.Foundation.HRESULT setInterval(winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID); 2633 unsafe winmdroot.Foundation.HRESULT execScript(winmdroot.Foundation.BSTR code, winmdroot.Foundation.BSTR language, winmdroot.System.Variant.VARIANT* pvarRet); 2636 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String);
_generated\177\Windows.Win32.IHTMLWindow3.g.cs (19)
208 /// <inheritdoc cref="attachEvent(winmdroot.Foundation.BSTR, winmdroot.System.Com.IDispatch*, winmdroot.Foundation.VARIANT_BOOL*)"/> 210 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 222 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLWindow3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 239 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 241 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); 247 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLWindow3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 264 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 266 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLWindow3*)Unsafe.AsPointer(ref this), @event, pDisp); 519 /// <inheritdoc cref="showModelessDialog(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*)"/> 521 internal unsafe winmdroot.Web.MsHtml.IHTMLWindow2* showModelessDialog(winmdroot.Foundation.BSTR url, in winmdroot.System.Variant.VARIANT varArgIn, in winmdroot.System.Variant.VARIANT options) 536 private static winmdroot.Foundation.HRESULT showModelessDialog(IHTMLWindow3* pThis, winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* options, winmdroot.Web.MsHtml.IHTMLWindow2** pDialog) 553 public unsafe winmdroot.Web.MsHtml.IHTMLWindow2* showModelessDialog(winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* options) 556 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLWindow3*)Unsafe.AsPointer(ref this), url, varArgIn, options, &__retVal).ThrowOnFailure(); 601 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_10; 603 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_11; 621 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> showModelessDialog_20; 665 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 668 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp); 697 unsafe winmdroot.Foundation.HRESULT showModelessDialog(winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* options, winmdroot.Web.MsHtml.IHTMLWindow2** pDialog);
_generated\180\Windows.Win32.ILegacyIAccessibleProvider.g.cs (48)
245 /// <inheritdoc cref="get_Name(winmdroot.Foundation.BSTR*)"/> 247 internal unsafe winmdroot.Foundation.HRESULT get_Name(out winmdroot.Foundation.BSTR pszName) 249 fixed (winmdroot.Foundation.BSTR* pszNameLocal = &pszName) 259 private static winmdroot.Foundation.HRESULT get_Name(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszName) 280 public unsafe winmdroot.Foundation.HRESULT get_Name(winmdroot.Foundation.BSTR* pszName) 282 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszName); 285 /// <inheritdoc cref="get_Value(winmdroot.Foundation.BSTR*)"/> 287 internal unsafe winmdroot.Foundation.HRESULT get_Value(out winmdroot.Foundation.BSTR pszValue) 289 fixed (winmdroot.Foundation.BSTR* pszValueLocal = &pszValue) 299 private static winmdroot.Foundation.HRESULT get_Value(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszValue) 320 public unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pszValue) 322 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszValue); 325 /// <inheritdoc cref="get_Description(winmdroot.Foundation.BSTR*)"/> 327 internal unsafe winmdroot.Foundation.HRESULT get_Description(out winmdroot.Foundation.BSTR pszDescription) 329 fixed (winmdroot.Foundation.BSTR* pszDescriptionLocal = &pszDescription) 339 private static winmdroot.Foundation.HRESULT get_Description(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszDescription) 360 public unsafe winmdroot.Foundation.HRESULT get_Description(winmdroot.Foundation.BSTR* pszDescription) 362 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszDescription); 445 /// <inheritdoc cref="get_Help(winmdroot.Foundation.BSTR*)"/> 447 internal unsafe winmdroot.Foundation.HRESULT get_Help(out winmdroot.Foundation.BSTR pszHelp) 449 fixed (winmdroot.Foundation.BSTR* pszHelpLocal = &pszHelp) 459 private static winmdroot.Foundation.HRESULT get_Help(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszHelp) 480 public unsafe winmdroot.Foundation.HRESULT get_Help(winmdroot.Foundation.BSTR* pszHelp) 482 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszHelp); 485 /// <inheritdoc cref="get_KeyboardShortcut(winmdroot.Foundation.BSTR*)"/> 487 internal unsafe winmdroot.Foundation.HRESULT get_KeyboardShortcut(out winmdroot.Foundation.BSTR pszKeyboardShortcut) 489 fixed (winmdroot.Foundation.BSTR* pszKeyboardShortcutLocal = &pszKeyboardShortcut) 499 private static winmdroot.Foundation.HRESULT get_KeyboardShortcut(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszKeyboardShortcut) 520 public unsafe winmdroot.Foundation.HRESULT get_KeyboardShortcut(winmdroot.Foundation.BSTR* pszKeyboardShortcut) 522 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszKeyboardShortcut); 559 /// <inheritdoc cref="get_DefaultAction(winmdroot.Foundation.BSTR*)"/> 561 internal unsafe winmdroot.Foundation.HRESULT get_DefaultAction(out winmdroot.Foundation.BSTR pszDefaultAction) 563 fixed (winmdroot.Foundation.BSTR* pszDefaultActionLocal = &pszDefaultAction) 573 private static winmdroot.Foundation.HRESULT get_DefaultAction(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszDefaultAction) 594 public unsafe winmdroot.Foundation.HRESULT get_DefaultAction(winmdroot.Foundation.BSTR* pszDefaultAction) 596 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszDefaultAction); 638 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_9; 640 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Value_10; 642 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Description_11; 648 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Help_14; 650 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_KeyboardShortcut_15; 654 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_DefaultAction_17; 709 unsafe winmdroot.Foundation.HRESULT get_Name(winmdroot.Foundation.BSTR* pszName); 712 unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pszValue); 715 unsafe winmdroot.Foundation.HRESULT get_Description(winmdroot.Foundation.BSTR* pszDescription); 724 unsafe winmdroot.Foundation.HRESULT get_Help(winmdroot.Foundation.BSTR* pszHelp); 727 unsafe winmdroot.Foundation.HRESULT get_KeyboardShortcut(winmdroot.Foundation.BSTR* pszKeyboardShortcut); 733 unsafe winmdroot.Foundation.HRESULT get_DefaultAction(winmdroot.Foundation.BSTR* pszDefaultAction);
_generated\191\Windows.Win32.IMultipleViewProvider.g.cs (7)
60 private static winmdroot.Foundation.HRESULT GetViewName(IMultipleViewProvider* pThis, int viewId, winmdroot.Foundation.BSTR* pRetVal) 91 public winmdroot.Foundation.BSTR GetViewName(int viewId) 93 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 94 ((delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IMultipleViewProvider*)Unsafe.AsPointer(ref this), viewId, &__retVal).ThrowOnFailure(); 240 internal delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetViewName_4; 276 unsafe winmdroot.Foundation.HRESULT GetViewName(int viewId, winmdroot.Foundation.BSTR* pRetVal);
_generated\211\Windows.Win32.IOleParentUndoUnit.g.cs (8)
82 /// <inheritdoc cref="GetDescription(winmdroot.Foundation.BSTR*)"/> 84 internal unsafe void GetDescription(out winmdroot.Foundation.BSTR pBstr) 86 fixed (winmdroot.Foundation.BSTR* pBstrLocal = &pBstr) 95 private static winmdroot.Foundation.HRESULT GetDescription(IOleParentUndoUnit* pThis, winmdroot.Foundation.BSTR* pBstr) 112 public unsafe void GetDescription(winmdroot.Foundation.BSTR* pBstr) 114 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 379 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDescription_5; 431 unsafe new winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstr);
_generated\212\Windows.Win32.IOleUndoManager.g.cs (16)
376 /// <inheritdoc cref="GetLastUndoDescription(winmdroot.Foundation.BSTR*)"/> 378 internal unsafe void GetLastUndoDescription(out winmdroot.Foundation.BSTR pBstr) 380 fixed (winmdroot.Foundation.BSTR* pBstrLocal = &pBstr) 389 private static winmdroot.Foundation.HRESULT GetLastUndoDescription(IOleUndoManager* pThis, winmdroot.Foundation.BSTR* pBstr) 413 public unsafe void GetLastUndoDescription(winmdroot.Foundation.BSTR* pBstr) 415 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IOleUndoManager*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 418 /// <inheritdoc cref="GetLastRedoDescription(winmdroot.Foundation.BSTR*)"/> 420 internal unsafe void GetLastRedoDescription(out winmdroot.Foundation.BSTR pBstr) 422 fixed (winmdroot.Foundation.BSTR* pBstrLocal = &pBstr) 431 private static winmdroot.Foundation.HRESULT GetLastRedoDescription(IOleUndoManager* pThis, winmdroot.Foundation.BSTR* pBstr) 455 public unsafe void GetLastRedoDescription(winmdroot.Foundation.BSTR* pBstr) 457 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IOleUndoManager*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 542 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetLastUndoDescription_13; 544 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetLastRedoDescription_14; 611 unsafe winmdroot.Foundation.HRESULT GetLastUndoDescription(winmdroot.Foundation.BSTR* pBstr); 614 unsafe winmdroot.Foundation.HRESULT GetLastRedoDescription(winmdroot.Foundation.BSTR* pBstr);
_generated\213\Windows.Win32.IOleUndoUnit.g.cs (8)
89 /// <inheritdoc cref="GetDescription(winmdroot.Foundation.BSTR*)"/> 91 internal unsafe void GetDescription(out winmdroot.Foundation.BSTR pBstr) 93 fixed (winmdroot.Foundation.BSTR* pBstrLocal = &pBstr) 102 private static winmdroot.Foundation.HRESULT GetDescription(IOleUndoUnit* pThis, winmdroot.Foundation.BSTR* pBstr) 126 public unsafe void GetDescription(winmdroot.Foundation.BSTR* pBstr) 128 ((delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleUndoUnit*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 239 internal delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDescription_5; 276 unsafe winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstr);
_generated\216\Windows.Win32.IOmNavigator.g.cs (67)
139 private static winmdroot.Foundation.HRESULT get_appCodeName(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 157 internal winmdroot.Foundation.BSTR appCodeName 161 winmdroot.Foundation.BSTR __result; 162 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT get_appName(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 188 internal winmdroot.Foundation.BSTR appName 192 winmdroot.Foundation.BSTR __result; 193 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 201 private static winmdroot.Foundation.HRESULT get_appVersion(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 219 internal winmdroot.Foundation.BSTR appVersion 223 winmdroot.Foundation.BSTR __result; 224 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 232 private static winmdroot.Foundation.HRESULT get_userAgent(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 250 internal winmdroot.Foundation.BSTR userAgent 254 winmdroot.Foundation.BSTR __result; 255 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 441 private static winmdroot.Foundation.HRESULT toString(IOmNavigator* pThis, winmdroot.Foundation.BSTR* @string) 458 public winmdroot.Foundation.BSTR toString() 460 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 461 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IOmNavigator*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 468 private static winmdroot.Foundation.HRESULT get_cpuClass(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 486 internal winmdroot.Foundation.BSTR cpuClass 490 winmdroot.Foundation.BSTR __result; 491 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 499 private static winmdroot.Foundation.HRESULT get_systemLanguage(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 517 internal winmdroot.Foundation.BSTR systemLanguage 521 winmdroot.Foundation.BSTR __result; 522 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 530 private static winmdroot.Foundation.HRESULT get_browserLanguage(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 548 internal winmdroot.Foundation.BSTR browserLanguage 552 winmdroot.Foundation.BSTR __result; 553 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 561 private static winmdroot.Foundation.HRESULT get_userLanguage(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 579 internal winmdroot.Foundation.BSTR userLanguage 583 winmdroot.Foundation.BSTR __result; 584 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 592 private static winmdroot.Foundation.HRESULT get_platform(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 610 internal winmdroot.Foundation.BSTR platform 614 winmdroot.Foundation.BSTR __result; 615 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 623 private static winmdroot.Foundation.HRESULT get_appMinorVersion(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 641 internal winmdroot.Foundation.BSTR appMinorVersion 645 winmdroot.Foundation.BSTR __result; 646 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 781 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appCodeName_8; 783 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appName_9; 785 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appVersion_10; 787 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_userAgent_11; 801 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_18; 803 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cpuClass_19; 805 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_systemLanguage_20; 807 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_browserLanguage_21; 809 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_userLanguage_22; 811 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_platform_23; 813 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appMinorVersion_24; 863 winmdroot.Foundation.BSTR appCodeName 868 winmdroot.Foundation.BSTR appName 873 winmdroot.Foundation.BSTR appVersion 878 winmdroot.Foundation.BSTR userAgent 910 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* @string); 912 winmdroot.Foundation.BSTR cpuClass 917 winmdroot.Foundation.BSTR systemLanguage 922 winmdroot.Foundation.BSTR browserLanguage 927 winmdroot.Foundation.BSTR userLanguage 932 winmdroot.Foundation.BSTR platform 937 winmdroot.Foundation.BSTR appMinorVersion
_generated\218\Windows.Win32.IPerPropertyBrowsing.g.cs (8)
57 /// <inheritdoc cref="GetDisplayString(int, winmdroot.Foundation.BSTR*)"/> 59 internal unsafe winmdroot.Foundation.HRESULT GetDisplayString(int dispID, out winmdroot.Foundation.BSTR pBstr) 61 fixed (winmdroot.Foundation.BSTR* pBstrLocal = &pBstr) 71 private static winmdroot.Foundation.HRESULT GetDisplayString(IPerPropertyBrowsing* pThis, int dispID, winmdroot.Foundation.BSTR* pBstr) 98 public unsafe winmdroot.Foundation.HRESULT GetDisplayString(int dispID, winmdroot.Foundation.BSTR* pBstr) 100 return ((delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPerPropertyBrowsing*)Unsafe.AsPointer(ref this), dispID, pBstr); 277 internal delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDisplayString_4; 313 unsafe winmdroot.Foundation.HRESULT GetDisplayString(int dispID, winmdroot.Foundation.BSTR* pBstr);
_generated\251\Windows.Win32.ITextDocument.g.cs (8)
137 /// <inheritdoc cref="GetName(winmdroot.Foundation.BSTR*)"/> 139 internal unsafe void GetName(out winmdroot.Foundation.BSTR pName) 141 fixed (winmdroot.Foundation.BSTR* pNameLocal = &pName) 150 private static winmdroot.Foundation.HRESULT GetName(ITextDocument* pThis, winmdroot.Foundation.BSTR* pName) 179 public unsafe void GetName(winmdroot.Foundation.BSTR* pName) 181 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextDocument*)Unsafe.AsPointer(ref this), pName).ThrowOnFailure(); 996 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetName_8; 1077 unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pName);
_generated\252\Windows.Win32.ITextFont.g.cs (13)
1342 /// <inheritdoc cref="GetName(winmdroot.Foundation.BSTR*)"/> 1344 internal unsafe void GetName(out winmdroot.Foundation.BSTR pbstr) 1346 fixed (winmdroot.Foundation.BSTR* pbstrLocal = &pbstr) 1355 private static winmdroot.Foundation.HRESULT GetName(ITextFont* pThis, winmdroot.Foundation.BSTR* pbstr) 1384 public unsafe void GetName(winmdroot.Foundation.BSTR* pbstr) 1386 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((ITextFont*)Unsafe.AsPointer(ref this), pbstr).ThrowOnFailure(); 1392 private static winmdroot.Foundation.HRESULT SetName(ITextFont* pThis, winmdroot.Foundation.BSTR bstr) 1421 public void SetName(winmdroot.Foundation.BSTR bstr) 1423 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((ITextFont*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 2515 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetName_37; 2517 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> SetName_38; 2733 unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pbstr); 2736winmdroot.Foundation.HRESULT SetName(winmdroot.Foundation.BSTR bstr);
_generated\256\Windows.Win32.ITextRange.g.cs (34)
137 /// <inheritdoc cref="GetText(winmdroot.Foundation.BSTR*)"/> 139 internal unsafe winmdroot.Foundation.HRESULT GetText(out winmdroot.Foundation.BSTR pbstr) 141 fixed (winmdroot.Foundation.BSTR* pbstrLocal = &pbstr) 151 private static winmdroot.Foundation.HRESULT GetText(ITextRange* pThis, winmdroot.Foundation.BSTR* pbstr) 182 public unsafe winmdroot.Foundation.HRESULT GetText(winmdroot.Foundation.BSTR* pbstr) 184 return ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextRange*)Unsafe.AsPointer(ref this), pbstr); 190 private static winmdroot.Foundation.HRESULT SetText(ITextRange* pThis, winmdroot.Foundation.BSTR bstr) 220 public void SetText(winmdroot.Foundation.BSTR bstr) 222 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextRange*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 1873 /// <inheritdoc cref="FindText(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 1875 internal unsafe void FindText(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 1886 private static winmdroot.Foundation.HRESULT FindText(ITextRange* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1928 public unsafe void FindText(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1930 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((ITextRange*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 1933 /// <inheritdoc cref="FindTextStart(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 1935 internal unsafe void FindTextStart(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 1946 private static winmdroot.Foundation.HRESULT FindTextStart(ITextRange* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1985 public unsafe void FindTextStart(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1987 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((ITextRange*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 1990 /// <inheritdoc cref="FindTextEnd(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 1992 internal unsafe void FindTextEnd(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 2003 private static winmdroot.Foundation.HRESULT FindTextEnd(ITextRange* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 2042 public unsafe void FindTextEnd(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 2044 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((ITextRange*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 2606 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetText_8; 2608 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> SetText_9; 2680 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindText_45; 2682 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextStart_46; 2684 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextEnd_47; 2783 unsafe winmdroot.Foundation.HRESULT GetText(winmdroot.Foundation.BSTR* pbstr); 2786winmdroot.Foundation.HRESULT SetText(winmdroot.Foundation.BSTR bstr); 2894 unsafe winmdroot.Foundation.HRESULT FindText(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2897 unsafe winmdroot.Foundation.HRESULT FindTextStart(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2900 unsafe winmdroot.Foundation.HRESULT FindTextEnd(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength);
_generated\257\Windows.Win32.ITextRangeProvider.g.cs (12)
252 private static winmdroot.Foundation.HRESULT FindText(ITextRangeProvider* pThis, winmdroot.Foundation.BSTR text, winmdroot.Foundation.BOOL backward, winmdroot.Foundation.BOOL ignoreCase, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 286 public unsafe winmdroot.UI.Accessibility.ITextRangeProvider* FindText(winmdroot.Foundation.BSTR text, winmdroot.Foundation.BOOL backward, winmdroot.Foundation.BOOL ignoreCase) 289 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.BOOL ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextRangeProvider*)Unsafe.AsPointer(ref this), text, backward, ignoreCase, &__retVal).ThrowOnFailure(); 398 private static winmdroot.Foundation.HRESULT GetText(ITextRangeProvider* pThis, int maxLength, winmdroot.Foundation.BSTR* pRetVal) 427 public winmdroot.Foundation.BSTR GetText(int maxLength) 429 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 430 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextRangeProvider*)Unsafe.AsPointer(ref this), maxLength, &__retVal).ThrowOnFailure(); 756 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.BOOL ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> FindText_9; 764 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetText_13; 839 unsafe winmdroot.Foundation.HRESULT FindText(winmdroot.Foundation.BSTR text, winmdroot.Foundation.BOOL backward, winmdroot.Foundation.BOOL ignoreCase, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 851 unsafe winmdroot.Foundation.HRESULT GetText(int maxLength, winmdroot.Foundation.BSTR* pRetVal);
_generated\258\Windows.Win32.ITextSelection.g.cs (39)
137 /// <inheritdoc cref="GetText(winmdroot.Foundation.BSTR*)"/> 139 internal unsafe void GetText(out winmdroot.Foundation.BSTR pbstr) 141 fixed (winmdroot.Foundation.BSTR* pbstrLocal = &pbstr) 150 private static winmdroot.Foundation.HRESULT GetText(ITextSelection* pThis, winmdroot.Foundation.BSTR* pbstr) 167 public unsafe void GetText(winmdroot.Foundation.BSTR* pbstr) 169 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextSelection*)Unsafe.AsPointer(ref this), pbstr).ThrowOnFailure(); 175 private static winmdroot.Foundation.HRESULT SetText(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr) 192 public void SetText(winmdroot.Foundation.BSTR bstr) 194 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextSelection*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 1300 /// <inheritdoc cref="FindText(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 1302 internal unsafe void FindText(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 1313 private static winmdroot.Foundation.HRESULT FindText(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1330 public unsafe void FindText(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1332 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((ITextSelection*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 1335 /// <inheritdoc cref="FindTextStart(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 1337 internal unsafe void FindTextStart(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 1348 private static winmdroot.Foundation.HRESULT FindTextStart(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1365 public unsafe void FindTextStart(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1367 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((ITextSelection*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 1370 /// <inheritdoc cref="FindTextEnd(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 1372 internal unsafe void FindTextEnd(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 1383 private static winmdroot.Foundation.HRESULT FindTextEnd(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1400 public unsafe void FindTextEnd(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1402 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((ITextSelection*)Unsafe.AsPointer(ref this), bstr, Count, Flags, pLength).ThrowOnFailure(); 2251 private static winmdroot.Foundation.HRESULT TypeText(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr) 2281 public void TypeText(winmdroot.Foundation.BSTR bstr) 2283 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((ITextSelection*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 2323 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetText_8; 2325 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> SetText_9; 2397 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindText_45; 2399 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextStart_46; 2401 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextEnd_47; 2443 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> TypeText_68; 2530 unsafe new winmdroot.Foundation.HRESULT GetText(winmdroot.Foundation.BSTR* pbstr); 2533 new winmdroot.Foundation.HRESULT SetText(winmdroot.Foundation.BSTR bstr); 2641 unsafe new winmdroot.Foundation.HRESULT FindText(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2644 unsafe new winmdroot.Foundation.HRESULT FindTextStart(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2647 unsafe new winmdroot.Foundation.HRESULT FindTextEnd(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2710winmdroot.Foundation.HRESULT TypeText(winmdroot.Foundation.BSTR bstr);
_generated\261\Windows.Win32.IUIAutomation.g.cs (14)
1868 private static winmdroot.Foundation.HRESULT GetPropertyProgrammaticName(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID property, winmdroot.Foundation.BSTR* name) 1897 public winmdroot.Foundation.BSTR GetPropertyProgrammaticName(winmdroot.UI.Accessibility.UIA_PROPERTY_ID property) 1899 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 1900 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IUIAutomation*)Unsafe.AsPointer(ref this), property, &__retVal).ThrowOnFailure(); 1907 private static winmdroot.Foundation.HRESULT GetPatternProgrammaticName(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID pattern, winmdroot.Foundation.BSTR* name) 1936 public winmdroot.Foundation.BSTR GetPatternProgrammaticName(winmdroot.UI.Accessibility.UIA_PATTERN_ID pattern) 1938 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 1939 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IUIAutomation*)Unsafe.AsPointer(ref this), pattern, &__retVal).ThrowOnFailure(); 2372 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetPropertyProgrammaticName_50; 2374 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetPatternProgrammaticName_51; 2621 unsafe winmdroot.Foundation.HRESULT GetPropertyProgrammaticName(winmdroot.UI.Accessibility.UIA_PROPERTY_ID property, winmdroot.Foundation.BSTR* name); 2624 unsafe winmdroot.Foundation.HRESULT GetPatternProgrammaticName(winmdroot.UI.Accessibility.UIA_PATTERN_ID pattern, winmdroot.Foundation.BSTR* name);
_generated\264\Windows.Win32.IUIAutomationElement.g.cs (158)
804 private static winmdroot.Foundation.HRESULT get_CurrentLocalizedControlType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 826 internal winmdroot.Foundation.BSTR CurrentLocalizedControlType 830 winmdroot.Foundation.BSTR __result; 831 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 836 /// <inheritdoc cref="get_CurrentName(winmdroot.Foundation.BSTR*)"/> 838 internal unsafe winmdroot.Foundation.HRESULT get_CurrentName(out winmdroot.Foundation.BSTR retVal) 840 fixed (winmdroot.Foundation.BSTR* retValLocal = &retVal) 850 private static winmdroot.Foundation.HRESULT get_CurrentName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 869 public unsafe winmdroot.Foundation.HRESULT get_CurrentName(winmdroot.Foundation.BSTR* retVal) 871 return ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IUIAutomationElement*)Unsafe.AsPointer(ref this), retVal); 877 private static winmdroot.Foundation.HRESULT get_CurrentAcceleratorKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 899 internal winmdroot.Foundation.BSTR CurrentAcceleratorKey 903 winmdroot.Foundation.BSTR __result; 904 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 912 private static winmdroot.Foundation.HRESULT get_CurrentAccessKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 932 internal winmdroot.Foundation.BSTR CurrentAccessKey 936 winmdroot.Foundation.BSTR __result; 937 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1050 private static winmdroot.Foundation.HRESULT get_CurrentAutomationId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1070 internal winmdroot.Foundation.BSTR CurrentAutomationId 1074 winmdroot.Foundation.BSTR __result; 1075 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1083 private static winmdroot.Foundation.HRESULT get_CurrentClassName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1103 internal winmdroot.Foundation.BSTR CurrentClassName 1107 winmdroot.Foundation.BSTR __result; 1108 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1116 private static winmdroot.Foundation.HRESULT get_CurrentHelpText(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1139 internal winmdroot.Foundation.BSTR CurrentHelpText 1143 winmdroot.Foundation.BSTR __result; 1144 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1323 private static winmdroot.Foundation.HRESULT get_CurrentItemType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1343 internal winmdroot.Foundation.BSTR CurrentItemType 1347 winmdroot.Foundation.BSTR __result; 1348 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1424 private static winmdroot.Foundation.HRESULT get_CurrentFrameworkId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1446 internal winmdroot.Foundation.BSTR CurrentFrameworkId 1450 winmdroot.Foundation.BSTR __result; 1451 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1494 private static winmdroot.Foundation.HRESULT get_CurrentItemStatus(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1514 internal winmdroot.Foundation.BSTR CurrentItemStatus 1518 winmdroot.Foundation.BSTR __result; 1519 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1603 private static winmdroot.Foundation.HRESULT get_CurrentAriaRole(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1625 internal winmdroot.Foundation.BSTR CurrentAriaRole 1629 winmdroot.Foundation.BSTR __result; 1630 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1638 private static winmdroot.Foundation.HRESULT get_CurrentAriaProperties(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1660 internal winmdroot.Foundation.BSTR CurrentAriaProperties 1664 winmdroot.Foundation.BSTR __result; 1665 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1809 private static winmdroot.Foundation.HRESULT get_CurrentProviderDescription(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1831 internal winmdroot.Foundation.BSTR CurrentProviderDescription 1835 winmdroot.Foundation.BSTR __result; 1836 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1912 private static winmdroot.Foundation.HRESULT get_CachedLocalizedControlType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1934 internal winmdroot.Foundation.BSTR CachedLocalizedControlType 1938 winmdroot.Foundation.BSTR __result; 1939 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1947 private static winmdroot.Foundation.HRESULT get_CachedName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1967 internal winmdroot.Foundation.BSTR CachedName 1971 winmdroot.Foundation.BSTR __result; 1972 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1980 private static winmdroot.Foundation.HRESULT get_CachedAcceleratorKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2002 internal winmdroot.Foundation.BSTR CachedAcceleratorKey 2006 winmdroot.Foundation.BSTR __result; 2007 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2015 private static winmdroot.Foundation.HRESULT get_CachedAccessKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2035 internal winmdroot.Foundation.BSTR CachedAccessKey 2039 winmdroot.Foundation.BSTR __result; 2040 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2153 private static winmdroot.Foundation.HRESULT get_CachedAutomationId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2173 internal winmdroot.Foundation.BSTR CachedAutomationId 2177 winmdroot.Foundation.BSTR __result; 2178 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2186 private static winmdroot.Foundation.HRESULT get_CachedClassName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2206 internal winmdroot.Foundation.BSTR CachedClassName 2210 winmdroot.Foundation.BSTR __result; 2211 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2219 private static winmdroot.Foundation.HRESULT get_CachedHelpText(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2242 internal winmdroot.Foundation.BSTR CachedHelpText 2246 winmdroot.Foundation.BSTR __result; 2247 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2424 private static winmdroot.Foundation.HRESULT get_CachedItemType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2444 internal winmdroot.Foundation.BSTR CachedItemType 2448 winmdroot.Foundation.BSTR __result; 2449 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2525 private static winmdroot.Foundation.HRESULT get_CachedFrameworkId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2547 internal winmdroot.Foundation.BSTR CachedFrameworkId 2551 winmdroot.Foundation.BSTR __result; 2552 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2595 private static winmdroot.Foundation.HRESULT get_CachedItemStatus(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2615 internal winmdroot.Foundation.BSTR CachedItemStatus 2619 winmdroot.Foundation.BSTR __result; 2620 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2699 private static winmdroot.Foundation.HRESULT get_CachedAriaRole(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2721 internal winmdroot.Foundation.BSTR CachedAriaRole 2725 winmdroot.Foundation.BSTR __result; 2726 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2734 private static winmdroot.Foundation.HRESULT get_CachedAriaProperties(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2756 internal winmdroot.Foundation.BSTR CachedAriaProperties 2760 winmdroot.Foundation.BSTR __result; 2761 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2905 private static winmdroot.Foundation.HRESULT get_CachedProviderDescription(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2927 internal winmdroot.Foundation.BSTR CachedProviderDescription 2931 winmdroot.Foundation.BSTR __result; 2932 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3060 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentLocalizedControlType_23; 3062 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentName_24; 3064 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAcceleratorKey_25; 3066 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAccessKey_26; 3074 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAutomationId_30; 3076 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentClassName_31; 3078 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentHelpText_32; 3090 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentItemType_38; 3096 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentFrameworkId_41; 3100 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentItemStatus_43; 3106 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAriaRole_46; 3108 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAriaProperties_47; 3118 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentProviderDescription_52; 3124 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedLocalizedControlType_55; 3126 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedName_56; 3128 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAcceleratorKey_57; 3130 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAccessKey_58; 3138 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAutomationId_62; 3140 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedClassName_63; 3142 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedHelpText_64; 3154 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedItemType_70; 3160 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedFrameworkId_73; 3164 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedItemStatus_75; 3170 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAriaRole_78; 3172 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAriaProperties_79; 3182 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedProviderDescription_84; 3352 winmdroot.Foundation.BSTR CurrentLocalizedControlType 3358 unsafe winmdroot.Foundation.HRESULT get_CurrentName(winmdroot.Foundation.BSTR* retVal); 3360 winmdroot.Foundation.BSTR CurrentAcceleratorKey 3365 winmdroot.Foundation.BSTR CurrentAccessKey 3385 winmdroot.Foundation.BSTR CurrentAutomationId 3390 winmdroot.Foundation.BSTR CurrentClassName 3395 winmdroot.Foundation.BSTR CurrentHelpText 3425 winmdroot.Foundation.BSTR CurrentItemType 3440 winmdroot.Foundation.BSTR CurrentFrameworkId 3450 winmdroot.Foundation.BSTR CurrentItemStatus 3463 winmdroot.Foundation.BSTR CurrentAriaRole 3468 winmdroot.Foundation.BSTR CurrentAriaProperties 3493 winmdroot.Foundation.BSTR CurrentProviderDescription 3508 winmdroot.Foundation.BSTR CachedLocalizedControlType 3513 winmdroot.Foundation.BSTR CachedName 3518 winmdroot.Foundation.BSTR CachedAcceleratorKey 3523 winmdroot.Foundation.BSTR CachedAccessKey 3543 winmdroot.Foundation.BSTR CachedAutomationId 3548 winmdroot.Foundation.BSTR CachedClassName 3553 winmdroot.Foundation.BSTR CachedHelpText 3583 winmdroot.Foundation.BSTR CachedItemType 3598 winmdroot.Foundation.BSTR CachedFrameworkId 3608 winmdroot.Foundation.BSTR CachedItemStatus 3623 winmdroot.Foundation.BSTR CachedAriaRole 3628 winmdroot.Foundation.BSTR CachedAriaProperties 3653 winmdroot.Foundation.BSTR CachedProviderDescription
_generated\269\Windows.Win32.IUIAutomationProxyFactory.g.cs (6)
104 private static winmdroot.Foundation.HRESULT get_ProxyFactoryId(IUIAutomationProxyFactory* pThis, winmdroot.Foundation.BSTR* factoryId) 126 internal winmdroot.Foundation.BSTR ProxyFactoryId 130 winmdroot.Foundation.BSTR __result; 131 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationProxyFactory*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 167 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_ProxyFactoryId_5; 197 winmdroot.Foundation.BSTR ProxyFactoryId
_generated\270\Windows.Win32.IUIAutomationProxyFactoryEntry.g.cs (14)
95 private static winmdroot.Foundation.HRESULT get_ClassName(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BSTR* className) 116 public winmdroot.Foundation.BSTR get_ClassName() 118 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 119 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 126 private static winmdroot.Foundation.HRESULT get_ImageName(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BSTR* imageName) 147 public winmdroot.Foundation.BSTR get_ImageName() 149 winmdroot.Foundation.BSTR __retVal = default(winmdroot.Foundation.BSTR); 150 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 521 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_ClassName_5; 523 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_ImageName_6; 587 unsafe winmdroot.Foundation.HRESULT get_ClassName(winmdroot.Foundation.BSTR* className); 590 unsafe winmdroot.Foundation.HRESULT get_ImageName(winmdroot.Foundation.BSTR* imageName);
_generated\274\Windows.Win32.IValueProvider.g.cs (8)
105 /// <inheritdoc cref="get_Value(winmdroot.Foundation.BSTR*)"/> 107 internal unsafe winmdroot.Foundation.HRESULT get_Value(out winmdroot.Foundation.BSTR pRetVal) 109 fixed (winmdroot.Foundation.BSTR* pRetValLocal = &pRetVal) 119 private static winmdroot.Foundation.HRESULT get_Value(IValueProvider* pThis, winmdroot.Foundation.BSTR* pRetVal) 143 public unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pRetVal) 145 return ((delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 220 internal delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Value_5; 254 unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pRetVal);
_generated\275\Windows.Win32.IVBFormat.g.cs (7)
56 /// <inheritdoc cref="Format(winmdroot.System.Variant.VARIANT*, winmdroot.Foundation.BSTR, void*, ushort, int, short, ushort, ushort*)"/> 58 internal unsafe void Format(ref winmdroot.System.Variant.VARIANT vData, winmdroot.Foundation.BSTR bstrFormat, void* lpBuffer, ushort cb, int lcid, short sFirstDayOfWeek, ushort sFirstWeekOfYear, ref ushort rcb) 72 private static winmdroot.Foundation.HRESULT Format(IVBFormat* pThis, winmdroot.System.Variant.VARIANT* vData, winmdroot.Foundation.BSTR bstrFormat, void* lpBuffer, ushort cb, int lcid, short sFirstDayOfWeek, ushort sFirstWeekOfYear, ushort* rcb) 113 public unsafe void Format(winmdroot.System.Variant.VARIANT* vData, winmdroot.Foundation.BSTR bstrFormat, void* lpBuffer, ushort cb, int lcid, short sFirstDayOfWeek, ushort sFirstWeekOfYear, ushort* rcb) 115 ((delegate *unmanaged [Stdcall]<IVBFormat*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.BSTR ,void* ,ushort ,int ,short ,ushort ,ushort* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IVBFormat*)Unsafe.AsPointer(ref this), vData, bstrFormat, lpBuffer, cb, lcid, sFirstDayOfWeek, sFirstWeekOfYear, rcb).ThrowOnFailure(); 147 internal delegate *unmanaged [Stdcall]<IVBFormat*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.BSTR ,void* ,ushort ,int ,short ,ushort ,ushort* ,winmdroot.Foundation.HRESULT> Format_4; 173 unsafe winmdroot.Foundation.HRESULT Format(winmdroot.System.Variant.VARIANT* vData, winmdroot.Foundation.BSTR bstrFormat, void* lpBuffer, ushort cb, int lcid, short sFirstDayOfWeek, ushort sFirstWeekOfYear, ushort* rcb);
_generated\279\Windows.Win32.IWebBrowser.g.cs (29)
236 /// <inheritdoc cref="Navigate(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*)"/> 238 internal unsafe void Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT? Flags, [Optional] winmdroot.System.Variant.VARIANT? TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT? PostData, [Optional] winmdroot.System.Variant.VARIANT? Headers) 250 private static winmdroot.Foundation.HRESULT Navigate(IWebBrowser* pThis, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers) 267 public unsafe void Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers) 269 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IWebBrowser*)Unsafe.AsPointer(ref this), URL, Flags, TargetFrameName, PostData, Headers).ThrowOnFailure(); 507 private static winmdroot.Foundation.HRESULT get_Type(IWebBrowser* pThis, winmdroot.Foundation.BSTR* Type) 525 internal winmdroot.Foundation.BSTR Type 529 winmdroot.Foundation.BSTR __result; 530 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 759 /// <inheritdoc cref="get_LocationName(winmdroot.Foundation.BSTR*)"/> 761 internal unsafe winmdroot.Foundation.HRESULT get_LocationName(out winmdroot.Foundation.BSTR LocationName) 763 fixed (winmdroot.Foundation.BSTR* LocationNameLocal = &LocationName) 773 private static winmdroot.Foundation.HRESULT get_LocationName(IWebBrowser* pThis, winmdroot.Foundation.BSTR* LocationName) 790 public unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName) 792 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IWebBrowser*)Unsafe.AsPointer(ref this), LocationName); 795 /// <inheritdoc cref="get_LocationURL(winmdroot.Foundation.BSTR*)"/> 797 internal unsafe winmdroot.Foundation.HRESULT get_LocationURL(out winmdroot.Foundation.BSTR LocationURL) 799 fixed (winmdroot.Foundation.BSTR* LocationURLLocal = &LocationURL) 809 private static winmdroot.Foundation.HRESULT get_LocationURL(IWebBrowser* pThis, winmdroot.Foundation.BSTR* LocationURL) 826 public unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL) 828 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IWebBrowser*)Unsafe.AsPointer(ref this), LocationURL); 912 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Navigate_12; 930 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Type_21; 948 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationName_30; 950 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationURL_31; 1014 unsafe winmdroot.Foundation.HRESULT Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers); 1048 winmdroot.Foundation.BSTR Type 1078 unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName); 1081 unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL);
_generated\280\Windows.Win32.IWebBrowser2.g.cs (66)
248 /// <inheritdoc cref="Navigate(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*)"/> 250 internal unsafe void Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT? Flags, [Optional] winmdroot.System.Variant.VARIANT? TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT? PostData, [Optional] winmdroot.System.Variant.VARIANT? Headers) 262 private static winmdroot.Foundation.HRESULT Navigate(IWebBrowser2* pThis, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers) 279 public unsafe void Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers) 281 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IWebBrowser2*)Unsafe.AsPointer(ref this), URL, Flags, TargetFrameName, PostData, Headers).ThrowOnFailure(); 520 private static winmdroot.Foundation.HRESULT get_Type(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* Type) 538 internal winmdroot.Foundation.BSTR Type 542 winmdroot.Foundation.BSTR __result; 543 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 772 /// <inheritdoc cref="get_LocationName(winmdroot.Foundation.BSTR*)"/> 774 internal unsafe winmdroot.Foundation.HRESULT get_LocationName(out winmdroot.Foundation.BSTR LocationName) 776 fixed (winmdroot.Foundation.BSTR* LocationNameLocal = &LocationName) 786 private static winmdroot.Foundation.HRESULT get_LocationName(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* LocationName) 803 public unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName) 805 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IWebBrowser2*)Unsafe.AsPointer(ref this), LocationName); 808 /// <inheritdoc cref="get_LocationURL(winmdroot.Foundation.BSTR*)"/> 810 internal unsafe winmdroot.Foundation.HRESULT get_LocationURL(out winmdroot.Foundation.BSTR LocationURL) 812 fixed (winmdroot.Foundation.BSTR* LocationURLLocal = &LocationURL) 822 private static winmdroot.Foundation.HRESULT get_LocationURL(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* LocationURL) 839 public unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL) 841 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IWebBrowser2*)Unsafe.AsPointer(ref this), LocationURL); 946 private static winmdroot.Foundation.HRESULT PutProperty(IWebBrowser2* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue) 963 public void PutProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue) 965 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IWebBrowser2*)Unsafe.AsPointer(ref this), Property, vtValue).ThrowOnFailure(); 971 private static winmdroot.Foundation.HRESULT GetProperty(IWebBrowser2* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue) 988 public winmdroot.System.Variant.VARIANT GetProperty(winmdroot.Foundation.BSTR Property) 991 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IWebBrowser2*)Unsafe.AsPointer(ref this), Property, &__retVal).ThrowOnFailure(); 998 private static winmdroot.Foundation.HRESULT get_Name(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* Name) 1016 internal winmdroot.Foundation.BSTR Name 1020 winmdroot.Foundation.BSTR __result; 1021 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1062 private static winmdroot.Foundation.HRESULT get_FullName(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* FullName) 1080 internal winmdroot.Foundation.BSTR FullName 1084 winmdroot.Foundation.BSTR __result; 1085 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1093 private static winmdroot.Foundation.HRESULT get_Path(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* Path) 1111 internal winmdroot.Foundation.BSTR Path 1115 winmdroot.Foundation.BSTR __result; 1116 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1236 private static winmdroot.Foundation.HRESULT get_StatusText(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* StatusText) 1254 internal winmdroot.Foundation.BSTR StatusText 1258 winmdroot.Foundation.BSTR __result; 1259 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1264 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1271 private static winmdroot.Foundation.HRESULT put_StatusText(IWebBrowser2* pThis, winmdroot.Foundation.BSTR StatusText) 2108 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Navigate_12; 2126 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Type_21; 2144 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationName_30; 2146 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationURL_31; 2154 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> PutProperty_35; 2156 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetProperty_36; 2158 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_37; 2162 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_FullName_39; 2164 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Path_40; 2174 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_StatusText_45; 2176 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_StatusText_46; 2328 unsafe new winmdroot.Foundation.HRESULT Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers); 2362 new winmdroot.Foundation.BSTR Type 2392 unsafe new winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName); 2395 unsafe new winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL); 2407 new winmdroot.Foundation.HRESULT PutProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue); 2410 unsafe new winmdroot.Foundation.HRESULT GetProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue); 2412 new winmdroot.Foundation.BSTR Name 2422 new winmdroot.Foundation.BSTR FullName 2427 new winmdroot.Foundation.BSTR Path 2444 new winmdroot.Foundation.BSTR StatusText
_generated\281\Windows.Win32.IWebBrowserApp.g.cs (66)
236 /// <inheritdoc cref="Navigate(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*)"/> 238 internal unsafe void Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT? Flags, [Optional] winmdroot.System.Variant.VARIANT? TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT? PostData, [Optional] winmdroot.System.Variant.VARIANT? Headers) 250 private static winmdroot.Foundation.HRESULT Navigate(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers) 267 public unsafe void Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers) 269 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IWebBrowserApp*)Unsafe.AsPointer(ref this), URL, Flags, TargetFrameName, PostData, Headers).ThrowOnFailure(); 507 private static winmdroot.Foundation.HRESULT get_Type(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* Type) 525 internal winmdroot.Foundation.BSTR Type 529 winmdroot.Foundation.BSTR __result; 530 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 759 /// <inheritdoc cref="get_LocationName(winmdroot.Foundation.BSTR*)"/> 761 internal unsafe winmdroot.Foundation.HRESULT get_LocationName(out winmdroot.Foundation.BSTR LocationName) 763 fixed (winmdroot.Foundation.BSTR* LocationNameLocal = &LocationName) 773 private static winmdroot.Foundation.HRESULT get_LocationName(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* LocationName) 790 public unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName) 792 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IWebBrowserApp*)Unsafe.AsPointer(ref this), LocationName); 795 /// <inheritdoc cref="get_LocationURL(winmdroot.Foundation.BSTR*)"/> 797 internal unsafe winmdroot.Foundation.HRESULT get_LocationURL(out winmdroot.Foundation.BSTR LocationURL) 799 fixed (winmdroot.Foundation.BSTR* LocationURLLocal = &LocationURL) 809 private static winmdroot.Foundation.HRESULT get_LocationURL(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* LocationURL) 826 public unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL) 828 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IWebBrowserApp*)Unsafe.AsPointer(ref this), LocationURL); 933 private static winmdroot.Foundation.HRESULT PutProperty(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue) 950 public void PutProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue) 952 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IWebBrowserApp*)Unsafe.AsPointer(ref this), Property, vtValue).ThrowOnFailure(); 958 private static winmdroot.Foundation.HRESULT GetProperty(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue) 975 public winmdroot.System.Variant.VARIANT GetProperty(winmdroot.Foundation.BSTR Property) 978 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IWebBrowserApp*)Unsafe.AsPointer(ref this), Property, &__retVal).ThrowOnFailure(); 985 private static winmdroot.Foundation.HRESULT get_Name(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* Name) 1003 internal winmdroot.Foundation.BSTR Name 1007 winmdroot.Foundation.BSTR __result; 1008 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1049 private static winmdroot.Foundation.HRESULT get_FullName(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* FullName) 1067 internal winmdroot.Foundation.BSTR FullName 1071 winmdroot.Foundation.BSTR __result; 1072 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1080 private static winmdroot.Foundation.HRESULT get_Path(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* Path) 1098 internal winmdroot.Foundation.BSTR Path 1102 winmdroot.Foundation.BSTR __result; 1103 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1223 private static winmdroot.Foundation.HRESULT get_StatusText(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* StatusText) 1241 internal winmdroot.Foundation.BSTR StatusText 1245 winmdroot.Foundation.BSTR __result; 1246 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1251 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1258 private static winmdroot.Foundation.HRESULT put_StatusText(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR StatusText) 1494 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Navigate_12; 1512 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Type_21; 1530 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationName_30; 1532 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationURL_31; 1540 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> PutProperty_35; 1542 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetProperty_36; 1544 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_37; 1548 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_FullName_39; 1550 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Path_40; 1560 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_StatusText_45; 1562 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_StatusText_46; 1656 unsafe new winmdroot.Foundation.HRESULT Navigate(winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT* Flags, [Optional] winmdroot.System.Variant.VARIANT* TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT* PostData, [Optional] winmdroot.System.Variant.VARIANT* Headers); 1690 new winmdroot.Foundation.BSTR Type 1720 unsafe new winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName); 1723 unsafe new winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL); 1735winmdroot.Foundation.HRESULT PutProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue); 1738 unsafe winmdroot.Foundation.HRESULT GetProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue); 1740 winmdroot.Foundation.BSTR Name 1750 winmdroot.Foundation.BSTR FullName 1755 winmdroot.Foundation.BSTR Path 1772 winmdroot.Foundation.BSTR StatusText
_generated\420\Windows.Win32.PInvoke.OLEAUT32.dll.g.cs (4)
164 /// <inheritdoc cref="VarFormat(winmdroot.System.Variant.VARIANT*, winmdroot.Foundation.PWSTR, winmdroot.System.Ole.VARFORMAT_FIRST_DAY, winmdroot.System.Ole.VARFORMAT_FIRST_WEEK, uint, winmdroot.Foundation.BSTR*)"/> 166 internal static unsafe winmdroot.Foundation.HRESULT VarFormat(in winmdroot.System.Variant.VARIANT pvarIn, [Optional] winmdroot.Foundation.PWSTR pstrFormat, winmdroot.System.Ole.VARFORMAT_FIRST_DAY iFirstDay, winmdroot.System.Ole.VARFORMAT_FIRST_WEEK iFirstWeek, uint dwFlags, out winmdroot.Foundation.BSTR pbstrOut) 168 fixed (winmdroot.Foundation.BSTR* pbstrOutLocal = &pbstrOut) 200 internal static extern unsafe winmdroot.Foundation.HRESULT VarFormat(winmdroot.System.Variant.VARIANT* pvarIn, [Optional] winmdroot.Foundation.PWSTR pstrFormat, winmdroot.System.Ole.VARFORMAT_FIRST_DAY iFirstDay, winmdroot.System.Ole.VARFORMAT_FIRST_WEEK iFirstWeek, uint dwFlags, winmdroot.Foundation.BSTR* pbstrOut);
_generated\424\Windows.Win32.PInvoke.UIAutomationCore.dll.g.cs (2)
140 internal static extern unsafe winmdroot.Foundation.HRESULT UiaRaiseNotificationEvent(winmdroot.UI.Accessibility.IRawElementProviderSimple* provider, winmdroot.UI.Accessibility.NotificationKind notificationKind, winmdroot.UI.Accessibility.NotificationProcessing notificationProcessing, [Optional] winmdroot.Foundation.BSTR displayString, winmdroot.Foundation.BSTR activityId);
_generated\481\Windows.Win32.System_Com_IErrorInfo_Extensions.g.cs (9)
33 /// <inheritdoc cref="winmdroot.System.Com.IErrorInfo.Interface.GetSource(winmdroot.Foundation.BSTR*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT GetSource(this winmdroot.System.Com.IErrorInfo.Interface @this, out winmdroot.Foundation.BSTR pBstrSource) 36 fixed (winmdroot.Foundation.BSTR* pBstrSourceLocal = &pBstrSource) 43 /// <inheritdoc cref="winmdroot.System.Com.IErrorInfo.Interface.GetDescription(winmdroot.Foundation.BSTR*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT GetDescription(this winmdroot.System.Com.IErrorInfo.Interface @this, out winmdroot.Foundation.BSTR pBstrDescription) 46 fixed (winmdroot.Foundation.BSTR* pBstrDescriptionLocal = &pBstrDescription) 53 /// <inheritdoc cref="winmdroot.System.Com.IErrorInfo.Interface.GetHelpFile(winmdroot.Foundation.BSTR*)"/> 54 internal static unsafe winmdroot.Foundation.HRESULT GetHelpFile(this winmdroot.System.Com.IErrorInfo.Interface @this, out winmdroot.Foundation.BSTR pBstrHelpFile) 56 fixed (winmdroot.Foundation.BSTR* pBstrHelpFileLocal = &pBstrHelpFile)
_generated\489\Windows.Win32.System_Ole_IClassFactory2_Extensions.g.cs (5)
46 /// <inheritdoc cref="winmdroot.System.Ole.IClassFactory2.Interface.RequestLicKey(uint, winmdroot.Foundation.BSTR*)"/> 47 internal static unsafe winmdroot.Foundation.HRESULT RequestLicKey(this winmdroot.System.Ole.IClassFactory2.Interface @this, uint dwReserved, out winmdroot.Foundation.BSTR pBstrKey) 49 fixed (winmdroot.Foundation.BSTR* pBstrKeyLocal = &pBstrKey) 56 /// <inheritdoc cref="winmdroot.System.Ole.IClassFactory2.Interface.CreateInstanceLic(winmdroot.System.Com.IUnknown*, winmdroot.System.Com.IUnknown*, global::System.Guid*, winmdroot.Foundation.BSTR, void**)"/> 58 internal static unsafe winmdroot.Foundation.HRESULT CreateInstanceLic(this winmdroot.System.Ole.IClassFactory2.Interface @this, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, winmdroot.Foundation.BSTR bstrKey, out void* ppvObj)
_generated\508\Windows.Win32.System_Ole_IOleParentUndoUnit_Extensions.g.cs (3)
23 /// <inheritdoc cref="winmdroot.System.Ole.IOleParentUndoUnit.Interface.GetDescription(winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT GetDescription(this winmdroot.System.Ole.IOleParentUndoUnit.Interface @this, out winmdroot.Foundation.BSTR pBstr) 26 fixed (winmdroot.Foundation.BSTR* pBstrLocal = &pBstr)
_generated\509\Windows.Win32.System_Ole_IOleUndoManager_Extensions.g.cs (6)
33 /// <inheritdoc cref="winmdroot.System.Ole.IOleUndoManager.Interface.GetLastUndoDescription(winmdroot.Foundation.BSTR*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT GetLastUndoDescription(this winmdroot.System.Ole.IOleUndoManager.Interface @this, out winmdroot.Foundation.BSTR pBstr) 36 fixed (winmdroot.Foundation.BSTR* pBstrLocal = &pBstr) 43 /// <inheritdoc cref="winmdroot.System.Ole.IOleUndoManager.Interface.GetLastRedoDescription(winmdroot.Foundation.BSTR*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT GetLastRedoDescription(this winmdroot.System.Ole.IOleUndoManager.Interface @this, out winmdroot.Foundation.BSTR pBstr) 46 fixed (winmdroot.Foundation.BSTR* pBstrLocal = &pBstr)
_generated\510\Windows.Win32.System_Ole_IOleUndoUnit_Extensions.g.cs (3)
23 /// <inheritdoc cref="winmdroot.System.Ole.IOleUndoUnit.Interface.GetDescription(winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT GetDescription(this winmdroot.System.Ole.IOleUndoUnit.Interface @this, out winmdroot.Foundation.BSTR pBstr) 26 fixed (winmdroot.Foundation.BSTR* pBstrLocal = &pBstr)
_generated\513\Windows.Win32.System_Ole_IPerPropertyBrowsing_Extensions.g.cs (3)
23 /// <inheritdoc cref="winmdroot.System.Ole.IPerPropertyBrowsing.Interface.GetDisplayString(int, winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT GetDisplayString(this winmdroot.System.Ole.IPerPropertyBrowsing.Interface @this, int dispID, out winmdroot.Foundation.BSTR pBstr) 26 fixed (winmdroot.Foundation.BSTR* pBstrLocal = &pBstr)
_generated\520\Windows.Win32.System_Ole_IVBFormat_Extensions.g.cs (2)
23 /// <inheritdoc cref="winmdroot.System.Ole.IVBFormat.Interface.Format(winmdroot.System.Variant.VARIANT*, winmdroot.Foundation.BSTR, void*, ushort, int, short, ushort, ushort*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT Format(this winmdroot.System.Ole.IVBFormat.Interface @this, ref winmdroot.System.Variant.VARIANT vData, winmdroot.Foundation.BSTR bstrFormat, void* lpBuffer, ushort cb, int lcid, short sFirstDayOfWeek, ushort sFirstWeekOfYear, ref ushort rcb)
_generated\565\Windows.Win32.UI_Accessibility_IAccessible_Extensions.g.cs (21)
33 /// <inheritdoc cref="winmdroot.UI.Accessibility.IAccessible.Interface.get_accName(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT get_accName(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszName) 36 fixed (winmdroot.Foundation.BSTR* pszNameLocal = &pszName) 43 /// <inheritdoc cref="winmdroot.UI.Accessibility.IAccessible.Interface.get_accValue(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT get_accValue(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszValue) 46 fixed (winmdroot.Foundation.BSTR* pszValueLocal = &pszValue) 53 /// <inheritdoc cref="winmdroot.UI.Accessibility.IAccessible.Interface.get_accDescription(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 54 internal static unsafe winmdroot.Foundation.HRESULT get_accDescription(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszDescription) 56 fixed (winmdroot.Foundation.BSTR* pszDescriptionLocal = &pszDescription) 83 /// <inheritdoc cref="winmdroot.UI.Accessibility.IAccessible.Interface.get_accHelp(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 84 internal static unsafe winmdroot.Foundation.HRESULT get_accHelp(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszHelp) 86 fixed (winmdroot.Foundation.BSTR* pszHelpLocal = &pszHelp) 93 /// <inheritdoc cref="winmdroot.UI.Accessibility.IAccessible.Interface.get_accHelpTopic(winmdroot.Foundation.BSTR*, winmdroot.System.Variant.VARIANT, int*)"/> 94 internal static unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(this winmdroot.UI.Accessibility.IAccessible.Interface @this, out winmdroot.Foundation.BSTR pszHelpFile, winmdroot.System.Variant.VARIANT varChild, out int pidTopic) 98 fixed (winmdroot.Foundation.BSTR* pszHelpFileLocal = &pszHelpFile) 106 /// <inheritdoc cref="winmdroot.UI.Accessibility.IAccessible.Interface.get_accKeyboardShortcut(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 107 internal static unsafe winmdroot.Foundation.HRESULT get_accKeyboardShortcut(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszKeyboardShortcut) 109 fixed (winmdroot.Foundation.BSTR* pszKeyboardShortcutLocal = &pszKeyboardShortcut) 136 /// <inheritdoc cref="winmdroot.UI.Accessibility.IAccessible.Interface.get_accDefaultAction(winmdroot.System.Variant.VARIANT, winmdroot.Foundation.BSTR*)"/> 137 internal static unsafe winmdroot.Foundation.HRESULT get_accDefaultAction(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.Foundation.BSTR pszDefaultAction) 139 fixed (winmdroot.Foundation.BSTR* pszDefaultActionLocal = &pszDefaultAction)
_generated\569\Windows.Win32.UI_Accessibility_ILegacyIAccessibleProvider_Extensions.g.cs (18)
43 /// <inheritdoc cref="winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface.get_Name(winmdroot.Foundation.BSTR*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT get_Name(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszName) 46 fixed (winmdroot.Foundation.BSTR* pszNameLocal = &pszName) 53 /// <inheritdoc cref="winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface.get_Value(winmdroot.Foundation.BSTR*)"/> 54 internal static unsafe winmdroot.Foundation.HRESULT get_Value(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszValue) 56 fixed (winmdroot.Foundation.BSTR* pszValueLocal = &pszValue) 63 /// <inheritdoc cref="winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface.get_Description(winmdroot.Foundation.BSTR*)"/> 64 internal static unsafe winmdroot.Foundation.HRESULT get_Description(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszDescription) 66 fixed (winmdroot.Foundation.BSTR* pszDescriptionLocal = &pszDescription) 93 /// <inheritdoc cref="winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface.get_Help(winmdroot.Foundation.BSTR*)"/> 94 internal static unsafe winmdroot.Foundation.HRESULT get_Help(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszHelp) 96 fixed (winmdroot.Foundation.BSTR* pszHelpLocal = &pszHelp) 103 /// <inheritdoc cref="winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface.get_KeyboardShortcut(winmdroot.Foundation.BSTR*)"/> 104 internal static unsafe winmdroot.Foundation.HRESULT get_KeyboardShortcut(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszKeyboardShortcut) 106 fixed (winmdroot.Foundation.BSTR* pszKeyboardShortcutLocal = &pszKeyboardShortcut) 123 /// <inheritdoc cref="winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface.get_DefaultAction(winmdroot.Foundation.BSTR*)"/> 124 internal static unsafe winmdroot.Foundation.HRESULT get_DefaultAction(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.Foundation.BSTR pszDefaultAction) 126 fixed (winmdroot.Foundation.BSTR* pszDefaultActionLocal = &pszDefaultAction)
_generated\570\Windows.Win32.UI_Accessibility_IMultipleViewProvider_Extensions.g.cs (3)
23 /// <inheritdoc cref="winmdroot.UI.Accessibility.IMultipleViewProvider.Interface.GetViewName(int, winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT GetViewName(this winmdroot.UI.Accessibility.IMultipleViewProvider.Interface @this, int viewId, out winmdroot.Foundation.BSTR pRetVal) 26 fixed (winmdroot.Foundation.BSTR* pRetValLocal = &pRetVal)
_generated\580\Windows.Win32.UI_Accessibility_ITextRangeProvider_Extensions.g.cs (3)
63 /// <inheritdoc cref="winmdroot.UI.Accessibility.ITextRangeProvider.Interface.GetText(int, winmdroot.Foundation.BSTR*)"/> 64 internal static unsafe winmdroot.Foundation.HRESULT GetText(this winmdroot.UI.Accessibility.ITextRangeProvider.Interface @this, int maxLength, out winmdroot.Foundation.BSTR pRetVal) 66 fixed (winmdroot.Foundation.BSTR* pRetValLocal = &pRetVal)
_generated\582\Windows.Win32.UI_Accessibility_IUIAutomationElement_Extensions.g.cs (3)
99 /// <inheritdoc cref="winmdroot.UI.Accessibility.IUIAutomationElement.Interface.get_CurrentName(winmdroot.Foundation.BSTR*)"/> 100 internal static unsafe winmdroot.Foundation.HRESULT get_CurrentName(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, out winmdroot.Foundation.BSTR retVal) 102 fixed (winmdroot.Foundation.BSTR* retValLocal = &retVal)
_generated\583\Windows.Win32.UI_Accessibility_IUIAutomationProxyFactoryEntry_Extensions.g.cs (6)
23 /// <inheritdoc cref="winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface.get_ClassName(winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT get_ClassName(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, out winmdroot.Foundation.BSTR className) 26 fixed (winmdroot.Foundation.BSTR* classNameLocal = &className) 33 /// <inheritdoc cref="winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface.get_ImageName(winmdroot.Foundation.BSTR*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT get_ImageName(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, out winmdroot.Foundation.BSTR imageName) 36 fixed (winmdroot.Foundation.BSTR* imageNameLocal = &imageName)
_generated\585\Windows.Win32.UI_Accessibility_IUIAutomation_Extensions.g.cs (6)
108 /// <inheritdoc cref="winmdroot.UI.Accessibility.IUIAutomation.Interface.GetPropertyProgrammaticName(winmdroot.UI.Accessibility.UIA_PROPERTY_ID, winmdroot.Foundation.BSTR*)"/> 109 internal static unsafe winmdroot.Foundation.HRESULT GetPropertyProgrammaticName(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID property, out winmdroot.Foundation.BSTR name) 111 fixed (winmdroot.Foundation.BSTR* nameLocal = &name) 118 /// <inheritdoc cref="winmdroot.UI.Accessibility.IUIAutomation.Interface.GetPatternProgrammaticName(winmdroot.UI.Accessibility.UIA_PATTERN_ID, winmdroot.Foundation.BSTR*)"/> 119 internal static unsafe winmdroot.Foundation.HRESULT GetPatternProgrammaticName(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.UI.Accessibility.UIA_PATTERN_ID pattern, out winmdroot.Foundation.BSTR name) 121 fixed (winmdroot.Foundation.BSTR* nameLocal = &name)
_generated\586\Windows.Win32.UI_Accessibility_IValueProvider_Extensions.g.cs (3)
33 /// <inheritdoc cref="winmdroot.UI.Accessibility.IValueProvider.Interface.get_Value(winmdroot.Foundation.BSTR*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT get_Value(this winmdroot.UI.Accessibility.IValueProvider.Interface @this, out winmdroot.Foundation.BSTR pRetVal) 36 fixed (winmdroot.Foundation.BSTR* pRetValLocal = &pRetVal)
_generated\589\Windows.Win32.UI_Controls_RichEdit_ITextDocument_Extensions.g.cs (3)
23 /// <inheritdoc cref="winmdroot.UI.Controls.RichEdit.ITextDocument.Interface.GetName(winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT GetName(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out winmdroot.Foundation.BSTR pName) 26 fixed (winmdroot.Foundation.BSTR* pNameLocal = &pName)
_generated\590\Windows.Win32.UI_Controls_RichEdit_ITextFont_Extensions.g.cs (3)
163 /// <inheritdoc cref="winmdroot.UI.Controls.RichEdit.ITextFont.Interface.GetName(winmdroot.Foundation.BSTR*)"/> 164 internal static unsafe winmdroot.Foundation.HRESULT GetName(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out winmdroot.Foundation.BSTR pbstr) 166 fixed (winmdroot.Foundation.BSTR* pbstrLocal = &pbstr)
_generated\592\Windows.Win32.UI_Controls_RichEdit_ITextRange_Extensions.g.cs (9)
23 /// <inheritdoc cref="winmdroot.UI.Controls.RichEdit.ITextRange.Interface.GetText(winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT GetText(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out winmdroot.Foundation.BSTR pbstr) 26 fixed (winmdroot.Foundation.BSTR* pbstrLocal = &pbstr) 261 /// <inheritdoc cref="winmdroot.UI.Controls.RichEdit.ITextRange.Interface.FindText(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 262 internal static unsafe winmdroot.Foundation.HRESULT FindText(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 271 /// <inheritdoc cref="winmdroot.UI.Controls.RichEdit.ITextRange.Interface.FindTextStart(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 272 internal static unsafe winmdroot.Foundation.HRESULT FindTextStart(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 281 /// <inheritdoc cref="winmdroot.UI.Controls.RichEdit.ITextRange.Interface.FindTextEnd(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 282 internal static unsafe winmdroot.Foundation.HRESULT FindTextEnd(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength)
_generated\593\Windows.Win32.UI_Controls_RichEdit_ITextSelection_Extensions.g.cs (9)
23 /// <inheritdoc cref="winmdroot.UI.Controls.RichEdit.ITextSelection.Interface.GetText(winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT GetText(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out winmdroot.Foundation.BSTR pbstr) 26 fixed (winmdroot.Foundation.BSTR* pbstrLocal = &pbstr) 261 /// <inheritdoc cref="winmdroot.UI.Controls.RichEdit.ITextSelection.Interface.FindText(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 262 internal static unsafe winmdroot.Foundation.HRESULT FindText(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 271 /// <inheritdoc cref="winmdroot.UI.Controls.RichEdit.ITextSelection.Interface.FindTextStart(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 272 internal static unsafe winmdroot.Foundation.HRESULT FindTextStart(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength) 281 /// <inheritdoc cref="winmdroot.UI.Controls.RichEdit.ITextSelection.Interface.FindTextEnd(winmdroot.Foundation.BSTR, int, winmdroot.UI.Controls.RichEdit.tomConstants, int*)"/> 282 internal static unsafe winmdroot.Foundation.HRESULT FindTextEnd(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, out int pLength)
_generated\609\Windows.Win32.UI_Shell_IWebBrowser2_Extensions.g.cs (10)
23 /// <inheritdoc cref="winmdroot.UI.Shell.IWebBrowser2.Interface.Navigate(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT Navigate(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT? Flags, [Optional] winmdroot.System.Variant.VARIANT? TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT? PostData, [Optional] winmdroot.System.Variant.VARIANT? Headers) 42 /// <inheritdoc cref="winmdroot.UI.Shell.IWebBrowser2.Interface.get_LocationName(winmdroot.Foundation.BSTR*)"/> 43 internal static unsafe winmdroot.Foundation.HRESULT get_LocationName(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.BSTR LocationName) 45 fixed (winmdroot.Foundation.BSTR* LocationNameLocal = &LocationName) 52 /// <inheritdoc cref="winmdroot.UI.Shell.IWebBrowser2.Interface.get_LocationURL(winmdroot.Foundation.BSTR*)"/> 53 internal static unsafe winmdroot.Foundation.HRESULT get_LocationURL(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.BSTR LocationURL) 55 fixed (winmdroot.Foundation.BSTR* LocationURLLocal = &LocationURL) 85 /// <inheritdoc cref="winmdroot.UI.Shell.IWebBrowser2.Interface.GetProperty(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*)"/> 86 internal static unsafe winmdroot.Foundation.HRESULT GetProperty(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, winmdroot.Foundation.BSTR Property, out winmdroot.System.Variant.VARIANT pvtValue)
_generated\610\Windows.Win32.UI_Shell_IWebBrowserApp_Extensions.g.cs (10)
23 /// <inheritdoc cref="winmdroot.UI.Shell.IWebBrowserApp.Interface.Navigate(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT Navigate(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT? Flags, [Optional] winmdroot.System.Variant.VARIANT? TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT? PostData, [Optional] winmdroot.System.Variant.VARIANT? Headers) 42 /// <inheritdoc cref="winmdroot.UI.Shell.IWebBrowserApp.Interface.get_LocationName(winmdroot.Foundation.BSTR*)"/> 43 internal static unsafe winmdroot.Foundation.HRESULT get_LocationName(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, out winmdroot.Foundation.BSTR LocationName) 45 fixed (winmdroot.Foundation.BSTR* LocationNameLocal = &LocationName) 52 /// <inheritdoc cref="winmdroot.UI.Shell.IWebBrowserApp.Interface.get_LocationURL(winmdroot.Foundation.BSTR*)"/> 53 internal static unsafe winmdroot.Foundation.HRESULT get_LocationURL(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, out winmdroot.Foundation.BSTR LocationURL) 55 fixed (winmdroot.Foundation.BSTR* LocationURLLocal = &LocationURL) 85 /// <inheritdoc cref="winmdroot.UI.Shell.IWebBrowserApp.Interface.GetProperty(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*)"/> 86 internal static unsafe winmdroot.Foundation.HRESULT GetProperty(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, winmdroot.Foundation.BSTR Property, out winmdroot.System.Variant.VARIANT pvtValue)
_generated\611\Windows.Win32.UI_Shell_IWebBrowser_Extensions.g.cs (8)
23 /// <inheritdoc cref="winmdroot.UI.Shell.IWebBrowser.Interface.Navigate(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT Navigate(this winmdroot.UI.Shell.IWebBrowser.Interface @this, winmdroot.Foundation.BSTR URL, [Optional] winmdroot.System.Variant.VARIANT? Flags, [Optional] winmdroot.System.Variant.VARIANT? TargetFrameName, [Optional] winmdroot.System.Variant.VARIANT? PostData, [Optional] winmdroot.System.Variant.VARIANT? Headers) 42 /// <inheritdoc cref="winmdroot.UI.Shell.IWebBrowser.Interface.get_LocationName(winmdroot.Foundation.BSTR*)"/> 43 internal static unsafe winmdroot.Foundation.HRESULT get_LocationName(this winmdroot.UI.Shell.IWebBrowser.Interface @this, out winmdroot.Foundation.BSTR LocationName) 45 fixed (winmdroot.Foundation.BSTR* LocationNameLocal = &LocationName) 52 /// <inheritdoc cref="winmdroot.UI.Shell.IWebBrowser.Interface.get_LocationURL(winmdroot.Foundation.BSTR*)"/> 53 internal static unsafe winmdroot.Foundation.HRESULT get_LocationURL(this winmdroot.UI.Shell.IWebBrowser.Interface @this, out winmdroot.Foundation.BSTR LocationURL) 55 fixed (winmdroot.Foundation.BSTR* LocationURLLocal = &LocationURL)
_generated\623\Windows.Win32.Web_MsHtml_IHTMLCurrentStyle_Extensions.g.cs (2)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLCurrentStyle.Interface.getAttribute(winmdroot.Foundation.BSTR, int, winmdroot.System.Variant.VARIANT*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT getAttribute(this winmdroot.Web.MsHtml.IHTMLCurrentStyle.Interface @this, winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.System.Variant.VARIANT AttributeValue)
_generated\624\Windows.Win32.Web_MsHtml_IHTMLDataTransfer_Extensions.g.cs (6)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDataTransfer.Interface.setData(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.Foundation.VARIANT_BOOL*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT setData(this winmdroot.Web.MsHtml.IHTMLDataTransfer.Interface @this, winmdroot.Foundation.BSTR format, in winmdroot.System.Variant.VARIANT data, out winmdroot.Foundation.VARIANT_BOOL pret) 36 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDataTransfer.Interface.getData(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*)"/> 37 internal static unsafe winmdroot.Foundation.HRESULT getData(this winmdroot.Web.MsHtml.IHTMLDataTransfer.Interface @this, winmdroot.Foundation.BSTR format, out winmdroot.System.Variant.VARIANT pvarRet) 46 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDataTransfer.Interface.clearData(winmdroot.Foundation.BSTR, winmdroot.Foundation.VARIANT_BOOL*)"/> 47 internal static unsafe winmdroot.Foundation.HRESULT clearData(this winmdroot.Web.MsHtml.IHTMLDataTransfer.Interface @this, winmdroot.Foundation.BSTR format, out winmdroot.Foundation.VARIANT_BOOL pret)
_generated\625\Windows.Win32.Web_MsHtml_IHTMLDocument2_Extensions.g.cs (40)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.get_title(winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT get_title(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 26 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 83 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.get_domain(winmdroot.Foundation.BSTR*)"/> 84 internal static unsafe winmdroot.Foundation.HRESULT get_domain(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 86 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 93 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.get_cookie(winmdroot.Foundation.BSTR*)"/> 94 internal static unsafe winmdroot.Foundation.HRESULT get_cookie(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 96 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 103 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.get_charset(winmdroot.Foundation.BSTR*)"/> 104 internal static unsafe winmdroot.Foundation.HRESULT get_charset(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 106 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 113 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.get_defaultCharset(winmdroot.Foundation.BSTR*)"/> 114 internal static unsafe winmdroot.Foundation.HRESULT get_defaultCharset(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 116 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 123 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.get_mimeType(winmdroot.Foundation.BSTR*)"/> 124 internal static unsafe winmdroot.Foundation.HRESULT get_mimeType(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR p) 126 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 133 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.queryCommandSupported(winmdroot.Foundation.BSTR, winmdroot.Foundation.VARIANT_BOOL*)"/> 134 internal static unsafe winmdroot.Foundation.HRESULT queryCommandSupported(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 143 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.queryCommandEnabled(winmdroot.Foundation.BSTR, winmdroot.Foundation.VARIANT_BOOL*)"/> 144 internal static unsafe winmdroot.Foundation.HRESULT queryCommandEnabled(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 153 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.queryCommandState(winmdroot.Foundation.BSTR, winmdroot.Foundation.VARIANT_BOOL*)"/> 154 internal static unsafe winmdroot.Foundation.HRESULT queryCommandState(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 163 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.queryCommandIndeterm(winmdroot.Foundation.BSTR, winmdroot.Foundation.VARIANT_BOOL*)"/> 164 internal static unsafe winmdroot.Foundation.HRESULT queryCommandIndeterm(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 173 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.queryCommandText(winmdroot.Foundation.BSTR, winmdroot.Foundation.BSTR*)"/> 174 internal static unsafe winmdroot.Foundation.HRESULT queryCommandText(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.BSTR pcmdText) 176 fixed (winmdroot.Foundation.BSTR* pcmdTextLocal = &pcmdText) 183 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.queryCommandValue(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*)"/> 184 internal static unsafe winmdroot.Foundation.HRESULT queryCommandValue(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.System.Variant.VARIANT pcmdValue) 193 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.execCommand(winmdroot.Foundation.BSTR, winmdroot.Foundation.VARIANT_BOOL, winmdroot.System.Variant.VARIANT, winmdroot.Foundation.VARIANT_BOOL*)"/> 194 internal static unsafe winmdroot.Foundation.HRESULT execCommand(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL showUI, winmdroot.System.Variant.VARIANT value, out winmdroot.Foundation.VARIANT_BOOL pfRet) 203 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.execCommandShowHelp(winmdroot.Foundation.BSTR, winmdroot.Foundation.VARIANT_BOOL*)"/> 204 internal static unsafe winmdroot.Foundation.HRESULT execCommandShowHelp(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 213 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument2.Interface.toString(winmdroot.Foundation.BSTR*)"/> 214 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.Foundation.BSTR String) 216 fixed (winmdroot.Foundation.BSTR* StringLocal = &String)
_generated\626\Windows.Win32.Web_MsHtml_IHTMLDocument3_Extensions.g.cs (5)
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) 33 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument3.Interface.get_dir(winmdroot.Foundation.BSTR*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT get_dir(this winmdroot.Web.MsHtml.IHTMLDocument3.Interface @this, out winmdroot.Foundation.BSTR p) 36 fixed (winmdroot.Foundation.BSTR* pLocal = &p)
_generated\627\Windows.Win32.Web_MsHtml_IHTMLDocument4_Extensions.g.cs (2)
43 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLDocument4.Interface.fireEvent(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.Foundation.VARIANT_BOOL*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT fireEvent(this winmdroot.Web.MsHtml.IHTMLDocument4.Interface @this, winmdroot.Foundation.BSTR bstrEventName, in winmdroot.System.Variant.VARIANT pvarEventObject, out winmdroot.Foundation.VARIANT_BOOL pfCancelled)
_generated\629\Windows.Win32.Web_MsHtml_IHTMLElement2_Extensions.g.cs (23)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement2.Interface.componentFromPoint(int, int, winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT componentFromPoint(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, int x, int y, out winmdroot.Foundation.BSTR component) 26 fixed (winmdroot.Foundation.BSTR* componentLocal = &component) 33 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement2.Interface.getExpression(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT getExpression(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR propname, out winmdroot.System.Variant.VARIANT expression) 43 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement2.Interface.removeExpression(winmdroot.Foundation.BSTR, winmdroot.Foundation.VARIANT_BOOL*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT removeExpression(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR propname, out winmdroot.Foundation.VARIANT_BOOL pfSuccess) 103 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement2.Interface.attachEvent(winmdroot.Foundation.BSTR, winmdroot.System.Com.IDispatch*, winmdroot.Foundation.VARIANT_BOOL*)"/> 104 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) 153 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement2.Interface.getAdjacentText(winmdroot.Foundation.BSTR, winmdroot.Foundation.BSTR*)"/> 154 internal static unsafe winmdroot.Foundation.HRESULT getAdjacentText(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR where, out winmdroot.Foundation.BSTR text) 156 fixed (winmdroot.Foundation.BSTR* textLocal = &text) 163 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement2.Interface.replaceAdjacentText(winmdroot.Foundation.BSTR, winmdroot.Foundation.BSTR, winmdroot.Foundation.BSTR*)"/> 164 internal static unsafe winmdroot.Foundation.HRESULT replaceAdjacentText(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR newText, out winmdroot.Foundation.BSTR oldText) 166 fixed (winmdroot.Foundation.BSTR* oldTextLocal = &oldText) 183 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement2.Interface.addBehavior(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, int*)"/> 184 internal static unsafe winmdroot.Foundation.HRESULT addBehavior(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR bstrUrl, in winmdroot.System.Variant.VARIANT pvarFactory, out int pCookie)
_generated\630\Windows.Win32.Web_MsHtml_IHTMLElement3_Extensions.g.cs (2)
43 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement3.Interface.fireEvent(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.Foundation.VARIANT_BOOL*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT fireEvent(this winmdroot.Web.MsHtml.IHTMLElement3.Interface @this, winmdroot.Foundation.BSTR bstrEventName, in winmdroot.System.Variant.VARIANT pvarEventObject, out winmdroot.Foundation.VARIANT_BOOL pfCancelled)
_generated\631\Windows.Win32.Web_MsHtml_IHTMLElementCollection_Extensions.g.cs (3)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElementCollection.Interface.toString(winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLElementCollection.Interface @this, out winmdroot.Foundation.BSTR String) 26 fixed (winmdroot.Foundation.BSTR* StringLocal = &String)
_generated\632\Windows.Win32.Web_MsHtml_IHTMLElement_Extensions.g.cs (25)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement.Interface.getAttribute(winmdroot.Foundation.BSTR, int, winmdroot.System.Variant.VARIANT*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT getAttribute(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.System.Variant.VARIANT AttributeValue) 33 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement.Interface.removeAttribute(winmdroot.Foundation.BSTR, int, winmdroot.Foundation.VARIANT_BOOL*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT removeAttribute(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.Foundation.VARIANT_BOOL pfSuccess) 43 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement.Interface.get_id(winmdroot.Foundation.BSTR*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT get_id(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 46 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 53 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement.Interface.get_tagName(winmdroot.Foundation.BSTR*)"/> 54 internal static unsafe winmdroot.Foundation.HRESULT get_tagName(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 56 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 113 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement.Interface.get_innerHTML(winmdroot.Foundation.BSTR*)"/> 114 internal static unsafe winmdroot.Foundation.HRESULT get_innerHTML(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 116 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 123 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement.Interface.get_innerText(winmdroot.Foundation.BSTR*)"/> 124 internal static unsafe winmdroot.Foundation.HRESULT get_innerText(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 126 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 133 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement.Interface.get_outerHTML(winmdroot.Foundation.BSTR*)"/> 134 internal static unsafe winmdroot.Foundation.HRESULT get_outerHTML(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 136 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 143 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement.Interface.get_outerText(winmdroot.Foundation.BSTR*)"/> 144 internal static unsafe winmdroot.Foundation.HRESULT get_outerText(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR p) 146 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 153 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLElement.Interface.toString(winmdroot.Foundation.BSTR*)"/> 154 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out winmdroot.Foundation.BSTR String) 156 fixed (winmdroot.Foundation.BSTR* StringLocal = &String)
_generated\635\Windows.Win32.Web_MsHtml_IHTMLLocation_Extensions.g.cs (6)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLLocation.Interface.get_href(winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT get_href(this winmdroot.Web.MsHtml.IHTMLLocation.Interface @this, out winmdroot.Foundation.BSTR p) 26 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 33 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLLocation.Interface.toString(winmdroot.Foundation.BSTR*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLLocation.Interface @this, out winmdroot.Foundation.BSTR @string) 36 fixed (winmdroot.Foundation.BSTR* @stringLocal = &@string)
_generated\636\Windows.Win32.Web_MsHtml_IHTMLOpsProfile_Extensions.g.cs (13)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface.addRequest(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT, winmdroot.Foundation.VARIANT_BOOL*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT addRequest(this winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface @this, winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, out winmdroot.Foundation.VARIANT_BOOL success) 33 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface.getAttribute(winmdroot.Foundation.BSTR, winmdroot.Foundation.BSTR*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT getAttribute(this winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface @this, winmdroot.Foundation.BSTR name, out winmdroot.Foundation.BSTR value) 36 fixed (winmdroot.Foundation.BSTR* valueLocal = &value) 43 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface.setAttribute(winmdroot.Foundation.BSTR, winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT, winmdroot.Foundation.VARIANT_BOOL*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT setAttribute(this winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface @this, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR value, winmdroot.System.Variant.VARIANT prefs, out winmdroot.Foundation.VARIANT_BOOL success) 63 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface.addReadRequest(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT, winmdroot.Foundation.VARIANT_BOOL*)"/> 64 internal static unsafe winmdroot.Foundation.HRESULT addReadRequest(this winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface @this, winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, out winmdroot.Foundation.VARIANT_BOOL success)
_generated\638\Windows.Win32.Web_MsHtml_IHTMLRuleStyle_Extensions.g.cs (4)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLRuleStyle.Interface.getAttribute(winmdroot.Foundation.BSTR, int, winmdroot.System.Variant.VARIANT*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT getAttribute(this winmdroot.Web.MsHtml.IHTMLRuleStyle.Interface @this, winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.System.Variant.VARIANT AttributeValue) 33 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLRuleStyle.Interface.removeAttribute(winmdroot.Foundation.BSTR, int, winmdroot.Foundation.VARIANT_BOOL*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT removeAttribute(this winmdroot.Web.MsHtml.IHTMLRuleStyle.Interface @this, winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.Foundation.VARIANT_BOOL pfSuccess)
_generated\640\Windows.Win32.Web_MsHtml_IHTMLStyleSheet_Extensions.g.cs (6)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLStyleSheet.Interface.addImport(winmdroot.Foundation.BSTR, int, int*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT addImport(this winmdroot.Web.MsHtml.IHTMLStyleSheet.Interface @this, winmdroot.Foundation.BSTR bstrURL, int lIndex, out int plIndex) 33 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLStyleSheet.Interface.addRule(winmdroot.Foundation.BSTR, winmdroot.Foundation.BSTR, int, int*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT addRule(this winmdroot.Web.MsHtml.IHTMLStyleSheet.Interface @this, winmdroot.Foundation.BSTR bstrSelector, winmdroot.Foundation.BSTR bstrStyle, int lIndex, out int plNewIndex)
_generated\641\Windows.Win32.Web_MsHtml_IHTMLStyle_Extensions.g.cs (10)
23 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLStyle.Interface.get_cssText(winmdroot.Foundation.BSTR*)"/> 24 internal static unsafe winmdroot.Foundation.HRESULT get_cssText(this winmdroot.Web.MsHtml.IHTMLStyle.Interface @this, out winmdroot.Foundation.BSTR p) 26 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 33 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLStyle.Interface.getAttribute(winmdroot.Foundation.BSTR, int, winmdroot.System.Variant.VARIANT*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT getAttribute(this winmdroot.Web.MsHtml.IHTMLStyle.Interface @this, winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.System.Variant.VARIANT AttributeValue) 43 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLStyle.Interface.removeAttribute(winmdroot.Foundation.BSTR, int, winmdroot.Foundation.VARIANT_BOOL*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT removeAttribute(this winmdroot.Web.MsHtml.IHTMLStyle.Interface @this, winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.Foundation.VARIANT_BOOL pfSuccess) 53 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLStyle.Interface.toString(winmdroot.Foundation.BSTR*)"/> 54 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLStyle.Interface @this, out winmdroot.Foundation.BSTR String) 56 fixed (winmdroot.Foundation.BSTR* StringLocal = &String)
_generated\642\Windows.Win32.Web_MsHtml_IHTMLWindow2_Extensions.g.cs (25)
46 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow2.Interface.get_status(winmdroot.Foundation.BSTR*)"/> 47 internal static unsafe winmdroot.Foundation.HRESULT get_status(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, out winmdroot.Foundation.BSTR p) 49 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 56 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow2.Interface.setTimeout(winmdroot.Foundation.BSTR, int, winmdroot.System.Variant.VARIANT*, int*)"/> 57 internal static unsafe winmdroot.Foundation.HRESULT setTimeout(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR expression, int msec, in winmdroot.System.Variant.VARIANT language, out int timerID) 69 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow2.Interface.confirm(winmdroot.Foundation.BSTR, winmdroot.Foundation.VARIANT_BOOL*)"/> 70 internal static unsafe winmdroot.Foundation.HRESULT confirm(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR message, out winmdroot.Foundation.VARIANT_BOOL confirmed) 79 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow2.Interface.prompt(winmdroot.Foundation.BSTR, winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*)"/> 80 internal static unsafe winmdroot.Foundation.HRESULT prompt(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, out winmdroot.System.Variant.VARIANT textdata) 99 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow2.Interface.get_name(winmdroot.Foundation.BSTR*)"/> 100 internal static unsafe winmdroot.Foundation.HRESULT get_name(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, out winmdroot.Foundation.BSTR p) 102 fixed (winmdroot.Foundation.BSTR* pLocal = &p) 109 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow2.Interface.showModalDialog(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*)"/> 110 internal static unsafe winmdroot.Foundation.HRESULT showModalDialog(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR dialog, in winmdroot.System.Variant.VARIANT varArgIn, in winmdroot.System.Variant.VARIANT varOptions, out winmdroot.System.Variant.VARIANT varArgOut) 135 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow2.Interface.setInterval(winmdroot.Foundation.BSTR, int, winmdroot.System.Variant.VARIANT*, int*)"/> 136 internal static unsafe winmdroot.Foundation.HRESULT setInterval(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR expression, int msec, in winmdroot.System.Variant.VARIANT language, out int timerID) 148 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow2.Interface.execScript(winmdroot.Foundation.BSTR, winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*)"/> 149 internal static unsafe winmdroot.Foundation.HRESULT execScript(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR code, winmdroot.Foundation.BSTR language, out winmdroot.System.Variant.VARIANT pvarRet) 158 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow2.Interface.toString(winmdroot.Foundation.BSTR*)"/> 159 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, out winmdroot.Foundation.BSTR String) 161 fixed (winmdroot.Foundation.BSTR* StringLocal = &String)
_generated\643\Windows.Win32.Web_MsHtml_IHTMLWindow3_Extensions.g.cs (4)
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) 85 /// <inheritdoc cref="winmdroot.Web.MsHtml.IHTMLWindow3.Interface.showModelessDialog(winmdroot.Foundation.BSTR, winmdroot.System.Variant.VARIANT*, winmdroot.System.Variant.VARIANT*, winmdroot.Web.MsHtml.IHTMLWindow2**)"/> 86 internal static unsafe winmdroot.Foundation.HRESULT showModelessDialog(this winmdroot.Web.MsHtml.IHTMLWindow3.Interface @this, winmdroot.Foundation.BSTR url, in winmdroot.System.Variant.VARIANT varArgIn, in winmdroot.System.Variant.VARIANT options, winmdroot.Web.MsHtml.IHTMLWindow2** pDialog)
_generated\646\Windows.Win32.Web_MsHtml_IOmNavigator_Extensions.g.cs (3)
43 /// <inheritdoc cref="winmdroot.Web.MsHtml.IOmNavigator.Interface.toString(winmdroot.Foundation.BSTR*)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT toString(this winmdroot.Web.MsHtml.IOmNavigator.Interface @this, out winmdroot.Foundation.BSTR @string) 46 fixed (winmdroot.Foundation.BSTR* @stringLocal = &@string)
Microsoft\VisualStudio\Shell\ICategorizeProperties.cs (4)
66BSTR* pbstrName) 69return ((delegate* unmanaged[Stdcall]<ICategorizeProperties*, PROPCAT, int, BSTR*, HRESULT>)_lpVtbl[2])(pThis, propcat, lcid, pbstrName); 90/// Returns a <see cref="BSTR"/> containing the category name. 98BSTR* pbstrName);
Microsoft\VisualStudio\Shell\IProvidePropertyBuilder.cs (10)
58BSTR* pbstrGuidBldr, 62return ((delegate* unmanaged[Stdcall]<IProvidePropertyBuilder*, int, CTLBLDTYPE*, BSTR*, VARIANT_BOOL*, HRESULT>)_lpVtbl[3])( 72BSTR* bstrGuidBldr, 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*)"/> 94/// should be invoked for the current property from <see cref="MapPropertyToBuilder(int, CTLBLDTYPE*, BSTR*, VARIANT_BOOL*)"/> 115BSTR* pbstrGuidBldr, 123/// The <see cref="BSTR"/> of the builder GUID to invoke. This is returned from 124/// <see cref="MapPropertyToBuilder(int, CTLBLDTYPE*, BSTR*, VARIANT_BOOL*)"/>. 139BSTR* bstrGuidBldr,
Microsoft\VisualStudio\Shell\IVSMDPerPropertyBrowsing.cs (4)
56/// <inheritdoc cref="Interface.GetPropertyAttributes(int, uint*, BSTR**, VARIANT**)"/> 60BSTR** ppbstrTypeNames, 64return ((delegate* unmanaged[Stdcall]<IVSMDPerPropertyBrowsing*, int, uint*, BSTR**, VARIANT**, HRESULT>)_lpVtbl[3])( 104BSTR** ppbstrTypeNames,
Microsoft\VisualStudio\Shell\IVsPerPropertyBrowsing.cs (15)
69/// <inheritdoc cref="Interface.GetLocalizedPropertyInfo(int, uint, BSTR*, BSTR*)"/> 73BSTR* pbstrLocalizedName, 74BSTR* pbstrLocalizeDescription) 77return ((delegate* unmanaged[Stdcall]<IVsPerPropertyBrowsing*, int, uint, BSTR*, BSTR*, HRESULT>)_lpVtbl[5])( 103/// <inheritdoc cref="Interface.GetClassName(BSTR*)"/> 105BSTR* pbstrClassName) 108return ((delegate* unmanaged[Stdcall]<IVsPerPropertyBrowsing*, BSTR*, HRESULT>)_lpVtbl[8])(pThis, pbstrClassName); 159BSTR* pbstrLocalizedName, 160BSTR* pbstrLocalizeDescription); 183/// <see cref="ITypeInfo.GetDocumentation(int, BSTR*, BSTR*, uint*, BSTR*)"/> with <see cref="PInvoke.MEMBERID_NIL"/>. 187BSTR* pbstrClassName);
System\Windows\Forms\Automation\UiaTextRange.cs (2)
281HRESULT ITextRangeProvider.Interface.FindText(BSTR text, BOOL backward, BOOL ignoreCase, ITextRangeProvider** pRetVal) 424HRESULT ITextRangeProvider.Interface.GetText(int maxLength, BSTR* pRetVal)
System\Windows\Forms\IExtender.cs (3)
74internal delegate* unmanaged[Stdcall]<IExtender*, BSTR*, HRESULT> get_Name_20; 193private static HRESULT get_Name(IExtender* @this, BSTR* value) 233BSTR Name { get; }
Windows\Win32\PInvoke.UiaRaiseNotificationEvent.cs (3)
11/// <inheritdoc cref="UiaRaiseNotificationEvent(IRawElementProviderSimple*, NotificationKind, NotificationProcessing, BSTR, BSTR)"/> 21using BSTR bstrText = displayString is null ? default : new(displayString);
Windows\Win32\System\Com\StandardDispatch.cs (5)
134HRESULT IDispatchEx.Interface.GetDispID(BSTR bstrName, uint grfdex, int* pid) 137protected virtual HRESULT GetDispID(BSTR bstrName, uint grfdex, int* pid) => HRESULT.E_NOTIMPL; 139HRESULT IDispatchEx.Interface.GetMemberName(int id, BSTR* pbstrName) 142protected virtual HRESULT GetMemberName(int id, BSTR* pbstrName) => HRESULT.E_NOTIMPL; 237HRESULT IDispatchEx.Interface.DeleteMemberByName(BSTR bstrName, uint grfdex) => HRESULT.E_NOTIMPL;
Windows\Win32\System\Ole\ClassPropertyDispatchAdapter.cs (2)
96/// Matches up to <see cref="IDispatchEx.GetDispID(BSTR, uint, int*)"/> 110/// Matches up to <see cref="IDispatchEx.GetMemberName(int, BSTR*)"/>