3 instantiations of HRESULT
System.Private.Windows.Core (3)
Windows.Win32.HRESULT.g.cs (2)
37 public static explicit operator HRESULT(int value) => new HRESULT(value); 54 public static explicit operator HRESULT(uint value) => new HRESULT((int)value);
Windows\Win32\Foundation\HRESULT.cs (1)
50: new HRESULT(((int)error & 0x0000FFFF) | unchecked((int)0x80070000));
22976 references to HRESULT
ComDisabled.Tests (1)
Control.ActiveXImplTests.cs (1)
26HRESULT hr = persistStream.Save(istream.Value, fClearDirty: BOOL.FALSE);
PresentationCore (19)
System\Windows\dataobject.cs (10)
15using HRESULT = Windows.Win32.Foundation.HRESULT; 594HRESULT Com.IDataObject.Interface.DAdvise(Com.FORMATETC* pformatetc, uint advf, Com.IAdviseSink* pAdvSink, uint* pdwConnection) => 597HRESULT Com.IDataObject.Interface.DUnadvise(uint dwConnection) => 600HRESULT Com.IDataObject.Interface.EnumDAdvise(Com.IEnumSTATDATA** ppenumAdvise) => 603HRESULT Com.IDataObject.Interface.EnumFormatEtc(uint dwDirection, Com.IEnumFORMATETC** ppenumFormatEtc) => 606HRESULT Com.IDataObject.Interface.GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium) => 609HRESULT Com.IDataObject.Interface.GetDataHere(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium) => 612HRESULT Com.IDataObject.Interface.QueryGetData(Com.FORMATETC* pformatetc) => 615HRESULT Com.IDataObject.Interface.GetCanonicalFormatEtc(Com.FORMATETC* pformatectIn, Com.FORMATETC* pformatetcOut) => 618HRESULT Com.IDataObject.Interface.SetData(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium, BOOL fRelease) =>
System\Windows\Ole\WpfOleServices.cs (9)
16using HRESULT = Windows.Win32.Foundation.HRESULT; 27public static HRESULT GetDataHere(string format, object data, FORMATETC* pformatetc, STGMEDIUM* pmedium) 37return HRESULT.S_OK; 57return HRESULT.S_OK; 60return HRESULT.DV_E_TYMED; 103HRESULT result = dataObject->QueryGetData(formatEtc); 183static HRESULT IOleServices.OleGetClipboard(Com.IDataObject** dataObject) => 186static HRESULT IOleServices.OleSetClipboard(Com.IDataObject* dataObject) => 189static HRESULT IOleServices.OleFlushClipboard() =>
System.Drawing.Common (7)
System\Drawing\Icon.cs (2)
872HRESULT result; 884if (result == HRESULT.S_FALSE)
System\Drawing\Printing\PrinterSettings.cs (1)
558HRESULT status = PInvokeCore.PrintDlgEx(&dialogSettings);
System\Drawing\SystemIcons.cs (2)
70HRESULT result = PInvoke.SHGetStockIconInfo( 96HRESULT result = PInvoke.SHGetStockIconInfo(
Windows.Win32.PInvoke.SHELL32.dll.g.cs (1)
90 internal static extern unsafe winmdroot.Foundation.HRESULT SHDefExtractIcon(winmdroot.Foundation.PCWSTR pszIconFile, int iIndex, uint uFlags, [Optional] winmdroot.UI.WindowsAndMessaging.HICON* phiconLarge, [Optional] winmdroot.UI.WindowsAndMessaging.HICON* phiconSmall, uint nIconSize);
Windows\Win32\PInvoke.SHGetStockIconInfo.cs (1)
67public static extern unsafe HRESULT SHGetStockIconInfo(SHSTOCKICONID siid, SHGSI_FLAGS uFlags, SHSTOCKICONINFO* psii);
System.Private.Windows.Core (2737)
System\IO\StreamExtensions.cs (6)
26/// <returns><see cref="HRESULT.S_OK"/> if successful.</returns> 27internal static unsafe HRESULT SaveStreamToHGLOBAL(this Stream stream, ref HGLOBAL hglobal) 34return HRESULT.E_OUTOFMEMORY; 42return HRESULT.E_OUTOFMEMORY; 48return HRESULT.E_OUTOFMEMORY; 62return HRESULT.S_OK;
System\Private\Windows\Ole\ClipboardCore.cs (16)
28/// <returns>An <see cref="HRESULT"/> indicating the success or failure of the operation.</returns> 29internal static HRESULT Clear( 35HRESULT result; 54/// <returns>An <see cref="HRESULT"/> indicating the success or failure of the operation.</returns> 55internal static HRESULT Flush( 61HRESULT result; 84/// <returns>An <see cref="HRESULT"/> indicating the success or failure of the operation.</returns> 85internal static HRESULT SetData( 98HRESULT result; 132/// <returns>An <see cref="HRESULT"/> indicating the success or failure of the operation.</returns> 134internal static HRESULT TryGetData( 146HRESULT result; 166using ComScope<IComCallableWrapper> realDataObject = proxyDataObject.TryQuery<IComCallableWrapper>(out HRESULT wrapperResult); 195HRESULT result = TryGetData( 211internal static HRESULT GetDataObject<TDataObject, TIDataObject>( 220HRESULT result = TryGetData(
System\Private\Windows\Ole\Composition.cs (9)
181public HRESULT DAdvise(FORMATETC* pformatetc, uint advf, IAdviseSink* pAdvSink, uint* pdwConnection) => _nativeDataObject.DAdvise(pformatetc, advf, pAdvSink, pdwConnection); 182public HRESULT DUnadvise(uint dwConnection) => _nativeDataObject.DUnadvise(dwConnection); 183public HRESULT EnumDAdvise(IEnumSTATDATA** ppenumAdvise) => _nativeDataObject.EnumDAdvise(ppenumAdvise); 184public HRESULT EnumFormatEtc(uint dwDirection, IEnumFORMATETC** ppenumFormatEtc) => _nativeDataObject.EnumFormatEtc(dwDirection, ppenumFormatEtc); 185public HRESULT GetCanonicalFormatEtc(FORMATETC* pformatectIn, FORMATETC* pformatetcOut) => _nativeDataObject.GetCanonicalFormatEtc(pformatectIn, pformatetcOut); 186public HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) => _nativeDataObject.GetData(pformatetcIn, pmedium); 187public HRESULT GetDataHere(FORMATETC* pformatetc, STGMEDIUM* pmedium) => _nativeDataObject.GetDataHere(pformatetc, pmedium); 188public HRESULT QueryGetData(FORMATETC* pformatetc) => _nativeDataObject.QueryGetData(pformatetc); 189public HRESULT SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease) => _nativeDataObject.SetData(pformatetc, pmedium, fRelease);
System\Private\Windows\Ole\Composition.ManagedToNativeAdapter.cs (56)
36public HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) 40return HRESULT.DV_E_FORMATETC; 45return HRESULT.E_POINTER; 54return HRESULT.S_OK; 60return HRESULT.S_OK; 68return HRESULT.DV_E_TYMED; 82return HRESULT.E_OUTOFMEMORY; 85HRESULT result = GetDataHere(pformatetcIn, pmedium); 95public HRESULT GetDataHere(FORMATETC* pformatetc, STGMEDIUM* pmedium) 99return HRESULT.DV_E_FORMATETC; 104return HRESULT.E_POINTER; 109return HRESULT.DV_E_TYMED; 116return HRESULT.DV_E_FORMATETC; 121return HRESULT.E_UNEXPECTED; 128HRESULT result = SaveDataToHGLOBAL(data, format, ref *pmedium); 129if (result != HRESULT.E_UNEXPECTED) 153public HRESULT QueryGetData(FORMATETC* pformatetc) 157return HRESULT.DV_E_FORMATETC; 162return HRESULT.DV_E_DVASPECT; 167return HRESULT.DV_E_TYMED; 172return HRESULT.S_FALSE; 177return HRESULT.DV_E_FORMATETC; 180return HRESULT.S_OK; 183public HRESULT GetCanonicalFormatEtc(FORMATETC* pformatectIn, FORMATETC* pformatetcOut) 187return HRESULT.E_POINTER; 191return (HRESULT)DATA_S_SAMEFORMATETC; 194public HRESULT SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease) 198return HRESULT.DV_E_FORMATETC; 203return HRESULT.E_POINTER; 219return HRESULT.S_OK; 222return HRESULT.E_NOTIMPL; 225public HRESULT EnumFormatEtc(uint dwDirection, IEnumFORMATETC** ppenumFormatEtc) 229return HRESULT.E_POINTER; 238return HRESULT.S_OK; 241return HRESULT.E_NOTIMPL; 244public HRESULT DAdvise(FORMATETC* pformatetc, uint advf, IAdviseSink* pAdvSink, uint* pdwConnection) 248return HRESULT.E_POINTER; 252return HRESULT.E_NOTIMPL; 255public HRESULT DUnadvise(uint dwConnection) => HRESULT.E_NOTIMPL; 257public HRESULT EnumDAdvise(IEnumSTATDATA** ppenumAdvise) 261return HRESULT.E_POINTER; 265return HRESULT.OLE_E_ADVISENOTSUPPORTED; 269private HRESULT SaveDataToHGLOBAL(object data, string format, ref STGMEDIUM medium) 291_ => HRESULT.E_UNEXPECTED 294static HRESULT SaveObjectToHGLOBAL(ref HGLOBAL hglobal, object data, string format) 306static HRESULT SaveFileListToHGLOBAL(HGLOBAL hglobal, string[] files) 310return HRESULT.S_OK; 315return HRESULT.E_INVALIDARG; 364return HRESULT.S_OK; 367static HRESULT SaveDbcsToHGLOBAL(HGLOBAL hglobal, string value) 382return HRESULT.S_OK; 385static HRESULT SaveUtf16ToHGLOBAL(HGLOBAL hglobal, string value) 401return HRESULT.S_OK; 404static HRESULT SaveUtf8ToHGLOBAL(HGLOBAL hglobal, string value) 420return HRESULT.S_OK;
System\Private\Windows\Ole\Composition.NativeToManagedAdapter.cs (19)
34public HRESULT DAdvise(Com.FORMATETC* pformatetc, uint advf, Com.IAdviseSink* pAdvSink, uint* pdwConnection) 40public HRESULT DUnadvise(uint dwConnection) 46public HRESULT EnumDAdvise(Com.IEnumSTATDATA** ppenumAdvise) 52public HRESULT EnumFormatEtc(uint dwDirection, Com.IEnumFORMATETC** ppenumFormatEtc) 58public HRESULT GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium) 64public HRESULT GetDataHere(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium) 70public HRESULT QueryGetData(Com.FORMATETC* pformatetc) 76public HRESULT GetCanonicalFormatEtc(Com.FORMATETC* pformatectIn, Com.FORMATETC* pformatetcOut) 82public HRESULT SetData(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium, BOOL fRelease) 144throw new ExternalException(SR.ExternalException, (int)HRESULT.E_OUTOFMEMORY); 306HRESULT hr = dataObject->GetData(formatetc, out Com.STGMEDIUM medium); 312Debug.WriteLineIf(hr == HRESULT.CLIPBRD_E_BAD_DATA, "CLIPBRD_E_BAD_DATA returned when trying to get clipboard data."); 313Debug.WriteLineIf(hr == HRESULT.DV_E_TYMED, "DV_E_TYMED returned when trying to get clipboard data."); 315Debug.WriteLineIf(hr == HRESULT.E_UNEXPECTED, "E_UNEXPECTED returned when trying to get clipboard data."); 316Debug.WriteLineIf(hr == HRESULT.COR_E_SERIALIZATION, 322if (medium.tymed == Com.TYMED.TYMED_HGLOBAL && !medium.hGlobal.IsNull && hr != HRESULT.COR_E_SERIALIZATION) 564while (enumFORMATETC.Value->Next(1, &formatEtc) == HRESULT.S_OK) 645HRESULT hr = nativeDataObject.Value->QueryGetData(formatEtc); 648return hr == HRESULT.S_OK;
System\Private\Windows\Ole\Composition.NativeToRuntimeAdapter.cs (4)
50HRESULT result = nativeDataObject.Value->EnumDAdvise(nativeStatData); 61throw new ExternalException(SR.ExternalException, (int)HRESULT.E_NOTIMPL); 70HRESULT result = nativeDataObject.Value->GetCanonicalFormatEtc(Unsafe.As<FORMATETC, Com.FORMATETC>(ref formatIn), out Com.FORMATETC nativeFormat); 106HRESULT result = nativeDataObject.Value->SetData(&nativeFormat, &nativeMedium, release);
System\Private\Windows\Ole\Composition.RuntimeToNativeAdapter.cs (31)
33HRESULT Com.IDataObject.Interface.DAdvise(Com.FORMATETC* pformatetc, uint advf, Com.IAdviseSink* pAdvSink, uint* pdwConnection) 36return (HRESULT)DAdvise(ref *(FORMATETC*)pformatetc, (ADVF)advf, adviseSink, out *(int*)pdwConnection); 39HRESULT Com.IDataObject.Interface.DUnadvise(uint dwConnection) 47return (HRESULT)e.HResult; 50return HRESULT.S_OK; 53HRESULT Com.IDataObject.Interface.EnumDAdvise(Com.IEnumSTATDATA** ppenumAdvise) 57return HRESULT.E_POINTER; 62HRESULT hr = (HRESULT)EnumDAdvise(out var enumAdvice); 69return hr.Succeeded ? hr : HRESULT.E_NOINTERFACE; 72HRESULT Com.IDataObject.Interface.EnumFormatEtc(uint dwDirection, Com.IEnumFORMATETC** ppenumFormatEtc) 76return HRESULT.E_POINTER; 80*ppenumFormatEtc = ComHelpers.TryGetComPointer<Com.IEnumFORMATETC>(comTypeFormatEtc, out HRESULT hr); 81return hr.Succeeded ? HRESULT.S_OK : HRESULT.E_NOINTERFACE; 84HRESULT Com.IDataObject.Interface.GetCanonicalFormatEtc(Com.FORMATETC* pformatectIn, Com.FORMATETC* pformatetcOut) => 85(HRESULT)GetCanonicalFormatEtc(ref *(FORMATETC*)pformatectIn, out *(FORMATETC*)pformatetcOut); 87HRESULT Com.IDataObject.Interface.GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium) 91return HRESULT.E_POINTER; 98return HRESULT.S_OK; 102return (HRESULT)e.HResult; 106HRESULT Com.IDataObject.Interface.GetDataHere(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium) 110return HRESULT.E_POINTER; 120return (HRESULT)e.HResult; 124return HRESULT.S_OK; 127HRESULT Com.IDataObject.Interface.QueryGetData(Com.FORMATETC* pformatetc) => (HRESULT)QueryGetData(ref *(FORMATETC*)pformatetc); 129HRESULT Com.IDataObject.Interface.SetData(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium, BOOL fRelease) 133return HRESULT.E_POINTER; 143return (HRESULT)e.HResult; 146return HRESULT.S_OK;
System\Private\Windows\Ole\DragDropHelper.cs (1)
447HRESULT hr = PInvokeCore.CoCreateInstance(
System\Private\Windows\Ole\FormatEnumerator.cs (15)
61return (int)HRESULT.S_FALSE; 77return (int)HRESULT.S_OK; 84return (int)HRESULT.S_FALSE; 88return (int)HRESULT.S_OK; 94return (int)HRESULT.S_OK; 102HRESULT IEnumFORMATETC.Interface.Next(uint celt, FORMATETC* rgelt, uint* pceltFetched) 106return HRESULT.E_POINTER; 125return (HRESULT)result; 128HRESULT IEnumFORMATETC.Interface.Skip(uint celt) => (HRESULT)Skip((int)celt); 130HRESULT IEnumFORMATETC.Interface.Reset() => (HRESULT)Reset(); 132HRESULT IEnumFORMATETC.Interface.Clone(IEnumFORMATETC** ppenum) 136return HRESULT.E_POINTER; 141return HRESULT.S_OK;
System\Private\Windows\Ole\IOleServices.cs (4)
30static abstract HRESULT GetDataHere(string format, object data, FORMATETC* pformatetc, STGMEDIUM* pmedium); 79static abstract HRESULT OleGetClipboard(IDataObject** dataObject); 82static abstract HRESULT OleSetClipboard(IDataObject* dataObject); 85static abstract HRESULT OleFlushClipboard();
Windows.Win32.ComHelpers.g.cs (5)
22 private static readonly winmdroot.Foundation.HRESULT COR_E_OBJECTDISPOSED = (winmdroot.Foundation.HRESULT)unchecked((int)0x80131622); 24 private static readonly winmdroot.Foundation.HRESULT S_OK = (winmdroot.Foundation.HRESULT)0; 27 internal static winmdroot.Foundation.HRESULT UnwrapCCW<TThis, TInterface>(TThis* @this, out TInterface @object)
Windows.Win32.EXCEPINFO.g.cs (1)
52 internal unsafe delegate *unmanaged[Stdcall]<global::Windows.Win32.System.Com.EXCEPINFO*,global::Windows.Win32.Foundation.HRESULT> pfnDeferredFillIn;
Windows.Win32.HRESULT.g.cs (331)
29 : IEquatable<HRESULT> 35 public static implicit operator int(HRESULT value) => value.Value; 37 public static explicit operator HRESULT(int value) => new HRESULT(value); 39 public static bool operator ==(HRESULT left, HRESULT right) => left.Value == right.Value; 41 public static bool operator !=(HRESULT left, HRESULT right) => !(left == right); 43 public bool Equals(HRESULT other) => this.Value == other.Value; 45 public override bool Equals(object obj) => obj is HRESULT other && this.Equals(other); 52 public static implicit operator uint(HRESULT value) => (uint)value.Value; 54 public static explicit operator HRESULT(uint value) => new HRESULT((int)value); 72 /// <returns><see langword="this"/> <see cref="HRESULT"/>, if it does not reflect an error.</returns> 74 internal HRESULT ThrowOnFailure(IntPtr errorInfo = default) 84 internal static readonly winmdroot.Foundation.HRESULT CLIPBRD_E_BAD_DATA = (winmdroot.Foundation.HRESULT)(-2147221037); 86 internal static readonly winmdroot.Foundation.HRESULT DATA_S_SAMEFORMATETC = (winmdroot.Foundation.HRESULT)(262448); 88 internal static readonly winmdroot.Foundation.HRESULT DISP_E_ARRAYISLOCKED = (winmdroot.Foundation.HRESULT)(-2147352563); 90 internal static readonly winmdroot.Foundation.HRESULT DISP_E_BADCALLEE = (winmdroot.Foundation.HRESULT)(-2147352560); 92 internal static readonly winmdroot.Foundation.HRESULT DISP_E_BADINDEX = (winmdroot.Foundation.HRESULT)(-2147352565); 94 internal static readonly winmdroot.Foundation.HRESULT DISP_E_BADPARAMCOUNT = (winmdroot.Foundation.HRESULT)(-2147352562); 96 internal static readonly winmdroot.Foundation.HRESULT DISP_E_BADVARTYPE = (winmdroot.Foundation.HRESULT)(-2147352568); 98 internal static readonly winmdroot.Foundation.HRESULT DISP_E_BUFFERTOOSMALL = (winmdroot.Foundation.HRESULT)(-2147352557); 100 internal static readonly winmdroot.Foundation.HRESULT DISP_E_DIVBYZERO = (winmdroot.Foundation.HRESULT)(-2147352558); 102 internal static readonly winmdroot.Foundation.HRESULT DISP_E_EXCEPTION = (winmdroot.Foundation.HRESULT)(-2147352567); 104 internal static readonly winmdroot.Foundation.HRESULT DISP_E_MEMBERNOTFOUND = (winmdroot.Foundation.HRESULT)(-2147352573); 106 internal static readonly winmdroot.Foundation.HRESULT DISP_E_NONAMEDARGS = (winmdroot.Foundation.HRESULT)(-2147352569); 108 internal static readonly winmdroot.Foundation.HRESULT DISP_E_NOTACOLLECTION = (winmdroot.Foundation.HRESULT)(-2147352559); 110 internal static readonly winmdroot.Foundation.HRESULT DISP_E_OVERFLOW = (winmdroot.Foundation.HRESULT)(-2147352566); 112 internal static readonly winmdroot.Foundation.HRESULT DISP_E_PARAMNOTFOUND = (winmdroot.Foundation.HRESULT)(-2147352572); 114 internal static readonly winmdroot.Foundation.HRESULT DISP_E_PARAMNOTOPTIONAL = (winmdroot.Foundation.HRESULT)(-2147352561); 116 internal static readonly winmdroot.Foundation.HRESULT DISP_E_TYPEMISMATCH = (winmdroot.Foundation.HRESULT)(-2147352571); 118 internal static readonly winmdroot.Foundation.HRESULT DISP_E_UNKNOWNINTERFACE = (winmdroot.Foundation.HRESULT)(-2147352575); 120 internal static readonly winmdroot.Foundation.HRESULT DISP_E_UNKNOWNLCID = (winmdroot.Foundation.HRESULT)(-2147352564); 122 internal static readonly winmdroot.Foundation.HRESULT DISP_E_UNKNOWNNAME = (winmdroot.Foundation.HRESULT)(-2147352570); 124 internal static readonly winmdroot.Foundation.HRESULT DRAGDROP_E_ALREADYREGISTERED = (winmdroot.Foundation.HRESULT)(-2147221247); 126 internal static readonly winmdroot.Foundation.HRESULT DRAGDROP_E_NOTREGISTERED = (winmdroot.Foundation.HRESULT)(-2147221248); 128 internal static readonly winmdroot.Foundation.HRESULT DRAGDROP_S_CANCEL = (winmdroot.Foundation.HRESULT)(262401); 130 internal static readonly winmdroot.Foundation.HRESULT DRAGDROP_S_DROP = (winmdroot.Foundation.HRESULT)(262400); 132 internal static readonly winmdroot.Foundation.HRESULT DRAGDROP_S_USEDEFAULTCURSORS = (winmdroot.Foundation.HRESULT)(262402); 134 internal static readonly winmdroot.Foundation.HRESULT DV_E_FORMATETC = (winmdroot.Foundation.HRESULT)(-2147221404); 136 internal static readonly winmdroot.Foundation.HRESULT DV_E_DVTARGETDEVICE = (winmdroot.Foundation.HRESULT)(-2147221403); 138 internal static readonly winmdroot.Foundation.HRESULT DV_E_STGMEDIUM = (winmdroot.Foundation.HRESULT)(-2147221402); 140 internal static readonly winmdroot.Foundation.HRESULT DV_E_STATDATA = (winmdroot.Foundation.HRESULT)(-2147221401); 142 internal static readonly winmdroot.Foundation.HRESULT DV_E_LINDEX = (winmdroot.Foundation.HRESULT)(-2147221400); 144 internal static readonly winmdroot.Foundation.HRESULT DV_E_TYMED = (winmdroot.Foundation.HRESULT)(-2147221399); 146 internal static readonly winmdroot.Foundation.HRESULT DV_E_CLIPFORMAT = (winmdroot.Foundation.HRESULT)(-2147221398); 148 internal static readonly winmdroot.Foundation.HRESULT DV_E_DVASPECT = (winmdroot.Foundation.HRESULT)(-2147221397); 150 internal static readonly winmdroot.Foundation.HRESULT DV_E_DVTARGETDEVICE_SIZE = (winmdroot.Foundation.HRESULT)(-2147221396); 152 internal static readonly winmdroot.Foundation.HRESULT DV_E_NOIVIEWOBJECT = (winmdroot.Foundation.HRESULT)(-2147221395); 154 internal static readonly winmdroot.Foundation.HRESULT E_ABORT = (winmdroot.Foundation.HRESULT)(-2147467260); 156 internal static readonly winmdroot.Foundation.HRESULT E_ACCESSDENIED = (winmdroot.Foundation.HRESULT)(-2147024891); 162 internal static readonly winmdroot.Foundation.HRESULT E_FAIL = (winmdroot.Foundation.HRESULT)(-2147467259); 164 internal static readonly winmdroot.Foundation.HRESULT E_HANDLE = (winmdroot.Foundation.HRESULT)(-2147024890); 167 internal static readonly winmdroot.Foundation.HRESULT E_INVALIDARG = (winmdroot.Foundation.HRESULT)(-2147024809); 169 internal static readonly winmdroot.Foundation.HRESULT E_NOINTERFACE = (winmdroot.Foundation.HRESULT)(-2147467262); 171 internal static readonly winmdroot.Foundation.HRESULT E_NOTIMPL = (winmdroot.Foundation.HRESULT)(-2147467263); 173 internal static readonly winmdroot.Foundation.HRESULT E_OUTOFMEMORY = (winmdroot.Foundation.HRESULT)(-2147024882); 175 internal static readonly winmdroot.Foundation.HRESULT E_PENDING = (winmdroot.Foundation.HRESULT)(-2147483638); 177 internal static readonly winmdroot.Foundation.HRESULT E_POINTER = (winmdroot.Foundation.HRESULT)(-2147467261); 179 internal static readonly winmdroot.Foundation.HRESULT E_UNEXPECTED = (winmdroot.Foundation.HRESULT)(-2147418113); 181 internal static readonly winmdroot.Foundation.HRESULT INPLACE_E_NOTOOLSPACE = (winmdroot.Foundation.HRESULT)(-2147221087); 183 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_CANNOT_FIND_FILE = (winmdroot.Foundation.HRESULT)(-1072885353); 185 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_DSHOW_UNSUPPORTED_FORMAT = (winmdroot.Foundation.HRESULT)(-1072885350); 187 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_INVALID_ASX = (winmdroot.Foundation.HRESULT)(-1072885347); 189 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_LOGON_FAILURE = (winmdroot.Foundation.HRESULT)(-1072885354); 191 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_UNSUPPORTED_FORMAT = (winmdroot.Foundation.HRESULT)(-1072885351); 193 internal static readonly winmdroot.Foundation.HRESULT NS_E_WMP_URLDOWNLOADFAILED = (winmdroot.Foundation.HRESULT)(-1072885782); 195 internal static readonly winmdroot.Foundation.HRESULT OLE_E_ADVISENOTSUPPORTED = (winmdroot.Foundation.HRESULT)(-2147221501); 197 internal static readonly winmdroot.Foundation.HRESULT OLE_E_INVALIDRECT = (winmdroot.Foundation.HRESULT)(-2147221491); 199 internal static readonly winmdroot.Foundation.HRESULT OLE_E_NOCONNECTION = (winmdroot.Foundation.HRESULT)(-2147221500); 201 internal static readonly winmdroot.Foundation.HRESULT OLE_E_PROMPTSAVECANCELLED = (winmdroot.Foundation.HRESULT)(-2147221492); 203 internal static readonly winmdroot.Foundation.HRESULT OLECMDERR_E_DISABLED = (winmdroot.Foundation.HRESULT)(-2147221247); 205 internal static readonly winmdroot.Foundation.HRESULT OLECMDERR_E_UNKNOWNGROUP = (winmdroot.Foundation.HRESULT)(-2147221244); 207 internal static readonly winmdroot.Foundation.HRESULT REGDB_E_CLASSNOTREG = (winmdroot.Foundation.HRESULT)(-2147221164); 209 internal static readonly winmdroot.Foundation.HRESULT RPC_E_CHANGED_MODE = (winmdroot.Foundation.HRESULT)(-2147417850); 211 internal static readonly winmdroot.Foundation.HRESULT RPC_E_DISCONNECTED = (winmdroot.Foundation.HRESULT)(-2147417848); 213 internal static readonly winmdroot.Foundation.HRESULT RPC_E_SERVERFAULT = (winmdroot.Foundation.HRESULT)(-2147417851); 215 internal static readonly winmdroot.Foundation.HRESULT RPC_E_SYS_CALL_FAILED = (winmdroot.Foundation.HRESULT)(-2147417856); 217 internal static readonly winmdroot.Foundation.HRESULT S_FALSE = (winmdroot.Foundation.HRESULT)(1); 220 internal static readonly winmdroot.Foundation.HRESULT S_OK = (winmdroot.Foundation.HRESULT)(0); 222 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDFUNCTION = (winmdroot.Foundation.HRESULT)(-2147287039); 224 internal static readonly winmdroot.Foundation.HRESULT STG_E_FILENOTFOUND = (winmdroot.Foundation.HRESULT)(-2147287038); 226 internal static readonly winmdroot.Foundation.HRESULT STG_E_PATHNOTFOUND = (winmdroot.Foundation.HRESULT)(-2147287037); 228 internal static readonly winmdroot.Foundation.HRESULT STG_E_TOOMANYOPENFILES = (winmdroot.Foundation.HRESULT)(-2147287036); 230 internal static readonly winmdroot.Foundation.HRESULT STG_E_ACCESSDENIED = (winmdroot.Foundation.HRESULT)(-2147287035); 232 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDHANDLE = (winmdroot.Foundation.HRESULT)(-2147287034); 234 internal static readonly winmdroot.Foundation.HRESULT STG_E_INSUFFICIENTMEMORY = (winmdroot.Foundation.HRESULT)(-2147287032); 236 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDPOINTER = (winmdroot.Foundation.HRESULT)(-2147287031); 238 internal static readonly winmdroot.Foundation.HRESULT STG_E_NOMOREFILES = (winmdroot.Foundation.HRESULT)(-2147287022); 240 internal static readonly winmdroot.Foundation.HRESULT STG_E_DISKISWRITEPROTECTED = (winmdroot.Foundation.HRESULT)(-2147287021); 242 internal static readonly winmdroot.Foundation.HRESULT STG_E_SEEKERROR = (winmdroot.Foundation.HRESULT)(-2147287015); 244 internal static readonly winmdroot.Foundation.HRESULT STG_E_WRITEFAULT = (winmdroot.Foundation.HRESULT)(-2147287011); 246 internal static readonly winmdroot.Foundation.HRESULT STG_E_READFAULT = (winmdroot.Foundation.HRESULT)(-2147287010); 248 internal static readonly winmdroot.Foundation.HRESULT STG_E_SHAREVIOLATION = (winmdroot.Foundation.HRESULT)(-2147287008); 250 internal static readonly winmdroot.Foundation.HRESULT STG_E_LOCKVIOLATION = (winmdroot.Foundation.HRESULT)(-2147287007); 252 internal static readonly winmdroot.Foundation.HRESULT STG_E_FILEALREADYEXISTS = (winmdroot.Foundation.HRESULT)(-2147286960); 254 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDPARAMETER = (winmdroot.Foundation.HRESULT)(-2147286953); 256 internal static readonly winmdroot.Foundation.HRESULT STG_E_MEDIUMFULL = (winmdroot.Foundation.HRESULT)(-2147286928); 258 internal static readonly winmdroot.Foundation.HRESULT STG_E_PROPSETMISMATCHED = (winmdroot.Foundation.HRESULT)(-2147286800); 260 internal static readonly winmdroot.Foundation.HRESULT STG_E_ABNORMALAPIEXIT = (winmdroot.Foundation.HRESULT)(-2147286790); 262 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDHEADER = (winmdroot.Foundation.HRESULT)(-2147286789); 264 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDNAME = (winmdroot.Foundation.HRESULT)(-2147286788); 266 internal static readonly winmdroot.Foundation.HRESULT STG_E_UNKNOWN = (winmdroot.Foundation.HRESULT)(-2147286787); 268 internal static readonly winmdroot.Foundation.HRESULT STG_E_UNIMPLEMENTEDFUNCTION = (winmdroot.Foundation.HRESULT)(-2147286786); 270 internal static readonly winmdroot.Foundation.HRESULT STG_E_INVALIDFLAG = (winmdroot.Foundation.HRESULT)(-2147286785); 272 internal static readonly winmdroot.Foundation.HRESULT STG_E_INUSE = (winmdroot.Foundation.HRESULT)(-2147286784); 274 internal static readonly winmdroot.Foundation.HRESULT STG_E_NOTCURRENT = (winmdroot.Foundation.HRESULT)(-2147286783); 276 internal static readonly winmdroot.Foundation.HRESULT STG_E_REVERTED = (winmdroot.Foundation.HRESULT)(-2147286782); 278 internal static readonly winmdroot.Foundation.HRESULT STG_E_CANTSAVE = (winmdroot.Foundation.HRESULT)(-2147286781); 280 internal static readonly winmdroot.Foundation.HRESULT STG_E_OLDFORMAT = (winmdroot.Foundation.HRESULT)(-2147286780); 282 internal static readonly winmdroot.Foundation.HRESULT STG_E_OLDDLL = (winmdroot.Foundation.HRESULT)(-2147286779); 284 internal static readonly winmdroot.Foundation.HRESULT STG_E_SHAREREQUIRED = (winmdroot.Foundation.HRESULT)(-2147286778); 286 internal static readonly winmdroot.Foundation.HRESULT STG_E_NOTFILEBASEDSTORAGE = (winmdroot.Foundation.HRESULT)(-2147286777); 288 internal static readonly winmdroot.Foundation.HRESULT STG_E_EXTANTMARSHALLINGS = (winmdroot.Foundation.HRESULT)(-2147286776); 290 internal static readonly winmdroot.Foundation.HRESULT STG_E_DOCFILECORRUPT = (winmdroot.Foundation.HRESULT)(-2147286775); 292 internal static readonly winmdroot.Foundation.HRESULT STG_E_BADBASEADDRESS = (winmdroot.Foundation.HRESULT)(-2147286768); 294 internal static readonly winmdroot.Foundation.HRESULT STG_E_DOCFILETOOLARGE = (winmdroot.Foundation.HRESULT)(-2147286767); 296 internal static readonly winmdroot.Foundation.HRESULT STG_E_NOTSIMPLEFORMAT = (winmdroot.Foundation.HRESULT)(-2147286766); 298 internal static readonly winmdroot.Foundation.HRESULT STG_E_INCOMPLETE = (winmdroot.Foundation.HRESULT)(-2147286527); 300 internal static readonly winmdroot.Foundation.HRESULT STG_E_TERMINATED = (winmdroot.Foundation.HRESULT)(-2147286526); 302 internal static readonly winmdroot.Foundation.HRESULT STG_E_FIRMWARE_SLOT_INVALID = (winmdroot.Foundation.HRESULT)(-2147286520); 304 internal static readonly winmdroot.Foundation.HRESULT STG_E_FIRMWARE_IMAGE_INVALID = (winmdroot.Foundation.HRESULT)(-2147286519); 306 internal static readonly winmdroot.Foundation.HRESULT STG_E_DEVICE_UNRESPONSIVE = (winmdroot.Foundation.HRESULT)(-2147286518); 308 internal static readonly winmdroot.Foundation.HRESULT STG_E_STATUS_COPY_PROTECTION_FAILURE = (winmdroot.Foundation.HRESULT)(-2147286267); 310 internal static readonly winmdroot.Foundation.HRESULT STG_E_CSS_AUTHENTICATION_FAILURE = (winmdroot.Foundation.HRESULT)(-2147286266); 312 internal static readonly winmdroot.Foundation.HRESULT STG_E_CSS_KEY_NOT_PRESENT = (winmdroot.Foundation.HRESULT)(-2147286265); 314 internal static readonly winmdroot.Foundation.HRESULT STG_E_CSS_KEY_NOT_ESTABLISHED = (winmdroot.Foundation.HRESULT)(-2147286264); 316 internal static readonly winmdroot.Foundation.HRESULT STG_E_CSS_SCRAMBLED_SECTOR = (winmdroot.Foundation.HRESULT)(-2147286263); 318 internal static readonly winmdroot.Foundation.HRESULT STG_E_CSS_REGION_MISMATCH = (winmdroot.Foundation.HRESULT)(-2147286262); 320 internal static readonly winmdroot.Foundation.HRESULT STG_E_RESETS_EXHAUSTED = (winmdroot.Foundation.HRESULT)(-2147286261); 322 internal static readonly winmdroot.Foundation.HRESULT TYPE_E_BADMODULEKIND = (winmdroot.Foundation.HRESULT)(-2147317571); 324 internal static readonly winmdroot.Foundation.HRESULT VIEW_E_DRAW = (winmdroot.Foundation.HRESULT)(-2147221184); 326 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_WRONGSTATE = (winmdroot.Foundation.HRESULT)(-2003292412); 328 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_VALUEOUTOFRANGE = (winmdroot.Foundation.HRESULT)(-2003292411); 330 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNKNOWNIMAGEFORMAT = (winmdroot.Foundation.HRESULT)(-2003292409); 332 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNSUPPORTEDVERSION = (winmdroot.Foundation.HRESULT)(-2003292405); 334 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_NOTINITIALIZED = (winmdroot.Foundation.HRESULT)(-2003292404); 336 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_ALREADYLOCKED = (winmdroot.Foundation.HRESULT)(-2003292403); 338 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_PROPERTYNOTFOUND = (winmdroot.Foundation.HRESULT)(-2003292352); 340 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_PROPERTYNOTSUPPORTED = (winmdroot.Foundation.HRESULT)(-2003292351); 342 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_PROPERTYSIZE = (winmdroot.Foundation.HRESULT)(-2003292350); 344 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_CODECPRESENT = (winmdroot.Foundation.HRESULT)(-2003292349); 346 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_CODECNOTHUMBNAIL = (winmdroot.Foundation.HRESULT)(-2003292348); 348 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_PALETTEUNAVAILABLE = (winmdroot.Foundation.HRESULT)(-2003292347); 350 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_CODECTOOMANYSCANLINES = (winmdroot.Foundation.HRESULT)(-2003292346); 352 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INTERNALERROR = (winmdroot.Foundation.HRESULT)(-2003292344); 354 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_SOURCERECTDOESNOTMATCHDIMENSIONS = (winmdroot.Foundation.HRESULT)(-2003292343); 356 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_COMPONENTNOTFOUND = (winmdroot.Foundation.HRESULT)(-2003292336); 358 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_IMAGESIZEOUTOFRANGE = (winmdroot.Foundation.HRESULT)(-2003292335); 360 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_TOOMUCHMETADATA = (winmdroot.Foundation.HRESULT)(-2003292334); 362 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_BADIMAGE = (winmdroot.Foundation.HRESULT)(-2003292320); 364 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_BADHEADER = (winmdroot.Foundation.HRESULT)(-2003292319); 366 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_FRAMEMISSING = (winmdroot.Foundation.HRESULT)(-2003292318); 368 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_BADMETADATAHEADER = (winmdroot.Foundation.HRESULT)(-2003292317); 370 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_BADSTREAMDATA = (winmdroot.Foundation.HRESULT)(-2003292304); 372 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_STREAMWRITE = (winmdroot.Foundation.HRESULT)(-2003292303); 374 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_STREAMREAD = (winmdroot.Foundation.HRESULT)(-2003292302); 376 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_STREAMNOTAVAILABLE = (winmdroot.Foundation.HRESULT)(-2003292301); 378 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNSUPPORTEDPIXELFORMAT = (winmdroot.Foundation.HRESULT)(-2003292288); 380 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNSUPPORTEDOPERATION = (winmdroot.Foundation.HRESULT)(-2003292287); 382 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INVALIDREGISTRATION = (winmdroot.Foundation.HRESULT)(-2003292278); 384 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_COMPONENTINITIALIZEFAILURE = (winmdroot.Foundation.HRESULT)(-2003292277); 386 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INSUFFICIENTBUFFER = (winmdroot.Foundation.HRESULT)(-2003292276); 388 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_DUPLICATEMETADATAPRESENT = (winmdroot.Foundation.HRESULT)(-2003292275); 390 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_PROPERTYUNEXPECTEDTYPE = (winmdroot.Foundation.HRESULT)(-2003292274); 392 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNEXPECTEDSIZE = (winmdroot.Foundation.HRESULT)(-2003292273); 394 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INVALIDQUERYREQUEST = (winmdroot.Foundation.HRESULT)(-2003292272); 396 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_UNEXPECTEDMETADATATYPE = (winmdroot.Foundation.HRESULT)(-2003292271); 398 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_REQUESTONLYVALIDATMETADATAROOT = (winmdroot.Foundation.HRESULT)(-2003292270); 400 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INVALIDQUERYCHARACTER = (winmdroot.Foundation.HRESULT)(-2003292269); 402 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_WIN32ERROR = (winmdroot.Foundation.HRESULT)(-2003292268); 404 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INVALIDPROGRESSIVELEVEL = (winmdroot.Foundation.HRESULT)(-2003292267); 406 internal static readonly winmdroot.Foundation.HRESULT WINCODEC_ERR_INVALIDJPEGSCANINDEX = (winmdroot.Foundation.HRESULT)(-2003292266);
Windows.Win32.IAdviseSink.g.cs (12)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IAdviseSink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAdviseSink*)Unsafe.AsPointer(ref this), riid, ppvObject); 74 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 104 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 134 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 160 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 185 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 206 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 210 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 227 internal delegate *unmanaged [Stdcall]<IAdviseSink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1;
Windows.Win32.IBindCtx.g.cs (81)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IBindCtx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IBindCtx*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT RegisterObjectBound(IBindCtx* pThis, winmdroot.System.Com.IUnknown* punk) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 83 public unsafe winmdroot.Foundation.HRESULT RegisterObjectBound(winmdroot.System.Com.IUnknown* punk) 85 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IBindCtx*)Unsafe.AsPointer(ref this), punk); 91 private static winmdroot.Foundation.HRESULT RevokeObjectBound(IBindCtx* pThis, winmdroot.System.Com.IUnknown* punk) 95 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 104 return (winmdroot.Foundation.HRESULT)ex.HResult; 115 public unsafe winmdroot.Foundation.HRESULT RevokeObjectBound(winmdroot.System.Com.IUnknown* punk) 117 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IBindCtx*)Unsafe.AsPointer(ref this), punk); 123 private static winmdroot.Foundation.HRESULT ReleaseBoundObjects(IBindCtx* pThis) 127 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 136 return (winmdroot.Foundation.HRESULT)ex.HResult; 146 public winmdroot.Foundation.HRESULT ReleaseBoundObjects() 148 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IBindCtx*)Unsafe.AsPointer(ref this)); 152 internal unsafe winmdroot.Foundation.HRESULT SetBindOptions(in winmdroot.System.Com.BIND_OPTS pbindopts) 156 winmdroot.Foundation.HRESULT __result = this.SetBindOptions(pbindoptsLocal); 164 private static winmdroot.Foundation.HRESULT SetBindOptions(IBindCtx* pThis, winmdroot.System.Com.BIND_OPTS* pbindopts) 168 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 190 public unsafe winmdroot.Foundation.HRESULT SetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts) 192 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IBindCtx*)Unsafe.AsPointer(ref this), pbindopts); 196 internal unsafe winmdroot.Foundation.HRESULT GetBindOptions(ref winmdroot.System.Com.BIND_OPTS pbindopts) 200 winmdroot.Foundation.HRESULT __result = this.GetBindOptions(pbindoptsLocal); 208 private static winmdroot.Foundation.HRESULT GetBindOptions(IBindCtx* pThis, winmdroot.System.Com.BIND_OPTS* pbindopts) 212 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 221 return (winmdroot.Foundation.HRESULT)ex.HResult; 232 public unsafe winmdroot.Foundation.HRESULT GetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts) 234 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IBindCtx*)Unsafe.AsPointer(ref this), pbindopts); 240 private static winmdroot.Foundation.HRESULT GetRunningObjectTable(IBindCtx* pThis, winmdroot.System.Com.IRunningObjectTable** pprot) 244 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 253 return (winmdroot.Foundation.HRESULT)ex.HResult; 264 public unsafe winmdroot.Foundation.HRESULT GetRunningObjectTable(winmdroot.System.Com.IRunningObjectTable** pprot) 266 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IRunningObjectTable** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IBindCtx*)Unsafe.AsPointer(ref this), pprot); 272 private static winmdroot.Foundation.HRESULT RegisterObjectParam(IBindCtx* pThis, winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown* punk) 276 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 285 return (winmdroot.Foundation.HRESULT)ex.HResult; 301 public unsafe winmdroot.Foundation.HRESULT RegisterObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown* punk) 303 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IBindCtx*)Unsafe.AsPointer(ref this), pszKey, punk); 309 private static winmdroot.Foundation.HRESULT GetObjectParam(IBindCtx* pThis, winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown** ppunk) 313 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 322 return (winmdroot.Foundation.HRESULT)ex.HResult; 334 public unsafe winmdroot.Foundation.HRESULT GetObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown** ppunk) 336 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IBindCtx*)Unsafe.AsPointer(ref this), pszKey, ppunk); 342 private static winmdroot.Foundation.HRESULT EnumObjectParam(IBindCtx* pThis, winmdroot.System.Com.IEnumString** ppenum) 346 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 355 return (winmdroot.Foundation.HRESULT)ex.HResult; 366 public unsafe winmdroot.Foundation.HRESULT EnumObjectParam(winmdroot.System.Com.IEnumString** ppenum) 368 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IBindCtx*)Unsafe.AsPointer(ref this), ppenum); 374 private static winmdroot.Foundation.HRESULT RevokeObjectParam(IBindCtx* pThis, winmdroot.Foundation.PWSTR pszKey) 378 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 387 return (winmdroot.Foundation.HRESULT)ex.HResult; 401 public winmdroot.Foundation.HRESULT RevokeObjectParam(winmdroot.Foundation.PWSTR pszKey) 403 return ((delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IBindCtx*)Unsafe.AsPointer(ref this), pszKey); 406 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 410 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 427 internal delegate *unmanaged [Stdcall]<IBindCtx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 433 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> RegisterObjectBound_4; 435 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> RevokeObjectBound_5; 437 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.HRESULT> ReleaseBoundObjects_6; 439 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.HRESULT> SetBindOptions_7; 441 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.BIND_OPTS* ,winmdroot.Foundation.HRESULT> GetBindOptions_8; 443 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IRunningObjectTable** ,winmdroot.Foundation.HRESULT> GetRunningObjectTable_9; 445 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> RegisterObjectParam_10; 447 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetObjectParam_11; 449 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.HRESULT> EnumObjectParam_12; 451 internal delegate *unmanaged [Stdcall]<IBindCtx*,winmdroot.Foundation.PWSTR ,winmdroot.Foundation.HRESULT> RevokeObjectParam_13; 487 unsafe winmdroot.Foundation.HRESULT RegisterObjectBound(winmdroot.System.Com.IUnknown* punk); 490 unsafe winmdroot.Foundation.HRESULT RevokeObjectBound(winmdroot.System.Com.IUnknown* punk); 493winmdroot.Foundation.HRESULT ReleaseBoundObjects(); 496 unsafe winmdroot.Foundation.HRESULT SetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts); 499 unsafe winmdroot.Foundation.HRESULT GetBindOptions(winmdroot.System.Com.BIND_OPTS* pbindopts); 502 unsafe winmdroot.Foundation.HRESULT GetRunningObjectTable(winmdroot.System.Com.IRunningObjectTable** pprot); 505 unsafe winmdroot.Foundation.HRESULT RegisterObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown* punk); 508 unsafe winmdroot.Foundation.HRESULT GetObjectParam(winmdroot.Foundation.PWSTR pszKey, winmdroot.System.Com.IUnknown** ppunk); 511 unsafe winmdroot.Foundation.HRESULT EnumObjectParam(winmdroot.System.Com.IEnumString** ppenum); 514winmdroot.Foundation.HRESULT RevokeObjectParam(winmdroot.Foundation.PWSTR pszKey);
Windows.Win32.IDataObject.g.cs (82)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IDataObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDataObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetData(in winmdroot.System.Com.FORMATETC pformatetcIn, out winmdroot.System.Com.STGMEDIUM pmedium) 62 winmdroot.Foundation.HRESULT __result = this.GetData(pformatetcInLocal, pmediumLocal); 71 private static winmdroot.Foundation.HRESULT GetData(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatetcIn, winmdroot.System.Com.STGMEDIUM* pmedium) 75 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 99 public unsafe winmdroot.Foundation.HRESULT GetData(winmdroot.System.Com.FORMATETC* pformatetcIn, winmdroot.System.Com.STGMEDIUM* pmedium) 101 return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDataObject*)Unsafe.AsPointer(ref this), pformatetcIn, pmedium); 105 internal unsafe winmdroot.Foundation.HRESULT GetDataHere(in winmdroot.System.Com.FORMATETC pformatetc, ref winmdroot.System.Com.STGMEDIUM pmedium) 111 winmdroot.Foundation.HRESULT __result = this.GetDataHere(pformatetcLocal, pmediumLocal); 120 private static winmdroot.Foundation.HRESULT GetDataHere(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium) 124 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 133 return (winmdroot.Foundation.HRESULT)ex.HResult; 148 public unsafe winmdroot.Foundation.HRESULT GetDataHere(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium) 150 return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDataObject*)Unsafe.AsPointer(ref this), pformatetc, pmedium); 154 internal unsafe winmdroot.Foundation.HRESULT QueryGetData(in winmdroot.System.Com.FORMATETC pformatetc) 158 winmdroot.Foundation.HRESULT __result = this.QueryGetData(pformatetcLocal); 166 private static winmdroot.Foundation.HRESULT QueryGetData(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatetc) 170 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 190 public unsafe winmdroot.Foundation.HRESULT QueryGetData(winmdroot.System.Com.FORMATETC* pformatetc) 192 return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDataObject*)Unsafe.AsPointer(ref this), pformatetc); 196 internal unsafe winmdroot.Foundation.HRESULT GetCanonicalFormatEtc(in winmdroot.System.Com.FORMATETC pformatectIn, out winmdroot.System.Com.FORMATETC pformatetcOut) 202 winmdroot.Foundation.HRESULT __result = this.GetCanonicalFormatEtc(pformatectInLocal, pformatetcOutLocal); 211 private static winmdroot.Foundation.HRESULT GetCanonicalFormatEtc(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatectIn, winmdroot.System.Com.FORMATETC* pformatetcOut) 215 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 224 return (winmdroot.Foundation.HRESULT)ex.HResult; 239 public unsafe winmdroot.Foundation.HRESULT GetCanonicalFormatEtc(winmdroot.System.Com.FORMATETC* pformatectIn, winmdroot.System.Com.FORMATETC* pformatetcOut) 241 return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.FORMATETC* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IDataObject*)Unsafe.AsPointer(ref this), pformatectIn, pformatetcOut); 245 internal unsafe winmdroot.Foundation.HRESULT SetData(in winmdroot.System.Com.FORMATETC pformatetc, in winmdroot.System.Com.STGMEDIUM pmedium, winmdroot.Foundation.BOOL fRelease) 251 winmdroot.Foundation.HRESULT __result = this.SetData(pformatetcLocal, pmediumLocal, fRelease); 260 private static winmdroot.Foundation.HRESULT SetData(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium, winmdroot.Foundation.BOOL fRelease) 264 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 273 return (winmdroot.Foundation.HRESULT)ex.HResult; 289 public unsafe winmdroot.Foundation.HRESULT SetData(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium, winmdroot.Foundation.BOOL fRelease) 291 return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IDataObject*)Unsafe.AsPointer(ref this), pformatetc, pmedium, fRelease); 297 private static winmdroot.Foundation.HRESULT EnumFormatEtc(IDataObject* pThis, uint dwDirection, winmdroot.System.Com.IEnumFORMATETC** ppenumFormatEtc) 301 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 310 return (winmdroot.Foundation.HRESULT)ex.HResult; 329 public unsafe winmdroot.Foundation.HRESULT EnumFormatEtc(uint dwDirection, winmdroot.System.Com.IEnumFORMATETC** ppenumFormatEtc) 331 return ((delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IDataObject*)Unsafe.AsPointer(ref this), dwDirection, ppenumFormatEtc); 335 internal unsafe winmdroot.Foundation.HRESULT DAdvise(in winmdroot.System.Com.FORMATETC pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, out uint pdwConnection) 341 winmdroot.Foundation.HRESULT __result = this.DAdvise(pformatetcLocal, advf, pAdvSink, pdwConnectionLocal); 350 private static winmdroot.Foundation.HRESULT DAdvise(IDataObject* pThis, winmdroot.System.Com.FORMATETC* pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection) 354 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 363 return (winmdroot.Foundation.HRESULT)ex.HResult; 386 public unsafe winmdroot.Foundation.HRESULT DAdvise(winmdroot.System.Com.FORMATETC* pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection) 388 return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,uint ,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IDataObject*)Unsafe.AsPointer(ref this), pformatetc, advf, pAdvSink, pdwConnection); 394 private static winmdroot.Foundation.HRESULT DUnadvise(IDataObject* pThis, uint dwConnection) 398 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 407 return (winmdroot.Foundation.HRESULT)ex.HResult; 421 public winmdroot.Foundation.HRESULT DUnadvise(uint dwConnection) 423 return ((delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IDataObject*)Unsafe.AsPointer(ref this), dwConnection); 429 private static winmdroot.Foundation.HRESULT EnumDAdvise(IDataObject* pThis, winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise) 433 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 442 return (winmdroot.Foundation.HRESULT)ex.HResult; 456 public unsafe winmdroot.Foundation.HRESULT EnumDAdvise(winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise) 458 return ((delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IDataObject*)Unsafe.AsPointer(ref this), ppenumAdvise); 461 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 465 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 482 internal delegate *unmanaged [Stdcall]<IDataObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 488 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.HRESULT> GetData_4; 490 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.HRESULT> GetDataHere_5; 492 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.Foundation.HRESULT> QueryGetData_6; 494 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.FORMATETC* ,winmdroot.Foundation.HRESULT> GetCanonicalFormatEtc_7; 496 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> SetData_8; 498 internal delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.HRESULT> EnumFormatEtc_9; 500 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.FORMATETC* ,uint ,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.HRESULT> DAdvise_10; 502 internal delegate *unmanaged [Stdcall]<IDataObject*,uint ,winmdroot.Foundation.HRESULT> DUnadvise_11; 504 internal delegate *unmanaged [Stdcall]<IDataObject*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT> EnumDAdvise_12; 539 unsafe winmdroot.Foundation.HRESULT GetData(winmdroot.System.Com.FORMATETC* pformatetcIn, winmdroot.System.Com.STGMEDIUM* pmedium); 542 unsafe winmdroot.Foundation.HRESULT GetDataHere(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium); 545 unsafe winmdroot.Foundation.HRESULT QueryGetData(winmdroot.System.Com.FORMATETC* pformatetc); 548 unsafe winmdroot.Foundation.HRESULT GetCanonicalFormatEtc(winmdroot.System.Com.FORMATETC* pformatectIn, winmdroot.System.Com.FORMATETC* pformatetcOut); 551 unsafe winmdroot.Foundation.HRESULT SetData(winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pmedium, winmdroot.Foundation.BOOL fRelease); 554 unsafe winmdroot.Foundation.HRESULT EnumFormatEtc(uint dwDirection, winmdroot.System.Com.IEnumFORMATETC** ppenumFormatEtc); 557 unsafe winmdroot.Foundation.HRESULT DAdvise(winmdroot.System.Com.FORMATETC* pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection); 560winmdroot.Foundation.HRESULT DUnadvise(uint dwConnection); 563 unsafe winmdroot.Foundation.HRESULT EnumDAdvise(winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise);
Windows.Win32.IDataObjectAsyncCapability.g.cs (51)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT SetAsyncMode(IDataObjectAsyncCapability* pThis, winmdroot.Foundation.BOOL fDoOpAsync) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 public winmdroot.Foundation.HRESULT SetAsyncMode(winmdroot.Foundation.BOOL fDoOpAsync) 89 return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), fDoOpAsync); 93 internal unsafe winmdroot.Foundation.HRESULT GetAsyncMode(out winmdroot.Foundation.BOOL pfIsOpAsync) 97 winmdroot.Foundation.HRESULT __result = this.GetAsyncMode(pfIsOpAsyncLocal); 105 private static winmdroot.Foundation.HRESULT GetAsyncMode(IDataObjectAsyncCapability* pThis, winmdroot.Foundation.BOOL* pfIsOpAsync) 109 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 118 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 public unsafe winmdroot.Foundation.HRESULT GetAsyncMode(winmdroot.Foundation.BOOL* pfIsOpAsync) 133 return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), pfIsOpAsync); 139 private static winmdroot.Foundation.HRESULT StartOperation(IDataObjectAsyncCapability* pThis, [Optional] winmdroot.System.Com.IBindCtx* pbcReserved) 143 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 165 public unsafe winmdroot.Foundation.HRESULT StartOperation([Optional] winmdroot.System.Com.IBindCtx* pbcReserved) 167 return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), pbcReserved); 171 internal unsafe winmdroot.Foundation.HRESULT InOperation(out winmdroot.Foundation.BOOL pfInAsyncOp) 175 winmdroot.Foundation.HRESULT __result = this.InOperation(pfInAsyncOpLocal); 183 private static winmdroot.Foundation.HRESULT InOperation(IDataObjectAsyncCapability* pThis, winmdroot.Foundation.BOOL* pfInAsyncOp) 187 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 196 return (winmdroot.Foundation.HRESULT)ex.HResult; 209 public unsafe winmdroot.Foundation.HRESULT InOperation(winmdroot.Foundation.BOOL* pfInAsyncOp) 211 return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), pfInAsyncOp); 217 private static winmdroot.Foundation.HRESULT EndOperation(IDataObjectAsyncCapability* pThis, winmdroot.Foundation.HRESULT hResult, winmdroot.System.Com.IBindCtx* pbcReserved, uint dwEffects) 221 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 230 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 public unsafe winmdroot.Foundation.HRESULT EndOperation(winmdroot.Foundation.HRESULT hResult, winmdroot.System.Com.IBindCtx* pbcReserved, uint dwEffects) 256 return ((delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.HRESULT ,winmdroot.System.Com.IBindCtx* ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IDataObjectAsyncCapability*)Unsafe.AsPointer(ref this), hResult, pbcReserved, dwEffects); 259 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 263 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 280 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 286 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> SetAsyncMode_4; 288 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> GetAsyncMode_5; 290 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.HRESULT> StartOperation_6; 292 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> InOperation_7; 294 internal delegate *unmanaged [Stdcall]<IDataObjectAsyncCapability*,winmdroot.Foundation.HRESULT ,winmdroot.System.Com.IBindCtx* ,uint ,winmdroot.Foundation.HRESULT> EndOperation_8; 325winmdroot.Foundation.HRESULT SetAsyncMode(winmdroot.Foundation.BOOL fDoOpAsync); 328 unsafe winmdroot.Foundation.HRESULT GetAsyncMode(winmdroot.Foundation.BOOL* pfIsOpAsync); 331 unsafe winmdroot.Foundation.HRESULT StartOperation([Optional] winmdroot.System.Com.IBindCtx* pbcReserved); 334 unsafe winmdroot.Foundation.HRESULT InOperation(winmdroot.Foundation.BOOL* pfInAsyncOp); 337 unsafe winmdroot.Foundation.HRESULT EndOperation(winmdroot.Foundation.HRESULT hResult, winmdroot.System.Com.IBindCtx* pbcReserved, uint dwEffects);
Windows.Win32.IDispatch.g.cs (25)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDispatch*)Unsafe.AsPointer(ref this), riid, ppvObject); 55 internal unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(out uint pctinfo) 59 winmdroot.Foundation.HRESULT __result = this.GetTypeInfoCount(pctinfoLocal); 71 public unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(uint* pctinfo) 73 return ((delegate *unmanaged [Stdcall]<IDispatch*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDispatch*)Unsafe.AsPointer(ref this), pctinfo); 87 public unsafe winmdroot.Foundation.HRESULT GetTypeInfo(uint iTInfo, uint lcid, winmdroot.System.Com.ITypeInfo** ppTInfo) 89 return ((delegate *unmanaged [Stdcall]<IDispatch*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDispatch*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo); 93 internal unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(in global::System.Guid riid, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, uint lcid, Span<int> rgDispId) 102 winmdroot.Foundation.HRESULT __result = this.GetIDsOfNames(riidLocal, rgszNamesLocal, (uint )rgDispId.Length, lcid, rgDispIdLocal); 123 public unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(global::System.Guid* riid, winmdroot.Foundation.PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 125 return ((delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDispatch*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId); 129 internal unsafe winmdroot.Foundation.HRESULT Invoke(int dispIdMember, in global::System.Guid riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, in winmdroot.System.Com.DISPPARAMS pDispParams, winmdroot.System.Variant.VARIANT* pVarResult, winmdroot.System.Com.EXCEPINFO* pExcepInfo, uint* puArgErr) 135 winmdroot.Foundation.HRESULT __result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, pVarResult, pExcepInfo, puArgErr); 167 public unsafe winmdroot.Foundation.HRESULT Invoke(int dispIdMember, global::System.Guid* riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, winmdroot.System.Com.DISPPARAMS* pDispParams, [Optional] winmdroot.System.Variant.VARIANT* pVarResult, [Optional] winmdroot.System.Com.EXCEPINFO* pExcepInfo, [Optional] uint* puArgErr) 169 return ((delegate *unmanaged [Stdcall]<IDispatch*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IDispatch*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); 172 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 176 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 193 internal delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 199 internal delegate *unmanaged [Stdcall]<IDispatch*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 201 internal delegate *unmanaged [Stdcall]<IDispatch*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 203 internal delegate *unmanaged [Stdcall]<IDispatch*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 205 internal delegate *unmanaged [Stdcall]<IDispatch*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7;
Windows.Win32.IDispatchEx.g.cs (89)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDispatchEx*)Unsafe.AsPointer(ref this), riid, ppvObject); 55 internal unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(out uint pctinfo) 59 winmdroot.Foundation.HRESULT __result = this.GetTypeInfoCount(pctinfoLocal); 64 public unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(uint* pctinfo) 66 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDispatchEx*)Unsafe.AsPointer(ref this), pctinfo); 69 public unsafe winmdroot.Foundation.HRESULT GetTypeInfo(uint iTInfo, uint lcid, winmdroot.System.Com.ITypeInfo** ppTInfo) 71 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDispatchEx*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo); 75 internal unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(in global::System.Guid riid, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, uint lcid, Span<int> rgDispId) 84 winmdroot.Foundation.HRESULT __result = this.GetIDsOfNames(riidLocal, rgszNamesLocal, (uint )rgDispId.Length, lcid, rgDispIdLocal); 91 public unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(global::System.Guid* riid, winmdroot.Foundation.PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 93 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDispatchEx*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId); 97 internal unsafe winmdroot.Foundation.HRESULT Invoke(int dispIdMember, in global::System.Guid riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, in winmdroot.System.Com.DISPPARAMS pDispParams, winmdroot.System.Variant.VARIANT* pVarResult, winmdroot.System.Com.EXCEPINFO* pExcepInfo, uint* puArgErr) 103 winmdroot.Foundation.HRESULT __result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, pVarResult, pExcepInfo, puArgErr); 109 public unsafe winmdroot.Foundation.HRESULT Invoke(int dispIdMember, global::System.Guid* riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, winmdroot.System.Com.DISPPARAMS* pDispParams, [Optional] winmdroot.System.Variant.VARIANT* pVarResult, [Optional] winmdroot.System.Com.EXCEPINFO* pExcepInfo, [Optional] uint* puArgErr) 111 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IDispatchEx*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); 115 internal unsafe winmdroot.Foundation.HRESULT GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, out int pid) 119 winmdroot.Foundation.HRESULT __result = this.GetDispID(bstrName, grfdex, pidLocal); 127 private static winmdroot.Foundation.HRESULT GetDispID(IDispatchEx* pThis, winmdroot.Foundation.BSTR bstrName, uint grfdex, int* pid) 131 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 140 return (winmdroot.Foundation.HRESULT)ex.HResult; 144 public unsafe winmdroot.Foundation.HRESULT GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, int* pid) 146 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IDispatchEx*)Unsafe.AsPointer(ref this), bstrName, grfdex, pid); 150 internal unsafe winmdroot.Foundation.HRESULT InvokeEx(int id, uint lcid, ushort wFlags, in winmdroot.System.Com.DISPPARAMS pdp, winmdroot.System.Variant.VARIANT* pvarRes, winmdroot.System.Com.EXCEPINFO* pei, winmdroot.System.Com.IServiceProvider* pspCaller) 154 winmdroot.Foundation.HRESULT __result = this.InvokeEx(id, lcid, wFlags, pdpLocal, pvarRes, pei, pspCaller); 162 private static winmdroot.Foundation.HRESULT InvokeEx(IDispatchEx* pThis, int id, uint lcid, ushort wFlags, winmdroot.System.Com.DISPPARAMS* pdp, [Optional] winmdroot.System.Variant.VARIANT* pvarRes, [Optional] winmdroot.System.Com.EXCEPINFO* pei, [Optional] winmdroot.System.Com.IServiceProvider* pspCaller) 166 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 175 return (winmdroot.Foundation.HRESULT)ex.HResult; 179 public unsafe winmdroot.Foundation.HRESULT InvokeEx(int id, uint lcid, ushort wFlags, winmdroot.System.Com.DISPPARAMS* pdp, [Optional] winmdroot.System.Variant.VARIANT* pvarRes, [Optional] winmdroot.System.Com.EXCEPINFO* pei, [Optional] winmdroot.System.Com.IServiceProvider* pspCaller) 181 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,uint ,ushort ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,winmdroot.System.Com.IServiceProvider* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IDispatchEx*)Unsafe.AsPointer(ref this), id, lcid, wFlags, pdp, pvarRes, pei, pspCaller); 187 private static winmdroot.Foundation.HRESULT DeleteMemberByName(IDispatchEx* pThis, winmdroot.Foundation.BSTR bstrName, uint grfdex) 191 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 200 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 public winmdroot.Foundation.HRESULT DeleteMemberByName(winmdroot.Foundation.BSTR bstrName, uint grfdex) 206 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IDispatchEx*)Unsafe.AsPointer(ref this), bstrName, grfdex); 212 private static winmdroot.Foundation.HRESULT DeleteMemberByDispID(IDispatchEx* pThis, int id) 216 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 225 return (winmdroot.Foundation.HRESULT)ex.HResult; 229 public winmdroot.Foundation.HRESULT DeleteMemberByDispID(int id) 231 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IDispatchEx*)Unsafe.AsPointer(ref this), id); 235 internal unsafe winmdroot.Foundation.HRESULT GetMemberProperties(int id, uint grfdexFetch, out winmdroot.System.Ole.FDEX_PROP_FLAGS pgrfdex) 239 winmdroot.Foundation.HRESULT __result = this.GetMemberProperties(id, grfdexFetch, pgrfdexLocal); 247 private static winmdroot.Foundation.HRESULT GetMemberProperties(IDispatchEx* pThis, int id, uint grfdexFetch, winmdroot.System.Ole.FDEX_PROP_FLAGS* pgrfdex) 251 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 260 return (winmdroot.Foundation.HRESULT)ex.HResult; 264 public unsafe winmdroot.Foundation.HRESULT GetMemberProperties(int id, uint grfdexFetch, winmdroot.System.Ole.FDEX_PROP_FLAGS* pgrfdex) 266 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,uint ,winmdroot.System.Ole.FDEX_PROP_FLAGS* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IDispatchEx*)Unsafe.AsPointer(ref this), id, grfdexFetch, pgrfdex); 272 private static winmdroot.Foundation.HRESULT GetMemberName(IDispatchEx* pThis, int id, winmdroot.Foundation.BSTR* pbstrName) 276 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 285 return (winmdroot.Foundation.HRESULT)ex.HResult; 289 public unsafe winmdroot.Foundation.HRESULT GetMemberName(int id, winmdroot.Foundation.BSTR* pbstrName) 291 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IDispatchEx*)Unsafe.AsPointer(ref this), id, pbstrName); 295 internal unsafe winmdroot.Foundation.HRESULT GetNextDispID(uint grfdex, int id, out int pid) 299 winmdroot.Foundation.HRESULT __result = this.GetNextDispID(grfdex, id, pidLocal); 307 private static winmdroot.Foundation.HRESULT GetNextDispID(IDispatchEx* pThis, uint grfdex, int id, int* pid) 311 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 320 return (winmdroot.Foundation.HRESULT)ex.HResult; 324 public unsafe winmdroot.Foundation.HRESULT GetNextDispID(uint grfdex, int id, int* pid) 326 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IDispatchEx*)Unsafe.AsPointer(ref this), grfdex, id, pid); 332 private static winmdroot.Foundation.HRESULT GetNameSpaceParent(IDispatchEx* pThis, winmdroot.System.Com.IUnknown** ppunk) 336 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 345 return (winmdroot.Foundation.HRESULT)ex.HResult; 349 public unsafe winmdroot.Foundation.HRESULT GetNameSpaceParent(winmdroot.System.Com.IUnknown** ppunk) 351 return ((delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IDispatchEx*)Unsafe.AsPointer(ref this), ppunk); 354 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 358 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 375 internal delegate *unmanaged [Stdcall]<IDispatchEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 381 internal delegate *unmanaged [Stdcall]<IDispatchEx*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 383 internal delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 385 internal delegate *unmanaged [Stdcall]<IDispatchEx*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 387 internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 389 internal delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,int* ,winmdroot.Foundation.HRESULT> GetDispID_8; 391 internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,uint ,ushort ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,winmdroot.System.Com.IServiceProvider* ,winmdroot.Foundation.HRESULT> InvokeEx_9; 393 internal delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.Foundation.BSTR ,uint ,winmdroot.Foundation.HRESULT> DeleteMemberByName_10; 395 internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.HRESULT> DeleteMemberByDispID_11; 397 internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,uint ,winmdroot.System.Ole.FDEX_PROP_FLAGS* ,winmdroot.Foundation.HRESULT> GetMemberProperties_12; 399 internal delegate *unmanaged [Stdcall]<IDispatchEx*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetMemberName_13; 401 internal delegate *unmanaged [Stdcall]<IDispatchEx*,uint ,int ,int* ,winmdroot.Foundation.HRESULT> GetNextDispID_14; 403 internal delegate *unmanaged [Stdcall]<IDispatchEx*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetNameSpaceParent_15; 436 unsafe winmdroot.Foundation.HRESULT GetDispID(winmdroot.Foundation.BSTR bstrName, uint grfdex, int* pid); 439 unsafe winmdroot.Foundation.HRESULT InvokeEx(int id, uint lcid, ushort wFlags, winmdroot.System.Com.DISPPARAMS* pdp, [Optional] winmdroot.System.Variant.VARIANT* pvarRes, [Optional] winmdroot.System.Com.EXCEPINFO* pei, [Optional] winmdroot.System.Com.IServiceProvider* pspCaller); 442winmdroot.Foundation.HRESULT DeleteMemberByName(winmdroot.Foundation.BSTR bstrName, uint grfdex); 445winmdroot.Foundation.HRESULT DeleteMemberByDispID(int id); 448 unsafe winmdroot.Foundation.HRESULT GetMemberProperties(int id, uint grfdexFetch, winmdroot.System.Ole.FDEX_PROP_FLAGS* pgrfdex); 451 unsafe winmdroot.Foundation.HRESULT GetMemberName(int id, winmdroot.Foundation.BSTR* pbstrName); 454 unsafe winmdroot.Foundation.HRESULT GetNextDispID(uint grfdex, int id, int* pid); 457 unsafe winmdroot.Foundation.HRESULT GetNameSpaceParent(winmdroot.System.Com.IUnknown** ppunk);
Windows.Win32.IDragSourceHelper.g.cs (25)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IDragSourceHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDragSourceHelper*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(in winmdroot.UI.Shell.SHDRAGIMAGE pshdi, winmdroot.System.Com.IDataObject* pDataObject) 60 winmdroot.Foundation.HRESULT __result = this.InitializeFromBitmap(pshdiLocal, pDataObject); 68 private static winmdroot.Foundation.HRESULT InitializeFromBitmap(IDragSourceHelper* pThis, winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 98 public unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject) 100 return ((delegate *unmanaged [Stdcall]<IDragSourceHelper*,winmdroot.UI.Shell.SHDRAGIMAGE* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDragSourceHelper*)Unsafe.AsPointer(ref this), pshdi, pDataObject); 104 internal unsafe winmdroot.Foundation.HRESULT InitializeFromWindow(winmdroot.Foundation.HWND hwnd, global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject) 107 winmdroot.Foundation.HRESULT __result = this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject); 114 private static winmdroot.Foundation.HRESULT InitializeFromWindow(IDragSourceHelper* pThis, winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 148 public unsafe winmdroot.Foundation.HRESULT InitializeFromWindow(winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject) 150 return ((delegate *unmanaged [Stdcall]<IDragSourceHelper*,winmdroot.Foundation.HWND ,global::System.Drawing.Point* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDragSourceHelper*)Unsafe.AsPointer(ref this), hwnd, ppt, pDataObject); 153 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 157 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 174 internal delegate *unmanaged [Stdcall]<IDragSourceHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 180 internal delegate *unmanaged [Stdcall]<IDragSourceHelper*,winmdroot.UI.Shell.SHDRAGIMAGE* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT> InitializeFromBitmap_4; 182 internal delegate *unmanaged [Stdcall]<IDragSourceHelper*,winmdroot.Foundation.HWND ,global::System.Drawing.Point* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT> InitializeFromWindow_5; 210 unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject); 213 unsafe winmdroot.Foundation.HRESULT InitializeFromWindow(winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject);
Windows.Win32.IDragSourceHelper2.g.cs (32)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IDragSourceHelper2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDragSourceHelper2*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(in winmdroot.UI.Shell.SHDRAGIMAGE pshdi, winmdroot.System.Com.IDataObject* pDataObject) 60 winmdroot.Foundation.HRESULT __result = this.InitializeFromBitmap(pshdiLocal, pDataObject); 68 private static winmdroot.Foundation.HRESULT InitializeFromBitmap(IDragSourceHelper2* pThis, winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject) 87 return ((delegate *unmanaged [Stdcall]<IDragSourceHelper2*,winmdroot.UI.Shell.SHDRAGIMAGE* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDragSourceHelper2*)Unsafe.AsPointer(ref this), pshdi, pDataObject); 91 internal unsafe winmdroot.Foundation.HRESULT InitializeFromWindow(winmdroot.Foundation.HWND hwnd, global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject) 94 winmdroot.Foundation.HRESULT __result = this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject); 101 private static winmdroot.Foundation.HRESULT InitializeFromWindow(IDragSourceHelper2* pThis, winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject) 105 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 114 return (winmdroot.Foundation.HRESULT)ex.HResult; 118 public unsafe winmdroot.Foundation.HRESULT InitializeFromWindow(winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject) 120 return ((delegate *unmanaged [Stdcall]<IDragSourceHelper2*,winmdroot.Foundation.HWND ,global::System.Drawing.Point* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDragSourceHelper2*)Unsafe.AsPointer(ref this), hwnd, ppt, pDataObject); 126 private static winmdroot.Foundation.HRESULT SetFlags(IDragSourceHelper2* pThis, uint dwFlags) 130 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 139 return (winmdroot.Foundation.HRESULT)ex.HResult; 154 public winmdroot.Foundation.HRESULT SetFlags(uint dwFlags) 156 return ((delegate *unmanaged [Stdcall]<IDragSourceHelper2*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDragSourceHelper2*)Unsafe.AsPointer(ref this), dwFlags); 159 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 163 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 180 internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 186 internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,winmdroot.UI.Shell.SHDRAGIMAGE* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT> InitializeFromBitmap_4; 188 internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,winmdroot.Foundation.HWND ,global::System.Drawing.Point* ,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.HRESULT> InitializeFromWindow_5; 190 internal delegate *unmanaged [Stdcall]<IDragSourceHelper2*,uint ,winmdroot.Foundation.HRESULT> SetFlags_6; 219 unsafe new winmdroot.Foundation.HRESULT InitializeFromBitmap(winmdroot.UI.Shell.SHDRAGIMAGE* pshdi, winmdroot.System.Com.IDataObject* pDataObject); 222 unsafe new winmdroot.Foundation.HRESULT InitializeFromWindow(winmdroot.Foundation.HWND hwnd, [Optional] global::System.Drawing.Point* ppt, winmdroot.System.Com.IDataObject* pDataObject); 225winmdroot.Foundation.HRESULT SetFlags(uint dwFlags);
Windows.Win32.IDropSource.g.cs (21)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IDropSource*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDropSource*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT QueryContinueDrag(IDropSource* pThis, winmdroot.Foundation.BOOL fEscapePressed, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 83 public winmdroot.Foundation.HRESULT QueryContinueDrag(winmdroot.Foundation.BOOL fEscapePressed, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState) 85 return ((delegate *unmanaged [Stdcall]<IDropSource*,winmdroot.Foundation.BOOL ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDropSource*)Unsafe.AsPointer(ref this), fEscapePressed, grfKeyState); 91 private static winmdroot.Foundation.HRESULT GiveFeedback(IDropSource* pThis, winmdroot.System.Ole.DROPEFFECT dwEffect) 95 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 104 return (winmdroot.Foundation.HRESULT)ex.HResult; 119 public winmdroot.Foundation.HRESULT GiveFeedback(winmdroot.System.Ole.DROPEFFECT dwEffect) 121 return ((delegate *unmanaged [Stdcall]<IDropSource*,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDropSource*)Unsafe.AsPointer(ref this), dwEffect); 124 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 128 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 145 internal delegate *unmanaged [Stdcall]<IDropSource*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 151 internal delegate *unmanaged [Stdcall]<IDropSource*,winmdroot.Foundation.BOOL ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.HRESULT> QueryContinueDrag_4; 153 internal delegate *unmanaged [Stdcall]<IDropSource*,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT> GiveFeedback_5; 181winmdroot.Foundation.HRESULT QueryContinueDrag(winmdroot.Foundation.BOOL fEscapePressed, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState); 184winmdroot.Foundation.HRESULT GiveFeedback(winmdroot.System.Ole.DROPEFFECT dwEffect);
Windows.Win32.IDropSourceNotify.g.cs (21)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IDropSourceNotify*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDropSourceNotify*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT DragEnterTarget(IDropSourceNotify* pThis, winmdroot.Foundation.HWND hwndTarget) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 81 public winmdroot.Foundation.HRESULT DragEnterTarget(winmdroot.Foundation.HWND hwndTarget) 83 return ((delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDropSourceNotify*)Unsafe.AsPointer(ref this), hwndTarget); 89 private static winmdroot.Foundation.HRESULT DragLeaveTarget(IDropSourceNotify* pThis) 93 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 102 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 public winmdroot.Foundation.HRESULT DragLeaveTarget() 113 return ((delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDropSourceNotify*)Unsafe.AsPointer(ref this)); 116 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 120 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 137 internal delegate *unmanaged [Stdcall]<IDropSourceNotify*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 143 internal delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> DragEnterTarget_4; 145 internal delegate *unmanaged [Stdcall]<IDropSourceNotify*,winmdroot.Foundation.HRESULT> DragLeaveTarget_5; 173winmdroot.Foundation.HRESULT DragEnterTarget(winmdroot.Foundation.HWND hwndTarget); 176winmdroot.Foundation.HRESULT DragLeaveTarget();
Windows.Win32.IDropTarget.g.cs (41)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IDropTarget*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDropTarget*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT DragEnter(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect) 60 winmdroot.Foundation.HRESULT __result = this.DragEnter(pDataObj, grfKeyState, pt, pdwEffectLocal); 68 private static winmdroot.Foundation.HRESULT DragEnter(IDropTarget* pThis, winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 99 public unsafe winmdroot.Foundation.HRESULT DragEnter(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 101 return ((delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.Com.IDataObject* ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDropTarget*)Unsafe.AsPointer(ref this), pDataObj, grfKeyState, pt, pdwEffect); 105 internal unsafe winmdroot.Foundation.HRESULT DragOver(winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect) 109 winmdroot.Foundation.HRESULT __result = this.DragOver(grfKeyState, pt, pdwEffectLocal); 117 private static winmdroot.Foundation.HRESULT DragOver(IDropTarget* pThis, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 121 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 130 return (winmdroot.Foundation.HRESULT)ex.HResult; 147 public unsafe winmdroot.Foundation.HRESULT DragOver(winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 149 return ((delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDropTarget*)Unsafe.AsPointer(ref this), grfKeyState, pt, pdwEffect); 155 private static winmdroot.Foundation.HRESULT DragLeave(IDropTarget* pThis) 159 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 168 return (winmdroot.Foundation.HRESULT)ex.HResult; 182 public winmdroot.Foundation.HRESULT DragLeave() 184 return ((delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDropTarget*)Unsafe.AsPointer(ref this)); 188 internal unsafe winmdroot.Foundation.HRESULT Drop(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect) 192 winmdroot.Foundation.HRESULT __result = this.Drop(pDataObj, grfKeyState, pt, pdwEffectLocal); 200 private static winmdroot.Foundation.HRESULT Drop(IDropTarget* pThis, winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 204 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 213 return (winmdroot.Foundation.HRESULT)ex.HResult; 231 public unsafe winmdroot.Foundation.HRESULT Drop(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 233 return ((delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.Com.IDataObject* ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IDropTarget*)Unsafe.AsPointer(ref this), pDataObj, grfKeyState, pt, pdwEffect); 236 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 240 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 257 internal delegate *unmanaged [Stdcall]<IDropTarget*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 263 internal delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.Com.IDataObject* ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.HRESULT> DragEnter_4; 265 internal delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.HRESULT> DragOver_5; 267 internal delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.Foundation.HRESULT> DragLeave_6; 269 internal delegate *unmanaged [Stdcall]<IDropTarget*,winmdroot.System.Com.IDataObject* ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.Foundation.POINTL ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.HRESULT> Drop_7; 299 unsafe winmdroot.Foundation.HRESULT DragEnter(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect); 302 unsafe winmdroot.Foundation.HRESULT DragOver(winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect); 305winmdroot.Foundation.HRESULT DragLeave(); 308 unsafe winmdroot.Foundation.HRESULT Drop(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, winmdroot.System.Ole.DROPEFFECT* pdwEffect);
Windows.Win32.IDropTargetHelper.g.cs (48)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IDropTargetHelper*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT DragEnter(winmdroot.Foundation.HWND hwndTarget, winmdroot.System.Com.IDataObject* pDataObject, in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 60 winmdroot.Foundation.HRESULT __result = this.DragEnter(hwndTarget, pDataObject, pptLocal, dwEffect); 68 private static winmdroot.Foundation.HRESULT DragEnter(IDropTargetHelper* pThis, winmdroot.Foundation.HWND hwndTarget, winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 106 public unsafe winmdroot.Foundation.HRESULT DragEnter(winmdroot.Foundation.HWND hwndTarget, winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 108 return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IDataObject* ,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IDropTargetHelper*)Unsafe.AsPointer(ref this), hwndTarget, pDataObject, ppt, dwEffect); 114 private static winmdroot.Foundation.HRESULT DragLeave(IDropTargetHelper* pThis) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 public winmdroot.Foundation.HRESULT DragLeave() 138 return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IDropTargetHelper*)Unsafe.AsPointer(ref this)); 142 internal unsafe winmdroot.Foundation.HRESULT DragOver(in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 146 winmdroot.Foundation.HRESULT __result = this.DragOver(pptLocal, dwEffect); 154 private static winmdroot.Foundation.HRESULT DragOver(IDropTargetHelper* pThis, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 158 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 167 return (winmdroot.Foundation.HRESULT)ex.HResult; 184 public unsafe winmdroot.Foundation.HRESULT DragOver(global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 186 return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IDropTargetHelper*)Unsafe.AsPointer(ref this), ppt, dwEffect); 190 internal unsafe winmdroot.Foundation.HRESULT Drop(winmdroot.System.Com.IDataObject* pDataObject, in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 194 winmdroot.Foundation.HRESULT __result = this.Drop(pDataObject, pptLocal, dwEffect); 202 private static winmdroot.Foundation.HRESULT Drop(IDropTargetHelper* pThis, winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 206 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return (winmdroot.Foundation.HRESULT)ex.HResult; 236 public unsafe winmdroot.Foundation.HRESULT Drop(winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 238 return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.System.Com.IDataObject* ,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IDropTargetHelper*)Unsafe.AsPointer(ref this), pDataObject, ppt, dwEffect); 244 private static winmdroot.Foundation.HRESULT Show(IDropTargetHelper* pThis, winmdroot.Foundation.BOOL fShow) 248 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 257 return (winmdroot.Foundation.HRESULT)ex.HResult; 270 public winmdroot.Foundation.HRESULT Show(winmdroot.Foundation.BOOL fShow) 272 return ((delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IDropTargetHelper*)Unsafe.AsPointer(ref this), fShow); 275 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 279 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 296 internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 302 internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IDataObject* ,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT> DragEnter_4; 304 internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.HRESULT> DragLeave_5; 306 internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT> DragOver_6; 308 internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.System.Com.IDataObject* ,global::System.Drawing.Point* ,winmdroot.System.Ole.DROPEFFECT ,winmdroot.Foundation.HRESULT> Drop_7; 310 internal delegate *unmanaged [Stdcall]<IDropTargetHelper*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Show_8; 341 unsafe winmdroot.Foundation.HRESULT DragEnter(winmdroot.Foundation.HWND hwndTarget, winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect); 344winmdroot.Foundation.HRESULT DragLeave(); 347 unsafe winmdroot.Foundation.HRESULT DragOver(global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect); 350 unsafe winmdroot.Foundation.HRESULT Drop(winmdroot.System.Com.IDataObject* pDataObject, global::System.Drawing.Point* ppt, winmdroot.System.Ole.DROPEFFECT dwEffect); 353winmdroot.Foundation.HRESULT Show(winmdroot.Foundation.BOOL fShow);
Windows.Win32.IEnumFORMATETC.g.cs (37)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Com.FORMATETC> rgelt, uint* pceltFetched) 60 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched); 68 private static winmdroot.Foundation.HRESULT Next(IEnumFORMATETC* pThis, uint celt, winmdroot.System.Com.FORMATETC* rgelt, [Optional] uint* pceltFetched) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.FORMATETC* rgelt, [Optional] uint* pceltFetched) 98 return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.System.Com.FORMATETC* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 104 private static winmdroot.Foundation.HRESULT Skip(IEnumFORMATETC* pThis, uint celt) 108 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 127 public winmdroot.Foundation.HRESULT Skip(uint celt) 129 return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), celt); 135 private static winmdroot.Foundation.HRESULT Reset(IEnumFORMATETC* pThis) 139 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 148 return (winmdroot.Foundation.HRESULT)ex.HResult; 155 public winmdroot.Foundation.HRESULT Reset() 157 return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumFORMATETC*)Unsafe.AsPointer(ref this)); 163 private static winmdroot.Foundation.HRESULT Clone(IEnumFORMATETC* pThis, winmdroot.System.Com.IEnumFORMATETC** ppenum) 167 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumFORMATETC** ppenum) 191 return ((delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumFORMATETC*)Unsafe.AsPointer(ref this), ppenum); 194 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 198 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 215 internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 221 internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.System.Com.FORMATETC* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 223 internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 225 internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.Foundation.HRESULT> Reset_6; 227 internal delegate *unmanaged [Stdcall]<IEnumFORMATETC*,winmdroot.System.Com.IEnumFORMATETC** ,winmdroot.Foundation.HRESULT> Clone_7; 257 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.FORMATETC* rgelt, [Optional] uint* pceltFetched); 260winmdroot.Foundation.HRESULT Skip(uint celt); 263winmdroot.Foundation.HRESULT Reset(); 266 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumFORMATETC** ppenum);
Windows.Win32.IEnumMoniker.g.cs (35)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumMoniker*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Next(IEnumMoniker* pThis, uint celt, winmdroot.System.Com.IMoniker** rgelt, [Optional] uint* pceltFetched) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IMoniker** rgelt, [Optional] uint* pceltFetched) 88 return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.System.Com.IMoniker** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumMoniker*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 94 private static winmdroot.Foundation.HRESULT Skip(IEnumMoniker* pThis, uint celt) 98 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 117 public winmdroot.Foundation.HRESULT Skip(uint celt) 119 return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumMoniker*)Unsafe.AsPointer(ref this), celt); 125 private static winmdroot.Foundation.HRESULT Reset(IEnumMoniker* pThis) 129 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 138 return (winmdroot.Foundation.HRESULT)ex.HResult; 145 public winmdroot.Foundation.HRESULT Reset() 147 return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumMoniker*)Unsafe.AsPointer(ref this)); 153 private static winmdroot.Foundation.HRESULT Clone(IEnumMoniker* pThis, winmdroot.System.Com.IEnumMoniker** ppenum) 157 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 166 return (winmdroot.Foundation.HRESULT)ex.HResult; 179 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumMoniker** ppenum) 181 return ((delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumMoniker*)Unsafe.AsPointer(ref this), ppenum); 184 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 188 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 205 internal delegate *unmanaged [Stdcall]<IEnumMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 211 internal delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.System.Com.IMoniker** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 213 internal delegate *unmanaged [Stdcall]<IEnumMoniker*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 215 internal delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.Foundation.HRESULT> Reset_6; 217 internal delegate *unmanaged [Stdcall]<IEnumMoniker*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT> Clone_7; 247 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IMoniker** rgelt, [Optional] uint* pceltFetched); 250winmdroot.Foundation.HRESULT Skip(uint celt); 253winmdroot.Foundation.HRESULT Reset(); 256 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumMoniker** ppenum);
Windows.Win32.IEnumSTATDATA.g.cs (37)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Com.STATDATA> rgelt, uint* pceltFetched) 60 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched); 68 private static winmdroot.Foundation.HRESULT Next(IEnumSTATDATA* pThis, uint celt, winmdroot.System.Com.STATDATA* rgelt, [Optional] uint* pceltFetched) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.STATDATA* rgelt, [Optional] uint* pceltFetched) 98 return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.System.Com.STATDATA* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 104 private static winmdroot.Foundation.HRESULT Skip(IEnumSTATDATA* pThis, uint celt) 108 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 127 public winmdroot.Foundation.HRESULT Skip(uint celt) 129 return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), celt); 135 private static winmdroot.Foundation.HRESULT Reset(IEnumSTATDATA* pThis) 139 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 148 return (winmdroot.Foundation.HRESULT)ex.HResult; 155 public winmdroot.Foundation.HRESULT Reset() 157 return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumSTATDATA*)Unsafe.AsPointer(ref this)); 163 private static winmdroot.Foundation.HRESULT Clone(IEnumSTATDATA* pThis, winmdroot.System.Com.IEnumSTATDATA** ppenum) 167 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumSTATDATA** ppenum) 191 return ((delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumSTATDATA*)Unsafe.AsPointer(ref this), ppenum); 194 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 198 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 215 internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 221 internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.System.Com.STATDATA* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 223 internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 225 internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.Foundation.HRESULT> Reset_6; 227 internal delegate *unmanaged [Stdcall]<IEnumSTATDATA*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT> Clone_7; 257 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.STATDATA* rgelt, [Optional] uint* pceltFetched); 260winmdroot.Foundation.HRESULT Skip(uint celt); 263winmdroot.Foundation.HRESULT Reset(); 266 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumSTATDATA** ppenum);
Windows.Win32.IEnumSTATSTG.g.cs (37)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Com.STATSTG> rgelt, uint* pceltFetched) 60 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched); 68 private static winmdroot.Foundation.HRESULT Next(IEnumSTATSTG* pThis, uint celt, winmdroot.System.Com.STATSTG* rgelt, [Optional] uint* pceltFetched) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.STATSTG* rgelt, [Optional] uint* pceltFetched) 98 return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.System.Com.STATSTG* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 104 private static winmdroot.Foundation.HRESULT Skip(IEnumSTATSTG* pThis, uint celt) 108 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 129 public winmdroot.Foundation.HRESULT Skip(uint celt) 131 return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), celt); 137 private static winmdroot.Foundation.HRESULT Reset(IEnumSTATSTG* pThis) 141 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 150 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 public winmdroot.Foundation.HRESULT Reset() 164 return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumSTATSTG*)Unsafe.AsPointer(ref this)); 170 private static winmdroot.Foundation.HRESULT Clone(IEnumSTATSTG* pThis, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 183 return (winmdroot.Foundation.HRESULT)ex.HResult; 199 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 201 return ((delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumSTATSTG*)Unsafe.AsPointer(ref this), ppenum); 204 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 208 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 225 internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 231 internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.System.Com.STATSTG* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 233 internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 235 internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.Foundation.HRESULT> Reset_6; 237 internal delegate *unmanaged [Stdcall]<IEnumSTATSTG*,winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ,winmdroot.Foundation.HRESULT> Clone_7; 267 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.STATSTG* rgelt, [Optional] uint* pceltFetched); 270winmdroot.Foundation.HRESULT Skip(uint celt); 273winmdroot.Foundation.HRESULT Reset(); 276 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum);
Windows.Win32.IEnumString.g.cs (37)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumString*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumString*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.Foundation.PWSTR> rgelt, uint* pceltFetched) 60 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched); 68 private static winmdroot.Foundation.HRESULT Next(IEnumString* pThis, uint celt, winmdroot.Foundation.PWSTR* rgelt, [Optional] uint* pceltFetched) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.Foundation.PWSTR* rgelt, [Optional] uint* pceltFetched) 98 return ((delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.PWSTR* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumString*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 104 private static winmdroot.Foundation.HRESULT Skip(IEnumString* pThis, uint celt) 108 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 127 public winmdroot.Foundation.HRESULT Skip(uint celt) 129 return ((delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumString*)Unsafe.AsPointer(ref this), celt); 135 private static winmdroot.Foundation.HRESULT Reset(IEnumString* pThis) 139 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 148 return (winmdroot.Foundation.HRESULT)ex.HResult; 155 public winmdroot.Foundation.HRESULT Reset() 157 return ((delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumString*)Unsafe.AsPointer(ref this)); 163 private static winmdroot.Foundation.HRESULT Clone(IEnumString* pThis, winmdroot.System.Com.IEnumString** ppenum) 167 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 186 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumString** ppenum) 188 return ((delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumString*)Unsafe.AsPointer(ref this), ppenum); 191 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 195 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 212 internal delegate *unmanaged [Stdcall]<IEnumString*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 218 internal delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.PWSTR* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 220 internal delegate *unmanaged [Stdcall]<IEnumString*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 222 internal delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.Foundation.HRESULT> Reset_6; 224 internal delegate *unmanaged [Stdcall]<IEnumString*,winmdroot.System.Com.IEnumString** ,winmdroot.Foundation.HRESULT> Clone_7; 254 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.Foundation.PWSTR* rgelt, [Optional] uint* pceltFetched); 257winmdroot.Foundation.HRESULT Skip(uint celt); 260winmdroot.Foundation.HRESULT Reset(); 263 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumString** ppenum);
Windows.Win32.IEnumUnknown.g.cs (35)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumUnknown*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Next(IEnumUnknown* pThis, uint celt, winmdroot.System.Com.IUnknown** rgelt, [Optional] uint* pceltFetched) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IUnknown** rgelt, [Optional] uint* pceltFetched) 88 return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.System.Com.IUnknown** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumUnknown*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 94 private static winmdroot.Foundation.HRESULT Skip(IEnumUnknown* pThis, uint celt) 98 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 117 public winmdroot.Foundation.HRESULT Skip(uint celt) 119 return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumUnknown*)Unsafe.AsPointer(ref this), celt); 125 private static winmdroot.Foundation.HRESULT Reset(IEnumUnknown* pThis) 129 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 138 return (winmdroot.Foundation.HRESULT)ex.HResult; 145 public winmdroot.Foundation.HRESULT Reset() 147 return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumUnknown*)Unsafe.AsPointer(ref this)); 153 private static winmdroot.Foundation.HRESULT Clone(IEnumUnknown* pThis, winmdroot.System.Com.IEnumUnknown** ppenum) 157 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 166 return (winmdroot.Foundation.HRESULT)ex.HResult; 176 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumUnknown** ppenum) 178 return ((delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumUnknown*)Unsafe.AsPointer(ref this), ppenum); 181 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 185 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 202 internal delegate *unmanaged [Stdcall]<IEnumUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 208 internal delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.System.Com.IUnknown** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 210 internal delegate *unmanaged [Stdcall]<IEnumUnknown*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 212 internal delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.Foundation.HRESULT> Reset_6; 214 internal delegate *unmanaged [Stdcall]<IEnumUnknown*,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.HRESULT> Clone_7; 244 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Com.IUnknown** rgelt, [Optional] uint* pceltFetched); 247winmdroot.Foundation.HRESULT Skip(uint celt); 250winmdroot.Foundation.HRESULT Reset(); 253 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumUnknown** ppenum);
Windows.Win32.IGlobalInterfaceTable.g.cs (32)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IGlobalInterfaceTable*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT RegisterInterfaceInGlobal(winmdroot.System.Com.IUnknown* pUnk, in global::System.Guid riid, out uint pdwCookie) 62 winmdroot.Foundation.HRESULT __result = this.RegisterInterfaceInGlobal(pUnk, riidLocal, pdwCookieLocal); 71 private static winmdroot.Foundation.HRESULT RegisterInterfaceInGlobal(IGlobalInterfaceTable* pThis, winmdroot.System.Com.IUnknown* pUnk, global::System.Guid* riid, uint* pdwCookie) 75 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 100 public unsafe winmdroot.Foundation.HRESULT RegisterInterfaceInGlobal(winmdroot.System.Com.IUnknown* pUnk, global::System.Guid* riid, uint* pdwCookie) 102 return ((delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IGlobalInterfaceTable*)Unsafe.AsPointer(ref this), pUnk, riid, pdwCookie); 108 private static winmdroot.Foundation.HRESULT RevokeInterfaceFromGlobal(IGlobalInterfaceTable* pThis, uint dwCookie) 112 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 121 return (winmdroot.Foundation.HRESULT)ex.HResult; 132 public winmdroot.Foundation.HRESULT RevokeInterfaceFromGlobal(uint dwCookie) 134 return ((delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IGlobalInterfaceTable*)Unsafe.AsPointer(ref this), dwCookie); 138 internal unsafe winmdroot.Foundation.HRESULT GetInterfaceFromGlobal(uint dwCookie, in global::System.Guid riid, out void* ppv) 144 winmdroot.Foundation.HRESULT __result = this.GetInterfaceFromGlobal(dwCookie, riidLocal, ppvLocal); 153 private static winmdroot.Foundation.HRESULT GetInterfaceFromGlobal(IGlobalInterfaceTable* pThis, uint dwCookie, global::System.Guid* riid, void** ppv) 157 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 166 return (winmdroot.Foundation.HRESULT)ex.HResult; 182 public unsafe winmdroot.Foundation.HRESULT GetInterfaceFromGlobal(uint dwCookie, global::System.Guid* riid, void** ppv) 184 return ((delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IGlobalInterfaceTable*)Unsafe.AsPointer(ref this), dwCookie, riid, ppv); 187 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 191 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 208 internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 214 internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,uint* ,winmdroot.Foundation.HRESULT> RegisterInterfaceInGlobal_4; 216 internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,winmdroot.Foundation.HRESULT> RevokeInterfaceFromGlobal_5; 218 internal delegate *unmanaged [Stdcall]<IGlobalInterfaceTable*,uint ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetInterfaceFromGlobal_6; 247 unsafe winmdroot.Foundation.HRESULT RegisterInterfaceInGlobal(winmdroot.System.Com.IUnknown* pUnk, global::System.Guid* riid, uint* pdwCookie); 250winmdroot.Foundation.HRESULT RevokeInterfaceFromGlobal(uint dwCookie); 253 unsafe winmdroot.Foundation.HRESULT GetInterfaceFromGlobal(uint dwCookie, global::System.Guid* riid, void** ppv);
Windows.Win32.IMoniker.g.cs (165)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IMoniker*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetClassID(out global::System.Guid pClassID) 60 winmdroot.Foundation.HRESULT __result = this.GetClassID(pClassIDLocal); 68 private static winmdroot.Foundation.HRESULT GetClassID(IMoniker* pThis, global::System.Guid* pClassID) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID) 87 return ((delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IMoniker*)Unsafe.AsPointer(ref this), pClassID); 93 private static winmdroot.Foundation.HRESULT IsDirty(IMoniker* pThis) 97 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 110 public winmdroot.Foundation.HRESULT IsDirty() 112 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IMoniker*)Unsafe.AsPointer(ref this)); 118 private static winmdroot.Foundation.HRESULT Load(IMoniker* pThis, winmdroot.System.Com.IStream* pStm) 122 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 131 return (winmdroot.Foundation.HRESULT)ex.HResult; 135 public unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm) 137 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IMoniker*)Unsafe.AsPointer(ref this), pStm); 143 private static winmdroot.Foundation.HRESULT Save(IMoniker* pThis, winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty) 147 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 156 return (winmdroot.Foundation.HRESULT)ex.HResult; 160 public unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty) 162 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IMoniker*)Unsafe.AsPointer(ref this), pStm, fClearDirty); 166 internal unsafe winmdroot.Foundation.HRESULT GetSizeMax(out ulong pcbSize) 170 winmdroot.Foundation.HRESULT __result = this.GetSizeMax(pcbSizeLocal); 178 private static winmdroot.Foundation.HRESULT GetSizeMax(IMoniker* pThis, ulong* pcbSize) 182 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 191 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 public unsafe winmdroot.Foundation.HRESULT GetSizeMax(ulong* pcbSize) 197 return ((delegate *unmanaged [Stdcall]<IMoniker*,ulong* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IMoniker*)Unsafe.AsPointer(ref this), pcbSize); 201 internal unsafe winmdroot.Foundation.HRESULT BindToObject(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, in global::System.Guid riidResult, out void* ppvResult) 207 winmdroot.Foundation.HRESULT __result = this.BindToObject(pbc, pmkToLeft, riidResultLocal, ppvResultLocal); 216 private static winmdroot.Foundation.HRESULT BindToObject(IMoniker* pThis, winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riidResult, void** ppvResult) 220 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 229 return (winmdroot.Foundation.HRESULT)ex.HResult; 247 public unsafe winmdroot.Foundation.HRESULT BindToObject(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riidResult, void** ppvResult) 249 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, riidResult, ppvResult); 253 internal unsafe winmdroot.Foundation.HRESULT BindToStorage(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, in global::System.Guid riid, out void* ppvObj) 259 winmdroot.Foundation.HRESULT __result = this.BindToStorage(pbc, pmkToLeft, riidLocal, ppvObjLocal); 268 private static winmdroot.Foundation.HRESULT BindToStorage(IMoniker* pThis, winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riid, void** ppvObj) 272 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 281 return (winmdroot.Foundation.HRESULT)ex.HResult; 299 public unsafe winmdroot.Foundation.HRESULT BindToStorage(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riid, void** ppvObj) 301 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, riid, ppvObj); 307 private static winmdroot.Foundation.HRESULT Reduce(IMoniker* pThis, winmdroot.System.Com.IBindCtx* pbc, uint dwReduceHowFar, winmdroot.System.Com.IMoniker** ppmkToLeft, winmdroot.System.Com.IMoniker** ppmkReduced) 311 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 320 return (winmdroot.Foundation.HRESULT)ex.HResult; 341 public unsafe winmdroot.Foundation.HRESULT Reduce(winmdroot.System.Com.IBindCtx* pbc, uint dwReduceHowFar, winmdroot.System.Com.IMoniker** ppmkToLeft, winmdroot.System.Com.IMoniker** ppmkReduced) 343 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IMoniker*)Unsafe.AsPointer(ref this), pbc, dwReduceHowFar, ppmkToLeft, ppmkReduced); 349 private static winmdroot.Foundation.HRESULT ComposeWith(IMoniker* pThis, winmdroot.System.Com.IMoniker* pmkRight, winmdroot.Foundation.BOOL fOnlyIfNotGeneric, winmdroot.System.Com.IMoniker** ppmkComposite) 353 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 362 return (winmdroot.Foundation.HRESULT)ex.HResult; 379 public unsafe winmdroot.Foundation.HRESULT ComposeWith(winmdroot.System.Com.IMoniker* pmkRight, winmdroot.Foundation.BOOL fOnlyIfNotGeneric, winmdroot.System.Com.IMoniker** ppmkComposite) 381 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.BOOL ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IMoniker*)Unsafe.AsPointer(ref this), pmkRight, fOnlyIfNotGeneric, ppmkComposite); 387 private static winmdroot.Foundation.HRESULT Enum(IMoniker* pThis, winmdroot.Foundation.BOOL fForward, winmdroot.System.Com.IEnumMoniker** ppenumMoniker) 391 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 400 return (winmdroot.Foundation.HRESULT)ex.HResult; 413 public unsafe winmdroot.Foundation.HRESULT Enum(winmdroot.Foundation.BOOL fForward, winmdroot.System.Com.IEnumMoniker** ppenumMoniker) 415 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.BOOL ,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IMoniker*)Unsafe.AsPointer(ref this), fForward, ppenumMoniker); 421 private static winmdroot.Foundation.HRESULT IsEqual(IMoniker* pThis, winmdroot.System.Com.IMoniker* pmkOtherMoniker) 425 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 434 return (winmdroot.Foundation.HRESULT)ex.HResult; 446 public unsafe winmdroot.Foundation.HRESULT IsEqual(winmdroot.System.Com.IMoniker* pmkOtherMoniker) 448 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IMoniker*)Unsafe.AsPointer(ref this), pmkOtherMoniker); 452 internal unsafe winmdroot.Foundation.HRESULT Hash(out uint pdwHash) 456 winmdroot.Foundation.HRESULT __result = this.Hash(pdwHashLocal); 464 private static winmdroot.Foundation.HRESULT Hash(IMoniker* pThis, uint* pdwHash) 468 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 477 return (winmdroot.Foundation.HRESULT)ex.HResult; 489 public unsafe winmdroot.Foundation.HRESULT Hash(uint* pdwHash) 491 return ((delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IMoniker*)Unsafe.AsPointer(ref this), pdwHash); 497 private static winmdroot.Foundation.HRESULT IsRunning(IMoniker* pThis, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.System.Com.IMoniker* pmkNewlyRunning) 501 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 510 return (winmdroot.Foundation.HRESULT)ex.HResult; 527 public unsafe winmdroot.Foundation.HRESULT IsRunning(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.System.Com.IMoniker* pmkNewlyRunning) 529 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, pmkNewlyRunning); 533 internal unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, out global::System.Runtime.InteropServices.ComTypes.FILETIME pFileTime) 537 winmdroot.Foundation.HRESULT __result = this.GetTimeOfLastChange(pbc, pmkToLeft, pFileTimeLocal); 545 private static winmdroot.Foundation.HRESULT GetTimeOfLastChange(IMoniker* pThis, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Runtime.InteropServices.ComTypes.FILETIME* pFileTime) 549 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 558 return (winmdroot.Foundation.HRESULT)ex.HResult; 577 public unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Runtime.InteropServices.ComTypes.FILETIME* pFileTime) 579 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, pFileTime); 585 private static winmdroot.Foundation.HRESULT Inverse(IMoniker* pThis, winmdroot.System.Com.IMoniker** ppmk) 589 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 598 return (winmdroot.Foundation.HRESULT)ex.HResult; 614 public unsafe winmdroot.Foundation.HRESULT Inverse(winmdroot.System.Com.IMoniker** ppmk) 616 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IMoniker*)Unsafe.AsPointer(ref this), ppmk); 622 private static winmdroot.Foundation.HRESULT CommonPrefixWith(IMoniker* pThis, winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkPrefix) 626 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 635 return (winmdroot.Foundation.HRESULT)ex.HResult; 654 public unsafe winmdroot.Foundation.HRESULT CommonPrefixWith(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkPrefix) 656 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IMoniker*)Unsafe.AsPointer(ref this), pmkOther, ppmkPrefix); 662 private static winmdroot.Foundation.HRESULT RelativePathTo(IMoniker* pThis, winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkRelPath) 666 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 675 return (winmdroot.Foundation.HRESULT)ex.HResult; 691 public unsafe winmdroot.Foundation.HRESULT RelativePathTo(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkRelPath) 693 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IMoniker*)Unsafe.AsPointer(ref this), pmkOther, ppmkRelPath); 697 internal unsafe winmdroot.Foundation.HRESULT GetDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, out winmdroot.Foundation.PWSTR ppszDisplayName) 701 winmdroot.Foundation.HRESULT __result = this.GetDisplayName(pbc, pmkToLeft, ppszDisplayNameLocal); 709 private static winmdroot.Foundation.HRESULT GetDisplayName(IMoniker* pThis, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR* ppszDisplayName) 713 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 722 return (winmdroot.Foundation.HRESULT)ex.HResult; 739 public unsafe winmdroot.Foundation.HRESULT GetDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR* ppszDisplayName) 741 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, ppszDisplayName); 745 internal unsafe winmdroot.Foundation.HRESULT ParseDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR pszDisplayName, out uint pchEaten, winmdroot.System.Com.IMoniker** ppmkOut) 749 winmdroot.Foundation.HRESULT __result = this.ParseDisplayName(pbc, pmkToLeft, pszDisplayName, pchEatenLocal, ppmkOut); 757 private static winmdroot.Foundation.HRESULT ParseDisplayName(IMoniker* pThis, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut) 761 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 770 return (winmdroot.Foundation.HRESULT)ex.HResult; 789 public unsafe winmdroot.Foundation.HRESULT ParseDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut) 791 return ((delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IMoniker*)Unsafe.AsPointer(ref this), pbc, pmkToLeft, pszDisplayName, pchEaten, ppmkOut); 795 internal unsafe winmdroot.Foundation.HRESULT IsSystemMoniker(out uint pdwMksys) 799 winmdroot.Foundation.HRESULT __result = this.IsSystemMoniker(pdwMksysLocal); 807 private static winmdroot.Foundation.HRESULT IsSystemMoniker(IMoniker* pThis, uint* pdwMksys) 811 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 820 return (winmdroot.Foundation.HRESULT)ex.HResult; 832 public unsafe winmdroot.Foundation.HRESULT IsSystemMoniker(uint* pdwMksys) 834 return ((delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IMoniker*)Unsafe.AsPointer(ref this), pdwMksys); 837 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 841 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 858 internal delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 864 internal delegate *unmanaged [Stdcall]<IMoniker*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 866 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.HRESULT> IsDirty_5; 868 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT> Load_6; 870 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Save_7; 872 internal delegate *unmanaged [Stdcall]<IMoniker*,ulong* ,winmdroot.Foundation.HRESULT> GetSizeMax_8; 874 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToObject_9; 876 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToStorage_10; 878 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> Reduce_11; 880 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.BOOL ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> ComposeWith_12; 882 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.Foundation.BOOL ,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT> Enum_13; 884 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT> IsEqual_14; 886 internal delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.HRESULT> Hash_15; 888 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT> IsRunning_16; 890 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT> GetTimeOfLastChange_17; 892 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> Inverse_18; 894 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> CommonPrefixWith_19; 896 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> RelativePathTo_20; 898 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetDisplayName_21; 900 internal delegate *unmanaged [Stdcall]<IMoniker*,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> ParseDisplayName_22; 902 internal delegate *unmanaged [Stdcall]<IMoniker*,uint* ,winmdroot.Foundation.HRESULT> IsSystemMoniker_23; 948 unsafe new winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID); 951 new winmdroot.Foundation.HRESULT IsDirty(); 954 unsafe new winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm); 957 unsafe new winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty); 960 unsafe new winmdroot.Foundation.HRESULT GetSizeMax(ulong* pcbSize); 963 unsafe winmdroot.Foundation.HRESULT BindToObject(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riidResult, void** ppvResult); 966 unsafe winmdroot.Foundation.HRESULT BindToStorage(winmdroot.System.Com.IBindCtx* pbc, [Optional] winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Guid* riid, void** ppvObj); 969 unsafe winmdroot.Foundation.HRESULT Reduce(winmdroot.System.Com.IBindCtx* pbc, uint dwReduceHowFar, winmdroot.System.Com.IMoniker** ppmkToLeft, winmdroot.System.Com.IMoniker** ppmkReduced); 972 unsafe winmdroot.Foundation.HRESULT ComposeWith(winmdroot.System.Com.IMoniker* pmkRight, winmdroot.Foundation.BOOL fOnlyIfNotGeneric, winmdroot.System.Com.IMoniker** ppmkComposite); 975 unsafe winmdroot.Foundation.HRESULT Enum(winmdroot.Foundation.BOOL fForward, winmdroot.System.Com.IEnumMoniker** ppenumMoniker); 978 unsafe winmdroot.Foundation.HRESULT IsEqual(winmdroot.System.Com.IMoniker* pmkOtherMoniker); 981 unsafe winmdroot.Foundation.HRESULT Hash(uint* pdwHash); 984 unsafe winmdroot.Foundation.HRESULT IsRunning(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.System.Com.IMoniker* pmkNewlyRunning); 987 unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, global::System.Runtime.InteropServices.ComTypes.FILETIME* pFileTime); 990 unsafe winmdroot.Foundation.HRESULT Inverse(winmdroot.System.Com.IMoniker** ppmk); 993 unsafe winmdroot.Foundation.HRESULT CommonPrefixWith(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkPrefix); 996 unsafe winmdroot.Foundation.HRESULT RelativePathTo(winmdroot.System.Com.IMoniker* pmkOther, winmdroot.System.Com.IMoniker** ppmkRelPath); 999 unsafe winmdroot.Foundation.HRESULT GetDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR* ppszDisplayName); 1002 unsafe winmdroot.Foundation.HRESULT ParseDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut); 1005 unsafe winmdroot.Foundation.HRESULT IsSystemMoniker(uint* pdwMksys);
Windows.Win32.IPersist.g.cs (16)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPersist*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetClassID(out global::System.Guid pClassID) 60 winmdroot.Foundation.HRESULT __result = this.GetClassID(pClassIDLocal); 68 private static winmdroot.Foundation.HRESULT GetClassID(IPersist* pThis, global::System.Guid* pClassID) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 93 public unsafe winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID) 95 return ((delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPersist*)Unsafe.AsPointer(ref this), pClassID); 98 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 102 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 119 internal delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 125 internal delegate *unmanaged [Stdcall]<IPersist*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 152 unsafe winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID);
Windows.Win32.IPersistStream.g.cs (46)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPersistStream*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetClassID(out global::System.Guid pClassID) 60 winmdroot.Foundation.HRESULT __result = this.GetClassID(pClassIDLocal); 68 private static winmdroot.Foundation.HRESULT GetClassID(IPersistStream* pThis, global::System.Guid* pClassID) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID) 87 return ((delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPersistStream*)Unsafe.AsPointer(ref this), pClassID); 93 private static winmdroot.Foundation.HRESULT IsDirty(IPersistStream* pThis) 97 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 116 public winmdroot.Foundation.HRESULT IsDirty() 118 return ((delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPersistStream*)Unsafe.AsPointer(ref this)); 124 private static winmdroot.Foundation.HRESULT Load(IPersistStream* pThis, winmdroot.System.Com.IStream* pStm) 128 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 137 return (winmdroot.Foundation.HRESULT)ex.HResult; 152 public unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm) 154 return ((delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPersistStream*)Unsafe.AsPointer(ref this), pStm); 160 private static winmdroot.Foundation.HRESULT Save(IPersistStream* pThis, winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty) 164 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 173 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 public unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty) 191 return ((delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPersistStream*)Unsafe.AsPointer(ref this), pStm, fClearDirty); 195 internal unsafe winmdroot.Foundation.HRESULT GetSizeMax(out ulong pcbSize) 199 winmdroot.Foundation.HRESULT __result = this.GetSizeMax(pcbSizeLocal); 207 private static winmdroot.Foundation.HRESULT GetSizeMax(IPersistStream* pThis, ulong* pcbSize) 211 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 220 return (winmdroot.Foundation.HRESULT)ex.HResult; 231 public unsafe winmdroot.Foundation.HRESULT GetSizeMax(ulong* pcbSize) 233 return ((delegate *unmanaged [Stdcall]<IPersistStream*,ulong* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IPersistStream*)Unsafe.AsPointer(ref this), pcbSize); 236 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 240 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 257 internal delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 263 internal delegate *unmanaged [Stdcall]<IPersistStream*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 265 internal delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.Foundation.HRESULT> IsDirty_5; 267 internal delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT> Load_6; 269 internal delegate *unmanaged [Stdcall]<IPersistStream*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Save_7; 271 internal delegate *unmanaged [Stdcall]<IPersistStream*,ulong* ,winmdroot.Foundation.HRESULT> GetSizeMax_8; 302 unsafe new winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID); 305winmdroot.Foundation.HRESULT IsDirty(); 308 unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm); 311 unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty); 314 unsafe winmdroot.Foundation.HRESULT GetSizeMax(ulong* pcbSize);
Windows.Win32.IPicture.g.cs (127)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IPicture*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPicture*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT get_Handle(out winmdroot.System.Ole.OLE_HANDLE pHandle) 60 winmdroot.Foundation.HRESULT __result = this.get_Handle(pHandleLocal); 68 private static winmdroot.Foundation.HRESULT get_Handle(IPicture* pThis, winmdroot.System.Ole.OLE_HANDLE* pHandle) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 95 public unsafe winmdroot.Foundation.HRESULT get_Handle(winmdroot.System.Ole.OLE_HANDLE* pHandle) 97 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPicture*)Unsafe.AsPointer(ref this), pHandle); 101 internal unsafe winmdroot.Foundation.HRESULT get_hPal(out winmdroot.System.Ole.OLE_HANDLE phPal) 105 winmdroot.Foundation.HRESULT __result = this.get_hPal(phPalLocal); 113 private static winmdroot.Foundation.HRESULT get_hPal(IPicture* pThis, winmdroot.System.Ole.OLE_HANDLE* phPal) 117 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 126 return (winmdroot.Foundation.HRESULT)ex.HResult; 140 public unsafe winmdroot.Foundation.HRESULT get_hPal(winmdroot.System.Ole.OLE_HANDLE* phPal) 142 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPicture*)Unsafe.AsPointer(ref this), phPal); 146 internal unsafe winmdroot.Foundation.HRESULT get_Type(out winmdroot.System.Ole.PICTYPE pType) 150 winmdroot.Foundation.HRESULT __result = this.get_Type(pTypeLocal); 158 private static winmdroot.Foundation.HRESULT get_Type(IPicture* pThis, winmdroot.System.Ole.PICTYPE* pType) 162 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 171 return (winmdroot.Foundation.HRESULT)ex.HResult; 184 public unsafe winmdroot.Foundation.HRESULT get_Type(winmdroot.System.Ole.PICTYPE* pType) 186 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.PICTYPE* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPicture*)Unsafe.AsPointer(ref this), pType); 190 internal unsafe winmdroot.Foundation.HRESULT get_Width(out int pWidth) 194 winmdroot.Foundation.HRESULT __result = this.get_Width(pWidthLocal); 202 private static winmdroot.Foundation.HRESULT get_Width(IPicture* pThis, int* pWidth) 206 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return (winmdroot.Foundation.HRESULT)ex.HResult; 228 public unsafe winmdroot.Foundation.HRESULT get_Width(int* pWidth) 230 return ((delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPicture*)Unsafe.AsPointer(ref this), pWidth); 234 internal unsafe winmdroot.Foundation.HRESULT get_Height(out int pHeight) 238 winmdroot.Foundation.HRESULT __result = this.get_Height(pHeightLocal); 246 private static winmdroot.Foundation.HRESULT get_Height(IPicture* pThis, int* pHeight) 250 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 259 return (winmdroot.Foundation.HRESULT)ex.HResult; 272 public unsafe winmdroot.Foundation.HRESULT get_Height(int* pHeight) 274 return ((delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IPicture*)Unsafe.AsPointer(ref this), pHeight); 278 internal unsafe winmdroot.Foundation.HRESULT Render(winmdroot.Graphics.Gdi.HDC hDC, int x, int y, int cx, int cy, int xSrc, int ySrc, int cxSrc, int cySrc, in winmdroot.Foundation.RECT pRcWBounds) 282 winmdroot.Foundation.HRESULT __result = this.Render(hDC, x, y, cx, cy, xSrc, ySrc, cxSrc, cySrc, pRcWBoundsLocal); 290 private static winmdroot.Foundation.HRESULT Render(IPicture* pThis, winmdroot.Graphics.Gdi.HDC hDC, int x, int y, int cx, int cy, int xSrc, int ySrc, int cxSrc, int cySrc, winmdroot.Foundation.RECT* pRcWBounds) 294 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 303 return (winmdroot.Foundation.HRESULT)ex.HResult; 325 public unsafe winmdroot.Foundation.HRESULT Render(winmdroot.Graphics.Gdi.HDC hDC, int x, int y, int cx, int cy, int xSrc, int ySrc, int cxSrc, int cySrc, winmdroot.Foundation.RECT* pRcWBounds) 327 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC ,int ,int ,int ,int ,int ,int ,int ,int ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IPicture*)Unsafe.AsPointer(ref this), hDC, x, y, cx, cy, xSrc, ySrc, cxSrc, cySrc, pRcWBounds); 333 private static winmdroot.Foundation.HRESULT set_hPal(IPicture* pThis, winmdroot.System.Ole.OLE_HANDLE hPal) 337 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 346 return (winmdroot.Foundation.HRESULT)ex.HResult; 357 public winmdroot.Foundation.HRESULT set_hPal(winmdroot.System.Ole.OLE_HANDLE hPal) 359 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IPicture*)Unsafe.AsPointer(ref this), hPal); 363 internal unsafe winmdroot.Foundation.HRESULT get_CurDC(out winmdroot.Graphics.Gdi.HDC phDC) 367 winmdroot.Foundation.HRESULT __result = this.get_CurDC(phDCLocal); 375 private static winmdroot.Foundation.HRESULT get_CurDC(IPicture* pThis, winmdroot.Graphics.Gdi.HDC* phDC) 379 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 388 return (winmdroot.Foundation.HRESULT)ex.HResult; 402 public unsafe winmdroot.Foundation.HRESULT get_CurDC(winmdroot.Graphics.Gdi.HDC* phDC) 404 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IPicture*)Unsafe.AsPointer(ref this), phDC); 408 internal unsafe winmdroot.Foundation.HRESULT SelectPicture(winmdroot.Graphics.Gdi.HDC hDCIn, out winmdroot.Graphics.Gdi.HDC phDCOut, out winmdroot.System.Ole.OLE_HANDLE phBmpOut) 414 winmdroot.Foundation.HRESULT __result = this.SelectPicture(hDCIn, phDCOutLocal, phBmpOutLocal); 423 private static winmdroot.Foundation.HRESULT SelectPicture(IPicture* pThis, winmdroot.Graphics.Gdi.HDC hDCIn, winmdroot.Graphics.Gdi.HDC* phDCOut, winmdroot.System.Ole.OLE_HANDLE* phBmpOut) 427 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 436 return (winmdroot.Foundation.HRESULT)ex.HResult; 448 public unsafe winmdroot.Foundation.HRESULT SelectPicture(winmdroot.Graphics.Gdi.HDC hDCIn, winmdroot.Graphics.Gdi.HDC* phDCOut, winmdroot.System.Ole.OLE_HANDLE* phBmpOut) 450 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.HDC* ,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IPicture*)Unsafe.AsPointer(ref this), hDCIn, phDCOut, phBmpOut); 454 internal unsafe winmdroot.Foundation.HRESULT get_KeepOriginalFormat(out winmdroot.Foundation.BOOL pKeep) 458 winmdroot.Foundation.HRESULT __result = this.get_KeepOriginalFormat(pKeepLocal); 466 private static winmdroot.Foundation.HRESULT get_KeepOriginalFormat(IPicture* pThis, winmdroot.Foundation.BOOL* pKeep) 470 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 479 return (winmdroot.Foundation.HRESULT)ex.HResult; 492 public unsafe winmdroot.Foundation.HRESULT get_KeepOriginalFormat(winmdroot.Foundation.BOOL* pKeep) 494 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IPicture*)Unsafe.AsPointer(ref this), pKeep); 500 private static winmdroot.Foundation.HRESULT put_KeepOriginalFormat(IPicture* pThis, winmdroot.Foundation.BOOL keep) 504 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 513 return (winmdroot.Foundation.HRESULT)ex.HResult; 523 public winmdroot.Foundation.HRESULT put_KeepOriginalFormat(winmdroot.Foundation.BOOL keep) 525 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IPicture*)Unsafe.AsPointer(ref this), keep); 531 private static winmdroot.Foundation.HRESULT PictureChanged(IPicture* pThis) 535 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 544 return (winmdroot.Foundation.HRESULT)ex.HResult; 553 public winmdroot.Foundation.HRESULT PictureChanged() 555 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IPicture*)Unsafe.AsPointer(ref this)); 559 internal unsafe winmdroot.Foundation.HRESULT SaveAsFile(winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, out int pCbSize) 563 winmdroot.Foundation.HRESULT __result = this.SaveAsFile(pStream, fSaveMemCopy, pCbSizeLocal); 571 private static winmdroot.Foundation.HRESULT SaveAsFile(IPicture* pThis, winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, int* pCbSize) 575 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 584 return (winmdroot.Foundation.HRESULT)ex.HResult; 596 public unsafe winmdroot.Foundation.HRESULT SaveAsFile(winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, int* pCbSize) 598 return ((delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IPicture*)Unsafe.AsPointer(ref this), pStream, fSaveMemCopy, pCbSize); 602 internal unsafe winmdroot.Foundation.HRESULT get_Attributes(out uint pDwAttr) 606 winmdroot.Foundation.HRESULT __result = this.get_Attributes(pDwAttrLocal); 614 private static winmdroot.Foundation.HRESULT get_Attributes(IPicture* pThis, uint* pDwAttr) 618 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 627 return (winmdroot.Foundation.HRESULT)ex.HResult; 643 public unsafe winmdroot.Foundation.HRESULT get_Attributes(uint* pDwAttr) 645 return ((delegate *unmanaged [Stdcall]<IPicture*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IPicture*)Unsafe.AsPointer(ref this), pDwAttr); 648 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 652 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 669 internal delegate *unmanaged [Stdcall]<IPicture*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 675 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.HRESULT> get_Handle_4; 677 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.HRESULT> get_hPal_5; 679 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.PICTYPE* ,winmdroot.Foundation.HRESULT> get_Type_6; 681 internal delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.HRESULT> get_Width_7; 683 internal delegate *unmanaged [Stdcall]<IPicture*,int* ,winmdroot.Foundation.HRESULT> get_Height_8; 685 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC ,int ,int ,int ,int ,int ,int ,int ,int ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> Render_9; 687 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Ole.OLE_HANDLE ,winmdroot.Foundation.HRESULT> set_hPal_10; 689 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC* ,winmdroot.Foundation.HRESULT> get_CurDC_11; 691 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.HDC* ,winmdroot.System.Ole.OLE_HANDLE* ,winmdroot.Foundation.HRESULT> SelectPicture_12; 693 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_KeepOriginalFormat_13; 695 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_KeepOriginalFormat_14; 697 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.Foundation.HRESULT> PictureChanged_15; 699 internal delegate *unmanaged [Stdcall]<IPicture*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,int* ,winmdroot.Foundation.HRESULT> SaveAsFile_16; 701 internal delegate *unmanaged [Stdcall]<IPicture*,uint* ,winmdroot.Foundation.HRESULT> get_Attributes_17; 741 unsafe winmdroot.Foundation.HRESULT get_Handle(winmdroot.System.Ole.OLE_HANDLE* pHandle); 744 unsafe winmdroot.Foundation.HRESULT get_hPal(winmdroot.System.Ole.OLE_HANDLE* phPal); 747 unsafe winmdroot.Foundation.HRESULT get_Type(winmdroot.System.Ole.PICTYPE* pType); 750 unsafe winmdroot.Foundation.HRESULT get_Width(int* pWidth); 753 unsafe winmdroot.Foundation.HRESULT get_Height(int* pHeight); 756 unsafe winmdroot.Foundation.HRESULT Render(winmdroot.Graphics.Gdi.HDC hDC, int x, int y, int cx, int cy, int xSrc, int ySrc, int cxSrc, int cySrc, winmdroot.Foundation.RECT* pRcWBounds); 759winmdroot.Foundation.HRESULT set_hPal(winmdroot.System.Ole.OLE_HANDLE hPal); 762 unsafe winmdroot.Foundation.HRESULT get_CurDC(winmdroot.Graphics.Gdi.HDC* phDC); 765 unsafe winmdroot.Foundation.HRESULT SelectPicture(winmdroot.Graphics.Gdi.HDC hDCIn, winmdroot.Graphics.Gdi.HDC* phDCOut, winmdroot.System.Ole.OLE_HANDLE* phBmpOut); 768 unsafe winmdroot.Foundation.HRESULT get_KeepOriginalFormat(winmdroot.Foundation.BOOL* pKeep); 771winmdroot.Foundation.HRESULT put_KeepOriginalFormat(winmdroot.Foundation.BOOL keep); 774winmdroot.Foundation.HRESULT PictureChanged(); 777 unsafe winmdroot.Foundation.HRESULT SaveAsFile(winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, int* pCbSize); 780 unsafe winmdroot.Foundation.HRESULT get_Attributes(uint* pDwAttr);
Windows.Win32.IPictureDisp.g.cs (25)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IPictureDisp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPictureDisp*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(out uint pctinfo) 60 winmdroot.Foundation.HRESULT __result = this.GetTypeInfoCount(pctinfoLocal); 65 public unsafe winmdroot.Foundation.HRESULT GetTypeInfoCount(uint* pctinfo) 67 return ((delegate *unmanaged [Stdcall]<IPictureDisp*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPictureDisp*)Unsafe.AsPointer(ref this), pctinfo); 70 public unsafe winmdroot.Foundation.HRESULT GetTypeInfo(uint iTInfo, uint lcid, winmdroot.System.Com.ITypeInfo** ppTInfo) 72 return ((delegate *unmanaged [Stdcall]<IPictureDisp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPictureDisp*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo); 76 internal unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(in global::System.Guid riid, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, uint lcid, Span<int> rgDispId) 85 winmdroot.Foundation.HRESULT __result = this.GetIDsOfNames(riidLocal, rgszNamesLocal, (uint )rgDispId.Length, lcid, rgDispIdLocal); 92 public unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(global::System.Guid* riid, winmdroot.Foundation.PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 94 return ((delegate *unmanaged [Stdcall]<IPictureDisp*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPictureDisp*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId); 98 internal unsafe winmdroot.Foundation.HRESULT Invoke(int dispIdMember, in global::System.Guid riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, in winmdroot.System.Com.DISPPARAMS pDispParams, winmdroot.System.Variant.VARIANT* pVarResult, winmdroot.System.Com.EXCEPINFO* pExcepInfo, uint* puArgErr) 104 winmdroot.Foundation.HRESULT __result = this.Invoke(dispIdMember, riidLocal, lcid, wFlags, pDispParamsLocal, pVarResult, pExcepInfo, puArgErr); 110 public unsafe winmdroot.Foundation.HRESULT Invoke(int dispIdMember, global::System.Guid* riid, uint lcid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, winmdroot.System.Com.DISPPARAMS* pDispParams, [Optional] winmdroot.System.Variant.VARIANT* pVarResult, [Optional] winmdroot.System.Com.EXCEPINFO* pExcepInfo, [Optional] uint* puArgErr) 112 return ((delegate *unmanaged [Stdcall]<IPictureDisp*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPictureDisp*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); 115 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 119 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 136 internal delegate *unmanaged [Stdcall]<IPictureDisp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 142 internal delegate *unmanaged [Stdcall]<IPictureDisp*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 144 internal delegate *unmanaged [Stdcall]<IPictureDisp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 146 internal delegate *unmanaged [Stdcall]<IPictureDisp*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 148 internal delegate *unmanaged [Stdcall]<IPictureDisp*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7;
Windows.Win32.IRecordInfo.g.cs (123)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRecordInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 57 private static winmdroot.Foundation.HRESULT RecordInit(IRecordInfo* pThis, void* pvNew) 61 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 70 return (winmdroot.Foundation.HRESULT)ex.HResult; 84 public unsafe winmdroot.Foundation.HRESULT RecordInit(void* pvNew) 86 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRecordInfo*)Unsafe.AsPointer(ref this), pvNew); 92 private static winmdroot.Foundation.HRESULT RecordClear(IRecordInfo* pThis, void* pvExisting) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 116 public unsafe winmdroot.Foundation.HRESULT RecordClear(void* pvExisting) 118 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRecordInfo*)Unsafe.AsPointer(ref this), pvExisting); 124 private static winmdroot.Foundation.HRESULT RecordCopy(IRecordInfo* pThis, void* pvExisting, void* pvNew) 128 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 137 return (winmdroot.Foundation.HRESULT)ex.HResult; 149 public unsafe winmdroot.Foundation.HRESULT RecordCopy(void* pvExisting, void* pvNew) 151 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRecordInfo*)Unsafe.AsPointer(ref this), pvExisting, pvNew); 155 internal unsafe winmdroot.Foundation.HRESULT GetGuid(out global::System.Guid pguid) 159 winmdroot.Foundation.HRESULT __result = this.GetGuid(pguidLocal); 167 private static winmdroot.Foundation.HRESULT GetGuid(IRecordInfo* pThis, global::System.Guid* pguid) 171 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 public unsafe winmdroot.Foundation.HRESULT GetGuid(global::System.Guid* pguid) 195 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IRecordInfo*)Unsafe.AsPointer(ref this), pguid); 201 private static winmdroot.Foundation.HRESULT GetName(IRecordInfo* pThis, winmdroot.Foundation.BSTR* pbstrName) 205 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 214 return (winmdroot.Foundation.HRESULT)ex.HResult; 225 public unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pbstrName) 227 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRecordInfo*)Unsafe.AsPointer(ref this), pbstrName); 231 internal unsafe winmdroot.Foundation.HRESULT GetSize(out uint pcbSize) 235 winmdroot.Foundation.HRESULT __result = this.GetSize(pcbSizeLocal); 243 private static winmdroot.Foundation.HRESULT GetSize(IRecordInfo* pThis, uint* pcbSize) 247 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 256 return (winmdroot.Foundation.HRESULT)ex.HResult; 269 public unsafe winmdroot.Foundation.HRESULT GetSize(uint* pcbSize) 271 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IRecordInfo*)Unsafe.AsPointer(ref this), pcbSize); 277 private static winmdroot.Foundation.HRESULT GetTypeInfo(IRecordInfo* pThis, winmdroot.System.Com.ITypeInfo** ppTypeInfo) 281 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 290 return (winmdroot.Foundation.HRESULT)ex.HResult; 301 public unsafe winmdroot.Foundation.HRESULT GetTypeInfo(winmdroot.System.Com.ITypeInfo** ppTypeInfo) 303 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IRecordInfo*)Unsafe.AsPointer(ref this), ppTypeInfo); 307 internal unsafe winmdroot.Foundation.HRESULT GetField(void* pvData, string szFieldName, out winmdroot.System.Variant.VARIANT pvarField) 313 winmdroot.Foundation.HRESULT __result = this.GetField(pvData, szFieldNameLocal, pvarFieldLocal); 322 private static winmdroot.Foundation.HRESULT GetField(IRecordInfo* pThis, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 326 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 335 return (winmdroot.Foundation.HRESULT)ex.HResult; 351 public unsafe winmdroot.Foundation.HRESULT GetField(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 353 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IRecordInfo*)Unsafe.AsPointer(ref this), pvData, szFieldName, pvarField); 357 internal unsafe winmdroot.Foundation.HRESULT GetFieldNoCopy(void* pvData, string szFieldName, out winmdroot.System.Variant.VARIANT pvarField, out void* ppvDataCArray) 365 winmdroot.Foundation.HRESULT __result = this.GetFieldNoCopy(pvData, szFieldNameLocal, pvarFieldLocal, ppvDataCArrayLocal); 375 private static winmdroot.Foundation.HRESULT GetFieldNoCopy(IRecordInfo* pThis, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField, void** ppvDataCArray) 379 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 388 return (winmdroot.Foundation.HRESULT)ex.HResult; 405 public unsafe winmdroot.Foundation.HRESULT GetFieldNoCopy(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField, void** ppvDataCArray) 407 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IRecordInfo*)Unsafe.AsPointer(ref this), pvData, szFieldName, pvarField, ppvDataCArray); 411 internal unsafe winmdroot.Foundation.HRESULT PutField(uint wFlags, void* pvData, string szFieldName, in winmdroot.System.Variant.VARIANT pvarField) 417 winmdroot.Foundation.HRESULT __result = this.PutField(wFlags, pvData, szFieldNameLocal, pvarFieldLocal); 426 private static winmdroot.Foundation.HRESULT PutField(IRecordInfo* pThis, uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 430 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 439 return (winmdroot.Foundation.HRESULT)ex.HResult; 458 public unsafe winmdroot.Foundation.HRESULT PutField(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 460 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,uint ,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IRecordInfo*)Unsafe.AsPointer(ref this), wFlags, pvData, szFieldName, pvarField); 464 internal unsafe winmdroot.Foundation.HRESULT PutFieldNoCopy(uint wFlags, void* pvData, string szFieldName, in winmdroot.System.Variant.VARIANT pvarField) 470 winmdroot.Foundation.HRESULT __result = this.PutFieldNoCopy(wFlags, pvData, szFieldNameLocal, pvarFieldLocal); 479 private static winmdroot.Foundation.HRESULT PutFieldNoCopy(IRecordInfo* pThis, uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 483 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 492 return (winmdroot.Foundation.HRESULT)ex.HResult; 508 public unsafe winmdroot.Foundation.HRESULT PutFieldNoCopy(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField) 510 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,uint ,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IRecordInfo*)Unsafe.AsPointer(ref this), wFlags, pvData, szFieldName, pvarField); 514 internal unsafe winmdroot.Foundation.HRESULT GetFieldNames(ref uint pcNames, winmdroot.Foundation.BSTR* rgBstrNames) 518 winmdroot.Foundation.HRESULT __result = this.GetFieldNames(pcNamesLocal, rgBstrNames); 526 private static winmdroot.Foundation.HRESULT GetFieldNames(IRecordInfo* pThis, uint* pcNames, winmdroot.Foundation.BSTR* rgBstrNames) 530 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 539 return (winmdroot.Foundation.HRESULT)ex.HResult; 557 public unsafe winmdroot.Foundation.HRESULT GetFieldNames(uint* pcNames, winmdroot.Foundation.BSTR* rgBstrNames) 559 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IRecordInfo*)Unsafe.AsPointer(ref this), pcNames, rgBstrNames); 569 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 601 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 624 internal unsafe winmdroot.Foundation.HRESULT RecordCreateCopy(void* pvSource, out void* ppvDest) 628 winmdroot.Foundation.HRESULT __result = this.RecordCreateCopy(pvSource, ppvDestLocal); 636 private static winmdroot.Foundation.HRESULT RecordCreateCopy(IRecordInfo* pThis, void* pvSource, void** ppvDest) 640 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 649 return (winmdroot.Foundation.HRESULT)ex.HResult; 661 public unsafe winmdroot.Foundation.HRESULT RecordCreateCopy(void* pvSource, void** ppvDest) 663 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IRecordInfo*)Unsafe.AsPointer(ref this), pvSource, ppvDest); 669 private static winmdroot.Foundation.HRESULT RecordDestroy(IRecordInfo* pThis, void* pvRecord) 673 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 682 return (winmdroot.Foundation.HRESULT)ex.HResult; 696 public unsafe winmdroot.Foundation.HRESULT RecordDestroy(void* pvRecord) 698 return ((delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IRecordInfo*)Unsafe.AsPointer(ref this), pvRecord); 701 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 705 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 722 internal delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 728 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT> RecordInit_4; 730 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT> RecordClear_5; 732 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void* ,winmdroot.Foundation.HRESULT> RecordCopy_6; 734 internal delegate *unmanaged [Stdcall]<IRecordInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetGuid_7; 736 internal delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetName_8; 738 internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.HRESULT> GetSize_9; 740 internal delegate *unmanaged [Stdcall]<IRecordInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_10; 742 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetField_11; 744 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,void** ,winmdroot.Foundation.HRESULT> GetFieldNoCopy_12; 746 internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint ,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> PutField_13; 748 internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint ,void* ,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> PutFieldNoCopy_14; 750 internal delegate *unmanaged [Stdcall]<IRecordInfo*,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetFieldNames_15; 756 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,void** ,winmdroot.Foundation.HRESULT> RecordCreateCopy_18; 758 internal delegate *unmanaged [Stdcall]<IRecordInfo*,void* ,winmdroot.Foundation.HRESULT> RecordDestroy_19; 799 unsafe winmdroot.Foundation.HRESULT RecordInit(void* pvNew); 802 unsafe winmdroot.Foundation.HRESULT RecordClear(void* pvExisting); 805 unsafe winmdroot.Foundation.HRESULT RecordCopy(void* pvExisting, void* pvNew); 808 unsafe winmdroot.Foundation.HRESULT GetGuid(global::System.Guid* pguid); 811 unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pbstrName); 814 unsafe winmdroot.Foundation.HRESULT GetSize(uint* pcbSize); 817 unsafe winmdroot.Foundation.HRESULT GetTypeInfo(winmdroot.System.Com.ITypeInfo** ppTypeInfo); 820 unsafe winmdroot.Foundation.HRESULT GetField(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField); 823 unsafe winmdroot.Foundation.HRESULT GetFieldNoCopy(void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField, void** ppvDataCArray); 826 unsafe winmdroot.Foundation.HRESULT PutField(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField); 829 unsafe winmdroot.Foundation.HRESULT PutFieldNoCopy(uint wFlags, void* pvData, winmdroot.Foundation.PCWSTR szFieldName, winmdroot.System.Variant.VARIANT* pvarField); 832 unsafe winmdroot.Foundation.HRESULT GetFieldNames(uint* pcNames, winmdroot.Foundation.BSTR* rgBstrNames); 841 unsafe winmdroot.Foundation.HRESULT RecordCreateCopy(void* pvSource, void** ppvDest); 844 unsafe winmdroot.Foundation.HRESULT RecordDestroy(void* pvRecord);
Windows.Win32.IRunningObjectTable.g.cs (62)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRunningObjectTable*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT Register(winmdroot.System.Com.ROT_FLAGS grfFlags, winmdroot.System.Com.IUnknown* punkObject, winmdroot.System.Com.IMoniker* pmkObjectName, out uint pdwRegister) 60 winmdroot.Foundation.HRESULT __result = this.Register(grfFlags, punkObject, pmkObjectName, pdwRegisterLocal); 68 private static winmdroot.Foundation.HRESULT Register(IRunningObjectTable* pThis, winmdroot.System.Com.ROT_FLAGS grfFlags, winmdroot.System.Com.IUnknown* punkObject, winmdroot.System.Com.IMoniker* pmkObjectName, uint* pdwRegister) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 104 public unsafe winmdroot.Foundation.HRESULT Register(winmdroot.System.Com.ROT_FLAGS grfFlags, winmdroot.System.Com.IUnknown* punkObject, winmdroot.System.Com.IMoniker* pmkObjectName, uint* pdwRegister) 106 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.ROT_FLAGS ,winmdroot.System.Com.IUnknown* ,winmdroot.System.Com.IMoniker* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRunningObjectTable*)Unsafe.AsPointer(ref this), grfFlags, punkObject, pmkObjectName, pdwRegister); 112 private static winmdroot.Foundation.HRESULT Revoke(IRunningObjectTable* pThis, uint dwRegister) 116 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 125 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 public winmdroot.Foundation.HRESULT Revoke(uint dwRegister) 139 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRunningObjectTable*)Unsafe.AsPointer(ref this), dwRegister); 145 private static winmdroot.Foundation.HRESULT IsRunning(IRunningObjectTable* pThis, winmdroot.System.Com.IMoniker* pmkObjectName) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return (winmdroot.Foundation.HRESULT)ex.HResult; 169 public unsafe winmdroot.Foundation.HRESULT IsRunning(winmdroot.System.Com.IMoniker* pmkObjectName) 171 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRunningObjectTable*)Unsafe.AsPointer(ref this), pmkObjectName); 177 private static winmdroot.Foundation.HRESULT GetObject(IRunningObjectTable* pThis, winmdroot.System.Com.IMoniker* pmkObjectName, winmdroot.System.Com.IUnknown** ppunkObject) 181 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 205 public unsafe winmdroot.Foundation.HRESULT GetObject(winmdroot.System.Com.IMoniker* pmkObjectName, winmdroot.System.Com.IUnknown** ppunkObject) 207 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IRunningObjectTable*)Unsafe.AsPointer(ref this), pmkObjectName, ppunkObject); 211 internal unsafe winmdroot.Foundation.HRESULT NoteChangeTime(uint dwRegister, in global::System.Runtime.InteropServices.ComTypes.FILETIME pfiletime) 215 winmdroot.Foundation.HRESULT __result = this.NoteChangeTime(dwRegister, pfiletimeLocal); 223 private static winmdroot.Foundation.HRESULT NoteChangeTime(IRunningObjectTable* pThis, uint dwRegister, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime) 227 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return (winmdroot.Foundation.HRESULT)ex.HResult; 250 public unsafe winmdroot.Foundation.HRESULT NoteChangeTime(uint dwRegister, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime) 252 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRunningObjectTable*)Unsafe.AsPointer(ref this), dwRegister, pfiletime); 256 internal unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IMoniker* pmkObjectName, out global::System.Runtime.InteropServices.ComTypes.FILETIME pfiletime) 260 winmdroot.Foundation.HRESULT __result = this.GetTimeOfLastChange(pmkObjectName, pfiletimeLocal); 268 private static winmdroot.Foundation.HRESULT GetTimeOfLastChange(IRunningObjectTable* pThis, winmdroot.System.Com.IMoniker* pmkObjectName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime) 272 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 281 return (winmdroot.Foundation.HRESULT)ex.HResult; 296 public unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IMoniker* pmkObjectName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime) 298 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IRunningObjectTable*)Unsafe.AsPointer(ref this), pmkObjectName, pfiletime); 304 private static winmdroot.Foundation.HRESULT EnumRunning(IRunningObjectTable* pThis, winmdroot.System.Com.IEnumMoniker** ppenumMoniker) 308 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return (winmdroot.Foundation.HRESULT)ex.HResult; 328 public unsafe winmdroot.Foundation.HRESULT EnumRunning(winmdroot.System.Com.IEnumMoniker** ppenumMoniker) 330 return ((delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IRunningObjectTable*)Unsafe.AsPointer(ref this), ppenumMoniker); 333 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 337 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 354 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 360 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.ROT_FLAGS ,winmdroot.System.Com.IUnknown* ,winmdroot.System.Com.IMoniker* ,uint* ,winmdroot.Foundation.HRESULT> Register_4; 362 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,winmdroot.Foundation.HRESULT> Revoke_5; 364 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT> IsRunning_6; 366 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetObject_7; 368 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,uint ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT> NoteChangeTime_8; 370 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IMoniker* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT> GetTimeOfLastChange_9; 372 internal delegate *unmanaged [Stdcall]<IRunningObjectTable*,winmdroot.System.Com.IEnumMoniker** ,winmdroot.Foundation.HRESULT> EnumRunning_10; 405 unsafe winmdroot.Foundation.HRESULT Register(winmdroot.System.Com.ROT_FLAGS grfFlags, winmdroot.System.Com.IUnknown* punkObject, winmdroot.System.Com.IMoniker* pmkObjectName, uint* pdwRegister); 408winmdroot.Foundation.HRESULT Revoke(uint dwRegister); 411 unsafe winmdroot.Foundation.HRESULT IsRunning(winmdroot.System.Com.IMoniker* pmkObjectName); 414 unsafe winmdroot.Foundation.HRESULT GetObject(winmdroot.System.Com.IMoniker* pmkObjectName, winmdroot.System.Com.IUnknown** ppunkObject); 417 unsafe winmdroot.Foundation.HRESULT NoteChangeTime(uint dwRegister, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime); 420 unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(winmdroot.System.Com.IMoniker* pmkObjectName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pfiletime); 423 unsafe winmdroot.Foundation.HRESULT EnumRunning(winmdroot.System.Com.IEnumMoniker** ppenumMoniker);
Windows.Win32.ISequentialStream.g.cs (21)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ISequentialStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISequentialStream*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Read(ISequentialStream* pThis, void* pv, uint cb, [Optional] uint* pcbRead) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 public unsafe winmdroot.Foundation.HRESULT Read(void* pv, uint cb, [Optional] uint* pcbRead) 91 return ((delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ISequentialStream*)Unsafe.AsPointer(ref this), pv, cb, pcbRead); 97 private static winmdroot.Foundation.HRESULT Write(ISequentialStream* pThis, void* pv, uint cb, [Optional] uint* pcbWritten) 101 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 110 return (winmdroot.Foundation.HRESULT)ex.HResult; 125 public unsafe winmdroot.Foundation.HRESULT Write(void* pv, uint cb, [Optional] uint* pcbWritten) 127 return ((delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ISequentialStream*)Unsafe.AsPointer(ref this), pv, cb, pcbWritten); 130 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 134 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 151 internal delegate *unmanaged [Stdcall]<ISequentialStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 157 internal delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> Read_4; 159 internal delegate *unmanaged [Stdcall]<ISequentialStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> Write_5; 187 unsafe winmdroot.Foundation.HRESULT Read(void* pv, uint cb, [Optional] uint* pcbRead); 190 unsafe winmdroot.Foundation.HRESULT Write(void* pv, uint cb, [Optional] uint* pcbWritten);
Windows.Win32.IServiceProvider.g.cs (16)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IServiceProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IServiceProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 55 internal unsafe winmdroot.Foundation.HRESULT QueryService(in global::System.Guid guidService, in global::System.Guid riid, out void* ppvObject) 63 winmdroot.Foundation.HRESULT __result = this.QueryService(guidServiceLocal, riidLocal, ppvObjectLocal); 73 private static winmdroot.Foundation.HRESULT QueryService(IServiceProvider* pThis, global::System.Guid* guidService, global::System.Guid* riid, void** ppvObject) 77 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 86 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT QueryService(global::System.Guid* guidService, global::System.Guid* riid, void** ppvObject) 98 return ((delegate *unmanaged [Stdcall]<IServiceProvider*,global::System.Guid* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IServiceProvider*)Unsafe.AsPointer(ref this), guidService, riid, ppvObject); 101 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 105 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 122 internal delegate *unmanaged [Stdcall]<IServiceProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 128 internal delegate *unmanaged [Stdcall]<IServiceProvider*,global::System.Guid* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryService_4; 154 unsafe winmdroot.Foundation.HRESULT QueryService(global::System.Guid* guidService, global::System.Guid* riid, void** ppvObject);
Windows.Win32.IStorage.g.cs (136)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IStorage*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT CreateStream(string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm) 60 winmdroot.Foundation.HRESULT __result = this.CreateStream(pwcsNameLocal, grfMode, reserved1, reserved2, ppstm); 68 private static winmdroot.Foundation.HRESULT CreateStream(IStorage* pThis, winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 102 public unsafe winmdroot.Foundation.HRESULT CreateStream(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm) 104 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.STGM ,uint ,uint ,winmdroot.System.Com.IStream** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, grfMode, reserved1, reserved2, ppstm); 108 internal unsafe winmdroot.Foundation.HRESULT OpenStream(string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved2, winmdroot.System.Com.IStream** ppstm) 112 winmdroot.Foundation.HRESULT __result = this.OpenStream(pwcsNameLocal, default, grfMode, reserved2, ppstm); 120 private static winmdroot.Foundation.HRESULT OpenStream(IStorage* pThis, winmdroot.Foundation.PCWSTR pwcsName, [Optional] void* reserved1, winmdroot.System.Com.STGM grfMode, uint reserved2, winmdroot.System.Com.IStream** ppstm) 124 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 133 return (winmdroot.Foundation.HRESULT)ex.HResult; 150 public unsafe winmdroot.Foundation.HRESULT OpenStream(winmdroot.Foundation.PCWSTR pwcsName, [Optional] void* reserved1, winmdroot.System.Com.STGM grfMode, uint reserved2, winmdroot.System.Com.IStream** ppstm) 152 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,void* ,winmdroot.System.Com.STGM ,uint ,winmdroot.System.Com.IStream** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, reserved1, grfMode, reserved2, ppstm); 156 internal unsafe winmdroot.Foundation.HRESULT CreateStorage(string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.StructuredStorage.IStorage** ppstg) 160 winmdroot.Foundation.HRESULT __result = this.CreateStorage(pwcsNameLocal, grfMode, reserved1, reserved2, ppstg); 168 private static winmdroot.Foundation.HRESULT CreateStorage(IStorage* pThis, winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.StructuredStorage.IStorage** ppstg) 172 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 181 return (winmdroot.Foundation.HRESULT)ex.HResult; 202 public unsafe winmdroot.Foundation.HRESULT CreateStorage(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.StructuredStorage.IStorage** ppstg) 204 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.STGM ,uint ,uint ,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, grfMode, reserved1, reserved2, ppstg); 208 internal unsafe winmdroot.Foundation.HRESULT OpenStorage(string pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, in ushort* snbExclude, uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstg) 214 winmdroot.Foundation.HRESULT __result = this.OpenStorage(pwcsNameLocal, pstgPriority, grfMode, snbExcludeLocal, reserved, ppstg); 223 private static winmdroot.Foundation.HRESULT OpenStorage(IStorage* pThis, winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, ushort** snbExclude, uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstg) 227 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return (winmdroot.Foundation.HRESULT)ex.HResult; 257 public unsafe winmdroot.Foundation.HRESULT OpenStorage(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, ushort** snbExclude, uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstg) 259 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.System.Com.STGM ,ushort** ,uint ,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, pstgPriority, grfMode, snbExclude, reserved, ppstg); 263 internal unsafe winmdroot.Foundation.HRESULT CopyTo(ReadOnlySpan<global::System.Guid> rgiidExclude, ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest) 267 winmdroot.Foundation.HRESULT __result = this.CopyTo((uint )rgiidExclude.Length, rgiidExcludeLocal, snbExclude, pstgDest); 275 private static winmdroot.Foundation.HRESULT CopyTo(IStorage* pThis, uint ciidExclude, [Optional] global::System.Guid* rgiidExclude, [Optional] ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest) 279 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 288 return (winmdroot.Foundation.HRESULT)ex.HResult; 315 public unsafe winmdroot.Foundation.HRESULT CopyTo(uint ciidExclude, [Optional] global::System.Guid* rgiidExclude, [Optional] ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest) 317 return ((delegate *unmanaged [Stdcall]<IStorage*,uint ,global::System.Guid* ,ushort** ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IStorage*)Unsafe.AsPointer(ref this), ciidExclude, rgiidExclude, snbExclude, pstgDest); 321 internal unsafe winmdroot.Foundation.HRESULT MoveElementTo(string pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, string pwcsNewName, uint grfFlags) 327 winmdroot.Foundation.HRESULT __result = this.MoveElementTo(pwcsNameLocal, pstgDest, pwcsNewNameLocal, grfFlags); 336 private static winmdroot.Foundation.HRESULT MoveElementTo(IStorage* pThis, winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, winmdroot.Foundation.PCWSTR pwcsNewName, uint grfFlags) 340 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 349 return (winmdroot.Foundation.HRESULT)ex.HResult; 368 public unsafe winmdroot.Foundation.HRESULT MoveElementTo(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, winmdroot.Foundation.PCWSTR pwcsNewName, uint grfFlags) 370 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.PCWSTR ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, pstgDest, pwcsNewName, grfFlags); 376 private static winmdroot.Foundation.HRESULT Commit(IStorage* pThis, uint grfCommitFlags) 380 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 389 return (winmdroot.Foundation.HRESULT)ex.HResult; 406 public winmdroot.Foundation.HRESULT Commit(uint grfCommitFlags) 408 return ((delegate *unmanaged [Stdcall]<IStorage*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IStorage*)Unsafe.AsPointer(ref this), grfCommitFlags); 414 private static winmdroot.Foundation.HRESULT Revert(IStorage* pThis) 418 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 427 return (winmdroot.Foundation.HRESULT)ex.HResult; 439 public winmdroot.Foundation.HRESULT Revert() 441 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IStorage*)Unsafe.AsPointer(ref this)); 445 internal unsafe winmdroot.Foundation.HRESULT EnumElements(winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 447 winmdroot.Foundation.HRESULT __result = this.EnumElements(default, default, default, ppenum); 454 private static winmdroot.Foundation.HRESULT EnumElements(IStorage* pThis, uint reserved1, [Optional] void* reserved2, uint reserved3, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 458 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 467 return (winmdroot.Foundation.HRESULT)ex.HResult; 486 public unsafe winmdroot.Foundation.HRESULT EnumElements(uint reserved1, [Optional] void* reserved2, uint reserved3, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 488 return ((delegate *unmanaged [Stdcall]<IStorage*,uint ,void* ,uint ,winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IStorage*)Unsafe.AsPointer(ref this), reserved1, reserved2, reserved3, ppenum); 492 internal unsafe winmdroot.Foundation.HRESULT DestroyElement(string pwcsName) 496 winmdroot.Foundation.HRESULT __result = this.DestroyElement(pwcsNameLocal); 504 private static winmdroot.Foundation.HRESULT DestroyElement(IStorage* pThis, winmdroot.Foundation.PCWSTR pwcsName) 508 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 517 return (winmdroot.Foundation.HRESULT)ex.HResult; 530 public winmdroot.Foundation.HRESULT DestroyElement(winmdroot.Foundation.PCWSTR pwcsName) 532 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IStorage*)Unsafe.AsPointer(ref this), pwcsName); 536 internal unsafe winmdroot.Foundation.HRESULT RenameElement(string pwcsOldName, string pwcsNewName) 542 winmdroot.Foundation.HRESULT __result = this.RenameElement(pwcsOldNameLocal, pwcsNewNameLocal); 551 private static winmdroot.Foundation.HRESULT RenameElement(IStorage* pThis, winmdroot.Foundation.PCWSTR pwcsOldName, winmdroot.Foundation.PCWSTR pwcsNewName) 555 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 564 return (winmdroot.Foundation.HRESULT)ex.HResult; 584 public winmdroot.Foundation.HRESULT RenameElement(winmdroot.Foundation.PCWSTR pwcsOldName, winmdroot.Foundation.PCWSTR pwcsNewName) 586 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IStorage*)Unsafe.AsPointer(ref this), pwcsOldName, pwcsNewName); 590 internal unsafe winmdroot.Foundation.HRESULT SetElementTimes(string pwcsName, in global::System.Runtime.InteropServices.ComTypes.FILETIME pctime, in global::System.Runtime.InteropServices.ComTypes.FILETIME patime, in global::System.Runtime.InteropServices.ComTypes.FILETIME pmtime) 600 winmdroot.Foundation.HRESULT __result = this.SetElementTimes(pwcsNameLocal, pctimeLocal, patimeLocal, pmtimeLocal); 611 private static winmdroot.Foundation.HRESULT SetElementTimes(IStorage* pThis, winmdroot.Foundation.PCWSTR pwcsName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pctime, global::System.Runtime.InteropServices.ComTypes.FILETIME* patime, global::System.Runtime.InteropServices.ComTypes.FILETIME* pmtime) 615 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 624 return (winmdroot.Foundation.HRESULT)ex.HResult; 640 public unsafe winmdroot.Foundation.HRESULT SetElementTimes(winmdroot.Foundation.PCWSTR pwcsName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pctime, global::System.Runtime.InteropServices.ComTypes.FILETIME* patime, global::System.Runtime.InteropServices.ComTypes.FILETIME* pmtime) 642 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IStorage*)Unsafe.AsPointer(ref this), pwcsName, pctime, patime, pmtime); 646 internal unsafe winmdroot.Foundation.HRESULT SetClass(in global::System.Guid clsid) 650 winmdroot.Foundation.HRESULT __result = this.SetClass(clsidLocal); 658 private static winmdroot.Foundation.HRESULT SetClass(IStorage* pThis, global::System.Guid* clsid) 662 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 671 return (winmdroot.Foundation.HRESULT)ex.HResult; 684 public unsafe winmdroot.Foundation.HRESULT SetClass(global::System.Guid* clsid) 686 return ((delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IStorage*)Unsafe.AsPointer(ref this), clsid); 692 private static winmdroot.Foundation.HRESULT SetStateBits(IStorage* pThis, uint grfStateBits, uint grfMask) 696 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 705 return (winmdroot.Foundation.HRESULT)ex.HResult; 716 public winmdroot.Foundation.HRESULT SetStateBits(uint grfStateBits, uint grfMask) 718 return ((delegate *unmanaged [Stdcall]<IStorage*,uint ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IStorage*)Unsafe.AsPointer(ref this), grfStateBits, grfMask); 722 internal unsafe winmdroot.Foundation.HRESULT Stat(out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag) 726 winmdroot.Foundation.HRESULT __result = this.Stat(pstatstgLocal, grfStatFlag); 734 private static winmdroot.Foundation.HRESULT Stat(IStorage* pThis, winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag) 738 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 747 return (winmdroot.Foundation.HRESULT)ex.HResult; 767 public unsafe winmdroot.Foundation.HRESULT Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag) 769 return ((delegate *unmanaged [Stdcall]<IStorage*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IStorage*)Unsafe.AsPointer(ref this), pstatstg, grfStatFlag); 772 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 776 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 793 internal delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 799 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.STGM ,uint ,uint ,winmdroot.System.Com.IStream** ,winmdroot.Foundation.HRESULT> CreateStream_4; 801 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,void* ,winmdroot.System.Com.STGM ,uint ,winmdroot.System.Com.IStream** ,winmdroot.Foundation.HRESULT> OpenStream_5; 803 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.STGM ,uint ,uint ,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.HRESULT> CreateStorage_6; 805 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.System.Com.STGM ,ushort** ,uint ,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.HRESULT> OpenStorage_7; 807 internal delegate *unmanaged [Stdcall]<IStorage*,uint ,global::System.Guid* ,ushort** ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT> CopyTo_8; 809 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.PCWSTR ,uint ,winmdroot.Foundation.HRESULT> MoveElementTo_9; 811 internal delegate *unmanaged [Stdcall]<IStorage*,uint ,winmdroot.Foundation.HRESULT> Commit_10; 813 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.HRESULT> Revert_11; 815 internal delegate *unmanaged [Stdcall]<IStorage*,uint ,void* ,uint ,winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ,winmdroot.Foundation.HRESULT> EnumElements_12; 817 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> DestroyElement_13; 819 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> RenameElement_14; 821 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.Foundation.PCWSTR ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,global::System.Runtime.InteropServices.ComTypes.FILETIME* ,winmdroot.Foundation.HRESULT> SetElementTimes_15; 823 internal delegate *unmanaged [Stdcall]<IStorage*,global::System.Guid* ,winmdroot.Foundation.HRESULT> SetClass_16; 825 internal delegate *unmanaged [Stdcall]<IStorage*,uint ,uint ,winmdroot.Foundation.HRESULT> SetStateBits_17; 827 internal delegate *unmanaged [Stdcall]<IStorage*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT> Stat_18; 868 unsafe winmdroot.Foundation.HRESULT CreateStream(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm); 871 unsafe winmdroot.Foundation.HRESULT OpenStream(winmdroot.Foundation.PCWSTR pwcsName, [Optional] void* reserved1, winmdroot.System.Com.STGM grfMode, uint reserved2, winmdroot.System.Com.IStream** ppstm); 874 unsafe winmdroot.Foundation.HRESULT CreateStorage(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.StructuredStorage.IStorage** ppstg); 877 unsafe winmdroot.Foundation.HRESULT OpenStorage(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, ushort** snbExclude, uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstg); 880 unsafe winmdroot.Foundation.HRESULT CopyTo(uint ciidExclude, [Optional] global::System.Guid* rgiidExclude, [Optional] ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest); 883 unsafe winmdroot.Foundation.HRESULT MoveElementTo(winmdroot.Foundation.PCWSTR pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, winmdroot.Foundation.PCWSTR pwcsNewName, uint grfFlags); 886winmdroot.Foundation.HRESULT Commit(uint grfCommitFlags); 889winmdroot.Foundation.HRESULT Revert(); 892 unsafe winmdroot.Foundation.HRESULT EnumElements(uint reserved1, [Optional] void* reserved2, uint reserved3, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum); 895winmdroot.Foundation.HRESULT DestroyElement(winmdroot.Foundation.PCWSTR pwcsName); 898winmdroot.Foundation.HRESULT RenameElement(winmdroot.Foundation.PCWSTR pwcsOldName, winmdroot.Foundation.PCWSTR pwcsNewName); 901 unsafe winmdroot.Foundation.HRESULT SetElementTimes(winmdroot.Foundation.PCWSTR pwcsName, global::System.Runtime.InteropServices.ComTypes.FILETIME* pctime, global::System.Runtime.InteropServices.ComTypes.FILETIME* patime, global::System.Runtime.InteropServices.ComTypes.FILETIME* pmtime); 904 unsafe winmdroot.Foundation.HRESULT SetClass(global::System.Guid* clsid); 907winmdroot.Foundation.HRESULT SetStateBits(uint grfStateBits, uint grfMask); 910 unsafe winmdroot.Foundation.HRESULT Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag);
Windows.Win32.IStream.g.cs (86)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IStream*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Read(IStream* pThis, void* pv, uint cb, [Optional] uint* pcbRead) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 75 public unsafe winmdroot.Foundation.HRESULT Read(void* pv, uint cb, [Optional] uint* pcbRead) 77 return ((delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IStream*)Unsafe.AsPointer(ref this), pv, cb, pcbRead); 83 private static winmdroot.Foundation.HRESULT Write(IStream* pThis, void* pv, uint cb, [Optional] uint* pcbWritten) 87 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 96 return (winmdroot.Foundation.HRESULT)ex.HResult; 100 public unsafe winmdroot.Foundation.HRESULT Write(void* pv, uint cb, [Optional] uint* pcbWritten) 102 return ((delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IStream*)Unsafe.AsPointer(ref this), pv, cb, pcbWritten); 108 private static winmdroot.Foundation.HRESULT Seek(IStream* pThis, long dlibMove, global::System.IO.SeekOrigin dwOrigin, [Optional] ulong* plibNewPosition) 112 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 121 return (winmdroot.Foundation.HRESULT)ex.HResult; 139 public unsafe winmdroot.Foundation.HRESULT Seek(long dlibMove, global::System.IO.SeekOrigin dwOrigin, [Optional] ulong* plibNewPosition) 141 return ((delegate *unmanaged [Stdcall]<IStream*,long ,global::System.IO.SeekOrigin ,ulong* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IStream*)Unsafe.AsPointer(ref this), dlibMove, dwOrigin, plibNewPosition); 147 private static winmdroot.Foundation.HRESULT SetSize(IStream* pThis, ulong libNewSize) 151 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 160 return (winmdroot.Foundation.HRESULT)ex.HResult; 173 public winmdroot.Foundation.HRESULT SetSize(ulong libNewSize) 175 return ((delegate *unmanaged [Stdcall]<IStream*,ulong ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IStream*)Unsafe.AsPointer(ref this), libNewSize); 181 private static winmdroot.Foundation.HRESULT CopyTo(IStream* pThis, winmdroot.System.Com.IStream* pstm, ulong cb, [Optional] ulong* pcbRead, [Optional] ulong* pcbWritten) 185 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 194 return (winmdroot.Foundation.HRESULT)ex.HResult; 210 public unsafe winmdroot.Foundation.HRESULT CopyTo(winmdroot.System.Com.IStream* pstm, ulong cb, [Optional] ulong* pcbRead, [Optional] ulong* pcbWritten) 212 return ((delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.IStream* ,ulong ,ulong* ,ulong* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IStream*)Unsafe.AsPointer(ref this), pstm, cb, pcbRead, pcbWritten); 218 private static winmdroot.Foundation.HRESULT Commit(IStream* pThis, uint grfCommitFlags) 222 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 231 return (winmdroot.Foundation.HRESULT)ex.HResult; 247 public winmdroot.Foundation.HRESULT Commit(uint grfCommitFlags) 249 return ((delegate *unmanaged [Stdcall]<IStream*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IStream*)Unsafe.AsPointer(ref this), grfCommitFlags); 255 private static winmdroot.Foundation.HRESULT Revert(IStream* pThis) 259 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 268 return (winmdroot.Foundation.HRESULT)ex.HResult; 277 public winmdroot.Foundation.HRESULT Revert() 279 return ((delegate *unmanaged [Stdcall]<IStream*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IStream*)Unsafe.AsPointer(ref this)); 285 private static winmdroot.Foundation.HRESULT LockRegion(IStream* pThis, ulong libOffset, ulong cb, uint dwLockType) 289 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 298 return (winmdroot.Foundation.HRESULT)ex.HResult; 313 public winmdroot.Foundation.HRESULT LockRegion(ulong libOffset, ulong cb, uint dwLockType) 315 return ((delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IStream*)Unsafe.AsPointer(ref this), libOffset, cb, dwLockType); 321 private static winmdroot.Foundation.HRESULT UnlockRegion(IStream* pThis, ulong libOffset, ulong cb, uint dwLockType) 325 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 334 return (winmdroot.Foundation.HRESULT)ex.HResult; 349 public winmdroot.Foundation.HRESULT UnlockRegion(ulong libOffset, ulong cb, uint dwLockType) 351 return ((delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IStream*)Unsafe.AsPointer(ref this), libOffset, cb, dwLockType); 355 internal unsafe winmdroot.Foundation.HRESULT Stat(out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag) 359 winmdroot.Foundation.HRESULT __result = this.Stat(pstatstgLocal, grfStatFlag); 367 private static winmdroot.Foundation.HRESULT Stat(IStream* pThis, winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag) 371 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 380 return (winmdroot.Foundation.HRESULT)ex.HResult; 400 public unsafe winmdroot.Foundation.HRESULT Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag) 402 return ((delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IStream*)Unsafe.AsPointer(ref this), pstatstg, grfStatFlag); 408 private static winmdroot.Foundation.HRESULT Clone(IStream* pThis, winmdroot.System.Com.IStream** ppstm) 412 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 421 return (winmdroot.Foundation.HRESULT)ex.HResult; 437 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IStream** ppstm) 439 return ((delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.IStream** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IStream*)Unsafe.AsPointer(ref this), ppstm); 442 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 446 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 463 internal delegate *unmanaged [Stdcall]<IStream*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 469 internal delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> Read_4; 471 internal delegate *unmanaged [Stdcall]<IStream*,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> Write_5; 473 internal delegate *unmanaged [Stdcall]<IStream*,long ,global::System.IO.SeekOrigin ,ulong* ,winmdroot.Foundation.HRESULT> Seek_6; 475 internal delegate *unmanaged [Stdcall]<IStream*,ulong ,winmdroot.Foundation.HRESULT> SetSize_7; 477 internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.IStream* ,ulong ,ulong* ,ulong* ,winmdroot.Foundation.HRESULT> CopyTo_8; 479 internal delegate *unmanaged [Stdcall]<IStream*,uint ,winmdroot.Foundation.HRESULT> Commit_9; 481 internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.Foundation.HRESULT> Revert_10; 483 internal delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT> LockRegion_11; 485 internal delegate *unmanaged [Stdcall]<IStream*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT> UnlockRegion_12; 487 internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT> Stat_13; 489 internal delegate *unmanaged [Stdcall]<IStream*,winmdroot.System.Com.IStream** ,winmdroot.Foundation.HRESULT> Clone_14; 526 unsafe new winmdroot.Foundation.HRESULT Read(void* pv, uint cb, [Optional] uint* pcbRead); 529 unsafe new winmdroot.Foundation.HRESULT Write(void* pv, uint cb, [Optional] uint* pcbWritten); 532 unsafe winmdroot.Foundation.HRESULT Seek(long dlibMove, global::System.IO.SeekOrigin dwOrigin, [Optional] ulong* plibNewPosition); 535winmdroot.Foundation.HRESULT SetSize(ulong libNewSize); 538 unsafe winmdroot.Foundation.HRESULT CopyTo(winmdroot.System.Com.IStream* pstm, ulong cb, [Optional] ulong* pcbRead, [Optional] ulong* pcbWritten); 541winmdroot.Foundation.HRESULT Commit(uint grfCommitFlags); 544winmdroot.Foundation.HRESULT Revert(); 547winmdroot.Foundation.HRESULT LockRegion(ulong libOffset, ulong cb, uint dwLockType); 550winmdroot.Foundation.HRESULT UnlockRegion(ulong libOffset, ulong cb, uint dwLockType); 553 unsafe winmdroot.Foundation.HRESULT Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag); 556 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IStream** ppstm);
Windows.Win32.ITypeComp.g.cs (23)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<ITypeComp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITypeComp*)Unsafe.AsPointer(ref this), riid, ppvObject); 55 internal unsafe winmdroot.Foundation.HRESULT Bind(winmdroot.Foundation.PWSTR szName, uint lHashVal, ushort wFlags, winmdroot.System.Com.ITypeInfo** ppTInfo, out winmdroot.System.Com.DESCKIND pDescKind, out winmdroot.System.Com.BINDPTR pBindPtr) 61 winmdroot.Foundation.HRESULT __result = this.Bind(szName, lHashVal, wFlags, ppTInfo, pDescKindLocal, pBindPtrLocal); 70 private static winmdroot.Foundation.HRESULT Bind(ITypeComp* pThis, winmdroot.Foundation.PWSTR szName, uint lHashVal, ushort wFlags, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.DESCKIND* pDescKind, winmdroot.System.Com.BINDPTR* pBindPtr) 74 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 107 public unsafe winmdroot.Foundation.HRESULT Bind(winmdroot.Foundation.PWSTR szName, uint lHashVal, ushort wFlags, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.DESCKIND* pDescKind, winmdroot.System.Com.BINDPTR* pBindPtr) 109 return ((delegate *unmanaged [Stdcall]<ITypeComp*,winmdroot.Foundation.PWSTR ,uint ,ushort ,winmdroot.System.Com.ITypeInfo** ,winmdroot.System.Com.DESCKIND* ,winmdroot.System.Com.BINDPTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITypeComp*)Unsafe.AsPointer(ref this), szName, lHashVal, wFlags, ppTInfo, pDescKind, pBindPtr); 115 private static winmdroot.Foundation.HRESULT BindType(ITypeComp* pThis, winmdroot.Foundation.PWSTR szName, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.ITypeComp** ppTComp) 119 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 142 public unsafe winmdroot.Foundation.HRESULT BindType(winmdroot.Foundation.PWSTR szName, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.ITypeComp** ppTComp) 144 return ((delegate *unmanaged [Stdcall]<ITypeComp*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITypeComp*)Unsafe.AsPointer(ref this), szName, lHashVal, ppTInfo, ppTComp); 147 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 151 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 168 internal delegate *unmanaged [Stdcall]<ITypeComp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 174 internal delegate *unmanaged [Stdcall]<ITypeComp*,winmdroot.Foundation.PWSTR ,uint ,ushort ,winmdroot.System.Com.ITypeInfo** ,winmdroot.System.Com.DESCKIND* ,winmdroot.System.Com.BINDPTR* ,winmdroot.Foundation.HRESULT> Bind_4; 176 internal delegate *unmanaged [Stdcall]<ITypeComp*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.HRESULT> BindType_5; 203 unsafe winmdroot.Foundation.HRESULT Bind(winmdroot.Foundation.PWSTR szName, uint lHashVal, ushort wFlags, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.DESCKIND* pDescKind, winmdroot.System.Com.BINDPTR* pBindPtr); 206 unsafe winmdroot.Foundation.HRESULT BindType(winmdroot.Foundation.PWSTR szName, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, winmdroot.System.Com.ITypeComp** ppTComp);
Windows.Win32.ITypeInfo.g.cs (148)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITypeInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 55 internal unsafe winmdroot.Foundation.HRESULT GetTypeAttr(out winmdroot.System.Com.TYPEATTR* ppTypeAttr) 59 winmdroot.Foundation.HRESULT __result = this.GetTypeAttr(ppTypeAttrLocal); 67 private static winmdroot.Foundation.HRESULT GetTypeAttr(ITypeInfo* pThis, winmdroot.System.Com.TYPEATTR** ppTypeAttr) 71 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 80 return (winmdroot.Foundation.HRESULT)ex.HResult; 91 public unsafe winmdroot.Foundation.HRESULT GetTypeAttr(winmdroot.System.Com.TYPEATTR** ppTypeAttr) 93 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.TYPEATTR** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITypeInfo*)Unsafe.AsPointer(ref this), ppTypeAttr); 99 private static winmdroot.Foundation.HRESULT GetTypeComp(ITypeInfo* pThis, winmdroot.System.Com.ITypeComp** ppTComp) 103 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 112 return (winmdroot.Foundation.HRESULT)ex.HResult; 123 public unsafe winmdroot.Foundation.HRESULT GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp) 125 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITypeInfo*)Unsafe.AsPointer(ref this), ppTComp); 129 internal unsafe winmdroot.Foundation.HRESULT GetFuncDesc(uint index, out winmdroot.System.Com.FUNCDESC* ppFuncDesc) 133 winmdroot.Foundation.HRESULT __result = this.GetFuncDesc(index, ppFuncDescLocal); 141 private static winmdroot.Foundation.HRESULT GetFuncDesc(ITypeInfo* pThis, uint index, winmdroot.System.Com.FUNCDESC** ppFuncDesc) 145 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 154 return (winmdroot.Foundation.HRESULT)ex.HResult; 166 public unsafe winmdroot.Foundation.HRESULT GetFuncDesc(uint index, winmdroot.System.Com.FUNCDESC** ppFuncDesc) 168 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.FUNCDESC** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITypeInfo*)Unsafe.AsPointer(ref this), index, ppFuncDesc); 172 internal unsafe winmdroot.Foundation.HRESULT GetVarDesc(uint index, out winmdroot.System.Com.VARDESC* ppVarDesc) 176 winmdroot.Foundation.HRESULT __result = this.GetVarDesc(index, ppVarDescLocal); 184 private static winmdroot.Foundation.HRESULT GetVarDesc(ITypeInfo* pThis, uint index, winmdroot.System.Com.VARDESC** ppVarDesc) 188 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 197 return (winmdroot.Foundation.HRESULT)ex.HResult; 209 public unsafe winmdroot.Foundation.HRESULT GetVarDesc(uint index, winmdroot.System.Com.VARDESC** ppVarDesc) 211 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.VARDESC** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITypeInfo*)Unsafe.AsPointer(ref this), index, ppVarDesc); 215 internal unsafe winmdroot.Foundation.HRESULT GetNames(int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, out uint pcNames) 219 winmdroot.Foundation.HRESULT __result = this.GetNames(memid, rgBstrNames, cMaxNames, pcNamesLocal); 227 private static winmdroot.Foundation.HRESULT GetNames(ITypeInfo* pThis, int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, uint* pcNames) 231 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 260 public unsafe winmdroot.Foundation.HRESULT GetNames(int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, uint* pcNames) 262 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); 266 internal unsafe winmdroot.Foundation.HRESULT GetRefTypeOfImplType(uint index, out uint pRefType) 270 winmdroot.Foundation.HRESULT __result = this.GetRefTypeOfImplType(index, pRefTypeLocal); 278 private static winmdroot.Foundation.HRESULT GetRefTypeOfImplType(ITypeInfo* pThis, uint index, uint* pRefType) 282 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 291 return (winmdroot.Foundation.HRESULT)ex.HResult; 303 public unsafe winmdroot.Foundation.HRESULT GetRefTypeOfImplType(uint index, uint* pRefType) 305 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITypeInfo*)Unsafe.AsPointer(ref this), index, pRefType); 309 internal unsafe winmdroot.Foundation.HRESULT GetImplTypeFlags(uint index, out winmdroot.System.Com.IMPLTYPEFLAGS pImplTypeFlags) 313 winmdroot.Foundation.HRESULT __result = this.GetImplTypeFlags(index, pImplTypeFlagsLocal); 321 private static winmdroot.Foundation.HRESULT GetImplTypeFlags(ITypeInfo* pThis, uint index, winmdroot.System.Com.IMPLTYPEFLAGS* pImplTypeFlags) 325 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 334 return (winmdroot.Foundation.HRESULT)ex.HResult; 346 public unsafe winmdroot.Foundation.HRESULT GetImplTypeFlags(uint index, winmdroot.System.Com.IMPLTYPEFLAGS* pImplTypeFlags) 348 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.IMPLTYPEFLAGS* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITypeInfo*)Unsafe.AsPointer(ref this), index, pImplTypeFlags); 352 internal unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, Span<int> pMemId) 359 winmdroot.Foundation.HRESULT __result = this.GetIDsOfNames(rgszNamesLocal, (uint )pMemId.Length, pMemIdLocal); 368 private static winmdroot.Foundation.HRESULT GetIDsOfNames(ITypeInfo* pThis, winmdroot.Foundation.PWSTR* rgszNames, uint cNames, int* pMemId) 372 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 381 return (winmdroot.Foundation.HRESULT)ex.HResult; 398 public unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(winmdroot.Foundation.PWSTR* rgszNames, uint cNames, int* pMemId) 400 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.Foundation.PWSTR* ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITypeInfo*)Unsafe.AsPointer(ref this), rgszNames, cNames, pMemId); 404 internal unsafe winmdroot.Foundation.HRESULT Invoke(void* pvInstance, int memid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, ref winmdroot.System.Com.DISPPARAMS pDispParams, out winmdroot.System.Variant.VARIANT pVarResult, out winmdroot.System.Com.EXCEPINFO pExcepInfo, out uint puArgErr) 414 winmdroot.Foundation.HRESULT __result = this.Invoke(pvInstance, memid, wFlags, pDispParamsLocal, pVarResultLocal, pExcepInfoLocal, puArgErrLocal); 425 private static winmdroot.Foundation.HRESULT Invoke(ITypeInfo* pThis, void* pvInstance, int memid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, winmdroot.System.Com.DISPPARAMS* pDispParams, winmdroot.System.Variant.VARIANT* pVarResult, winmdroot.System.Com.EXCEPINFO* pExcepInfo, uint* puArgErr) 429 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 438 return (winmdroot.Foundation.HRESULT)ex.HResult; 465 public unsafe winmdroot.Foundation.HRESULT Invoke(void* pvInstance, int memid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, winmdroot.System.Com.DISPPARAMS* pDispParams, winmdroot.System.Variant.VARIANT* pVarResult, winmdroot.System.Com.EXCEPINFO* pExcepInfo, uint* puArgErr) 467 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,void* ,int ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITypeInfo*)Unsafe.AsPointer(ref this), pvInstance, memid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr); 471 internal unsafe winmdroot.Foundation.HRESULT GetDocumentation(int memid, winmdroot.Foundation.BSTR* pBstrName, winmdroot.Foundation.BSTR* pBstrDocString, out uint pdwHelpContext, winmdroot.Foundation.BSTR* pBstrHelpFile) 475 winmdroot.Foundation.HRESULT __result = this.GetDocumentation(memid, pBstrName, pBstrDocString, pdwHelpContextLocal, pBstrHelpFile); 483 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) 487 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 496 return (winmdroot.Foundation.HRESULT)ex.HResult; 516 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) 518 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); 522 internal unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, winmdroot.Foundation.BSTR* pBstrDllName, winmdroot.Foundation.BSTR* pBstrName, out ushort pwOrdinal) 526 winmdroot.Foundation.HRESULT __result = this.GetDllEntry(memid, invKind, pBstrDllName, pBstrName, pwOrdinalLocal); 534 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) 538 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 547 return (winmdroot.Foundation.HRESULT)ex.HResult; 567 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) 569 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); 575 private static winmdroot.Foundation.HRESULT GetRefTypeInfo(ITypeInfo* pThis, uint hRefType, winmdroot.System.Com.ITypeInfo** ppTInfo) 579 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 588 return (winmdroot.Foundation.HRESULT)ex.HResult; 600 public unsafe winmdroot.Foundation.HRESULT GetRefTypeInfo(uint hRefType, winmdroot.System.Com.ITypeInfo** ppTInfo) 602 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITypeInfo*)Unsafe.AsPointer(ref this), hRefType, ppTInfo); 606 internal unsafe winmdroot.Foundation.HRESULT AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, out void* ppv) 610 winmdroot.Foundation.HRESULT __result = this.AddressOfMember(memid, invKind, ppvLocal); 618 private static winmdroot.Foundation.HRESULT AddressOfMember(ITypeInfo* pThis, int memid, winmdroot.System.Com.INVOKEKIND invKind, void** ppv) 622 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 631 return (winmdroot.Foundation.HRESULT)ex.HResult; 647 public unsafe winmdroot.Foundation.HRESULT AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, void** ppv) 649 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, invKind, ppv); 653 internal unsafe winmdroot.Foundation.HRESULT CreateInstance(winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObj) 659 winmdroot.Foundation.HRESULT __result = this.CreateInstance(pUnkOuter, riidLocal, ppvObjLocal); 668 private static winmdroot.Foundation.HRESULT CreateInstance(ITypeInfo* pThis, winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObj) 672 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 681 return (winmdroot.Foundation.HRESULT)ex.HResult; 694 public unsafe winmdroot.Foundation.HRESULT CreateInstance(winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObj) 696 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITypeInfo*)Unsafe.AsPointer(ref this), pUnkOuter, riid, ppvObj); 702 private static winmdroot.Foundation.HRESULT GetMops(ITypeInfo* pThis, int memid, winmdroot.Foundation.BSTR* pBstrMops) 706 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 715 return (winmdroot.Foundation.HRESULT)ex.HResult; 731 public unsafe winmdroot.Foundation.HRESULT GetMops(int memid, winmdroot.Foundation.BSTR* pBstrMops) 733 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITypeInfo*)Unsafe.AsPointer(ref this), memid, pBstrMops); 737 internal unsafe winmdroot.Foundation.HRESULT GetContainingTypeLib(winmdroot.System.Com.ITypeLib** ppTLib, out uint pIndex) 741 winmdroot.Foundation.HRESULT __result = this.GetContainingTypeLib(ppTLib, pIndexLocal); 749 private static winmdroot.Foundation.HRESULT GetContainingTypeLib(ITypeInfo* pThis, winmdroot.System.Com.ITypeLib** ppTLib, uint* pIndex) 753 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 762 return (winmdroot.Foundation.HRESULT)ex.HResult; 776 public unsafe winmdroot.Foundation.HRESULT GetContainingTypeLib(winmdroot.System.Com.ITypeLib** ppTLib, uint* pIndex) 778 return ((delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeLib** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITypeInfo*)Unsafe.AsPointer(ref this), ppTLib, pIndex); 797 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 834 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 871 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 892 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 896 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 913 internal delegate *unmanaged [Stdcall]<ITypeInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 919 internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.TYPEATTR** ,winmdroot.Foundation.HRESULT> GetTypeAttr_4; 921 internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.HRESULT> GetTypeComp_5; 923 internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.FUNCDESC** ,winmdroot.Foundation.HRESULT> GetFuncDesc_6; 925 internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.VARDESC** ,winmdroot.Foundation.HRESULT> GetVarDesc_7; 927 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,uint ,uint* ,winmdroot.Foundation.HRESULT> GetNames_8; 929 internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,uint* ,winmdroot.Foundation.HRESULT> GetRefTypeOfImplType_9; 931 internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.IMPLTYPEFLAGS* ,winmdroot.Foundation.HRESULT> GetImplTypeFlags_10; 933 internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.Foundation.PWSTR* ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_11; 935 internal delegate *unmanaged [Stdcall]<ITypeInfo*,void* ,int ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_12; 937 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDocumentation_13; 939 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,ushort* ,winmdroot.Foundation.HRESULT> GetDllEntry_14; 941 internal delegate *unmanaged [Stdcall]<ITypeInfo*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetRefTypeInfo_15; 943 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.System.Com.INVOKEKIND ,void** ,winmdroot.Foundation.HRESULT> AddressOfMember_16; 945 internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> CreateInstance_17; 947 internal delegate *unmanaged [Stdcall]<ITypeInfo*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetMops_18; 949 internal delegate *unmanaged [Stdcall]<ITypeInfo*,winmdroot.System.Com.ITypeLib** ,uint* ,winmdroot.Foundation.HRESULT> GetContainingTypeLib_19; 999 unsafe winmdroot.Foundation.HRESULT GetTypeAttr(winmdroot.System.Com.TYPEATTR** ppTypeAttr); 1002 unsafe winmdroot.Foundation.HRESULT GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp); 1005 unsafe winmdroot.Foundation.HRESULT GetFuncDesc(uint index, winmdroot.System.Com.FUNCDESC** ppFuncDesc); 1008 unsafe winmdroot.Foundation.HRESULT GetVarDesc(uint index, winmdroot.System.Com.VARDESC** ppVarDesc); 1011 unsafe winmdroot.Foundation.HRESULT GetNames(int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, uint* pcNames); 1014 unsafe winmdroot.Foundation.HRESULT GetRefTypeOfImplType(uint index, uint* pRefType); 1017 unsafe winmdroot.Foundation.HRESULT GetImplTypeFlags(uint index, winmdroot.System.Com.IMPLTYPEFLAGS* pImplTypeFlags); 1020 unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(winmdroot.Foundation.PWSTR* rgszNames, uint cNames, int* pMemId); 1023 unsafe winmdroot.Foundation.HRESULT Invoke(void* pvInstance, int memid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, winmdroot.System.Com.DISPPARAMS* pDispParams, winmdroot.System.Variant.VARIANT* pVarResult, winmdroot.System.Com.EXCEPINFO* pExcepInfo, uint* puArgErr); 1026 unsafe winmdroot.Foundation.HRESULT GetDocumentation(int memid, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile); 1029 unsafe winmdroot.Foundation.HRESULT GetDllEntry(int memid, winmdroot.System.Com.INVOKEKIND invKind, [Optional] winmdroot.Foundation.BSTR* pBstrDllName, [Optional] winmdroot.Foundation.BSTR* pBstrName, ushort* pwOrdinal); 1032 unsafe winmdroot.Foundation.HRESULT GetRefTypeInfo(uint hRefType, winmdroot.System.Com.ITypeInfo** ppTInfo); 1035 unsafe winmdroot.Foundation.HRESULT AddressOfMember(int memid, winmdroot.System.Com.INVOKEKIND invKind, void** ppv); 1038 unsafe winmdroot.Foundation.HRESULT CreateInstance(winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObj); 1041 unsafe winmdroot.Foundation.HRESULT GetMops(int memid, winmdroot.Foundation.BSTR* pBstrMops); 1044 unsafe winmdroot.Foundation.HRESULT GetContainingTypeLib(winmdroot.System.Com.ITypeLib** ppTLib, uint* pIndex);
Windows.Win32.ITypeLib.g.cs (77)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITypeLib*)Unsafe.AsPointer(ref this), riid, ppvObject); 61 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 85 private static winmdroot.Foundation.HRESULT GetTypeInfo(ITypeLib* pThis, uint index, winmdroot.System.Com.ITypeInfo** ppTInfo) 89 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 98 return (winmdroot.Foundation.HRESULT)ex.HResult; 110 public unsafe winmdroot.Foundation.HRESULT GetTypeInfo(uint index, winmdroot.System.Com.ITypeInfo** ppTInfo) 112 return ((delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITypeLib*)Unsafe.AsPointer(ref this), index, ppTInfo); 116 internal unsafe winmdroot.Foundation.HRESULT GetTypeInfoType(uint index, out winmdroot.System.Com.TYPEKIND pTKind) 120 winmdroot.Foundation.HRESULT __result = this.GetTypeInfoType(index, pTKindLocal); 128 private static winmdroot.Foundation.HRESULT GetTypeInfoType(ITypeLib* pThis, uint index, winmdroot.System.Com.TYPEKIND* pTKind) 132 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 141 return (winmdroot.Foundation.HRESULT)ex.HResult; 155 public unsafe winmdroot.Foundation.HRESULT GetTypeInfoType(uint index, winmdroot.System.Com.TYPEKIND* pTKind) 157 return ((delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.TYPEKIND* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITypeLib*)Unsafe.AsPointer(ref this), index, pTKind); 161 internal unsafe winmdroot.Foundation.HRESULT GetTypeInfoOfGuid(in global::System.Guid guid, winmdroot.System.Com.ITypeInfo** ppTinfo) 165 winmdroot.Foundation.HRESULT __result = this.GetTypeInfoOfGuid(guidLocal, ppTinfo); 173 private static winmdroot.Foundation.HRESULT GetTypeInfoOfGuid(ITypeLib* pThis, global::System.Guid* guid, winmdroot.System.Com.ITypeInfo** ppTinfo) 177 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 186 return (winmdroot.Foundation.HRESULT)ex.HResult; 200 public unsafe winmdroot.Foundation.HRESULT GetTypeInfoOfGuid(global::System.Guid* guid, winmdroot.System.Com.ITypeInfo** ppTinfo) 202 return ((delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITypeLib*)Unsafe.AsPointer(ref this), guid, ppTinfo); 206 internal unsafe winmdroot.Foundation.HRESULT GetLibAttr(out winmdroot.System.Com.TLIBATTR* ppTLibAttr) 210 winmdroot.Foundation.HRESULT __result = this.GetLibAttr(ppTLibAttrLocal); 218 private static winmdroot.Foundation.HRESULT GetLibAttr(ITypeLib* pThis, winmdroot.System.Com.TLIBATTR** ppTLibAttr) 222 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 231 return (winmdroot.Foundation.HRESULT)ex.HResult; 242 public unsafe winmdroot.Foundation.HRESULT GetLibAttr(winmdroot.System.Com.TLIBATTR** ppTLibAttr) 244 return ((delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.TLIBATTR** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITypeLib*)Unsafe.AsPointer(ref this), ppTLibAttr); 250 private static winmdroot.Foundation.HRESULT GetTypeComp(ITypeLib* pThis, winmdroot.System.Com.ITypeComp** ppTComp) 254 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 263 return (winmdroot.Foundation.HRESULT)ex.HResult; 278 public unsafe winmdroot.Foundation.HRESULT GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp) 280 return ((delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITypeLib*)Unsafe.AsPointer(ref this), ppTComp); 284 internal unsafe winmdroot.Foundation.HRESULT GetDocumentation(int index, winmdroot.Foundation.BSTR* pBstrName, winmdroot.Foundation.BSTR* pBstrDocString, out uint pdwHelpContext, winmdroot.Foundation.BSTR* pBstrHelpFile) 288 winmdroot.Foundation.HRESULT __result = this.GetDocumentation(index, pBstrName, pBstrDocString, pdwHelpContextLocal, pBstrHelpFile); 296 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) 300 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 309 return (winmdroot.Foundation.HRESULT)ex.HResult; 324 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) 326 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); 330 internal unsafe winmdroot.Foundation.HRESULT IsName(ref Span<char>szNameBuf, uint lHashVal, out winmdroot.Foundation.BOOL pfName) 338 winmdroot.Foundation.HRESULT __result = this.IsName(wstrszNameBuf, lHashVal, pfNameLocal); 348 private static winmdroot.Foundation.HRESULT IsName(ITypeLib* pThis, winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.Foundation.BOOL* pfName) 352 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 361 return (winmdroot.Foundation.HRESULT)ex.HResult; 376 public unsafe winmdroot.Foundation.HRESULT IsName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.Foundation.BOOL* pfName) 378 return ((delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITypeLib*)Unsafe.AsPointer(ref this), szNameBuf, lHashVal, pfName); 382 internal unsafe winmdroot.Foundation.HRESULT FindName(ref Span<char>szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ref ushort pcFound) 390 winmdroot.Foundation.HRESULT __result = this.FindName(wstrszNameBuf, lHashVal, ppTInfo, rgMemId, pcFoundLocal); 400 private static winmdroot.Foundation.HRESULT FindName(ITypeLib* pThis, winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ushort* pcFound) 404 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 413 return (winmdroot.Foundation.HRESULT)ex.HResult; 431 public unsafe winmdroot.Foundation.HRESULT FindName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ushort* pcFound) 433 return ((delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.System.Com.ITypeInfo** ,int* ,ushort* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITypeLib*)Unsafe.AsPointer(ref this), szNameBuf, lHashVal, ppTInfo, rgMemId, pcFound); 452 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 473 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 477 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 494 internal delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 502 internal delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 504 internal delegate *unmanaged [Stdcall]<ITypeLib*,uint ,winmdroot.System.Com.TYPEKIND* ,winmdroot.Foundation.HRESULT> GetTypeInfoType_6; 506 internal delegate *unmanaged [Stdcall]<ITypeLib*,global::System.Guid* ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfoOfGuid_7; 508 internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.TLIBATTR** ,winmdroot.Foundation.HRESULT> GetLibAttr_8; 510 internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.System.Com.ITypeComp** ,winmdroot.Foundation.HRESULT> GetTypeComp_9; 512 internal delegate *unmanaged [Stdcall]<ITypeLib*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.BSTR* ,uint* ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDocumentation_10; 514 internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> IsName_11; 516 internal delegate *unmanaged [Stdcall]<ITypeLib*,winmdroot.Foundation.PWSTR ,uint ,winmdroot.System.Com.ITypeInfo** ,int* ,ushort* ,winmdroot.Foundation.HRESULT> FindName_12; 556 unsafe winmdroot.Foundation.HRESULT GetTypeInfo(uint index, winmdroot.System.Com.ITypeInfo** ppTInfo); 559 unsafe winmdroot.Foundation.HRESULT GetTypeInfoType(uint index, winmdroot.System.Com.TYPEKIND* pTKind); 562 unsafe winmdroot.Foundation.HRESULT GetTypeInfoOfGuid(global::System.Guid* guid, winmdroot.System.Com.ITypeInfo** ppTinfo); 565 unsafe winmdroot.Foundation.HRESULT GetLibAttr(winmdroot.System.Com.TLIBATTR** ppTLibAttr); 568 unsafe winmdroot.Foundation.HRESULT GetTypeComp(winmdroot.System.Com.ITypeComp** ppTComp); 571 unsafe winmdroot.Foundation.HRESULT GetDocumentation(int index, [Optional] winmdroot.Foundation.BSTR* pBstrName, [Optional] winmdroot.Foundation.BSTR* pBstrDocString, uint* pdwHelpContext, [Optional] winmdroot.Foundation.BSTR* pBstrHelpFile); 574 unsafe winmdroot.Foundation.HRESULT IsName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.Foundation.BOOL* pfName); 577 unsafe winmdroot.Foundation.HRESULT FindName(winmdroot.Foundation.PWSTR szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ushort* pcFound);
Windows.Win32.IUnknown.g.cs (7)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 53 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 55 return ((delegate *unmanaged [Stdcall]<IUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUnknown*)Unsafe.AsPointer(ref this), riid, ppvObject); 80 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 84 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 101 internal delegate *unmanaged [Stdcall]<IUnknown*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1;
Windows.Win32.PInvokeCore.OLE32.dll.g.cs (19)
27 internal static unsafe global::Windows.Win32.Foundation.HRESULT CoCreateInstance<T>(in Guid rclsid, global::Windows.Win32.System.Com.IUnknown* pUnkOuter, global::Windows.Win32.System.Com.CLSCTX dwClsContext, out T* ppv) 31 global::Windows.Win32.Foundation.HRESULT hr = CoCreateInstance(rclsid, pUnkOuter, dwClsContext, typeof(T).GUID, out void* o); 38 internal static unsafe winmdroot.Foundation.HRESULT CoCreateInstance(in global::System.Guid rclsid, winmdroot.System.Com.IUnknown* pUnkOuter, winmdroot.System.Com.CLSCTX dwClsContext, in global::System.Guid riid, out void* ppv) 46 winmdroot.Foundation.HRESULT __result = PInvokeCore.CoCreateInstance(rclsidLocal, pUnkOuter, dwClsContext, riidLocal, ppvLocal); 71 internal static extern unsafe winmdroot.Foundation.HRESULT CoCreateInstance(global::System.Guid* rclsid, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, winmdroot.System.Com.CLSCTX dwClsContext, global::System.Guid* riid, void** ppv); 75 internal static unsafe winmdroot.Foundation.HRESULT DoDragDrop(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.Ole.IDropSource* pDropSource, winmdroot.System.Ole.DROPEFFECT dwOKEffects, out winmdroot.System.Ole.DROPEFFECT pdwEffect) 79 winmdroot.Foundation.HRESULT __result = PInvokeCore.DoDragDrop(pDataObj, pDropSource, dwOKEffects, pdwEffectLocal); 101 internal static extern unsafe winmdroot.Foundation.HRESULT DoDragDrop(winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.Ole.IDropSource* pDropSource, winmdroot.System.Ole.DROPEFFECT dwOKEffects, winmdroot.System.Ole.DROPEFFECT* pdwEffect); 124 internal static extern winmdroot.Foundation.HRESULT OleFlushClipboard(); 140 internal static extern unsafe winmdroot.Foundation.HRESULT OleGetClipboard(winmdroot.System.Com.IDataObject** ppDataObj); 144 internal static unsafe winmdroot.Foundation.HRESULT OleInitialize() 146 winmdroot.Foundation.HRESULT __result = PInvokeCore.OleInitialize(default); 164 internal static extern unsafe winmdroot.Foundation.HRESULT OleInitialize(void* pvReserved); 179 internal static extern unsafe winmdroot.Foundation.HRESULT OleSetClipboard(winmdroot.System.Com.IDataObject* pDataObj); 192 internal static unsafe winmdroot.Foundation.HRESULT PropVariantClear(ref winmdroot.System.Com.StructuredStorage.PROPVARIANT pvar) 196 winmdroot.Foundation.HRESULT __result = PInvokeCore.PropVariantClear(pvarLocal); 213 internal static extern unsafe winmdroot.Foundation.HRESULT PropVariantClear(winmdroot.System.Com.StructuredStorage.PROPVARIANT* pvar); 228 internal static extern unsafe winmdroot.Foundation.HRESULT RegisterDragDrop(winmdroot.Foundation.HWND hwnd, winmdroot.System.Ole.IDropTarget* pDropTarget); 262 internal static extern winmdroot.Foundation.HRESULT RevokeDragDrop(winmdroot.Foundation.HWND hwnd);
Windows.Win32.PInvokeCore.OLEAUT32.dll.g.cs (19)
35 internal static unsafe winmdroot.Foundation.HRESULT LoadRegTypeLib(in global::System.Guid rguid, ushort wVerMajor, ushort wVerMinor, uint lcid, winmdroot.System.Com.ITypeLib** pptlib) 39 winmdroot.Foundation.HRESULT __result = PInvokeCore.LoadRegTypeLib(rguidLocal, wVerMajor, wVerMinor, lcid, pptlib); 62 internal static extern unsafe winmdroot.Foundation.HRESULT LoadRegTypeLib(global::System.Guid* rguid, ushort wVerMajor, ushort wVerMinor, uint lcid, winmdroot.System.Com.ITypeLib** pptlib); 66 internal static unsafe winmdroot.Foundation.HRESULT OleCreatePictureIndirect(in winmdroot.System.Ole.PICTDESC lpPictDesc, in global::System.Guid riid, winmdroot.Foundation.BOOL fOwn, out void* lplpvObj) 74 winmdroot.Foundation.HRESULT __result = PInvokeCore.OleCreatePictureIndirect(lpPictDescLocal, riidLocal, fOwn, lplpvObjLocal); 93 internal static extern unsafe winmdroot.Foundation.HRESULT OleCreatePictureIndirect(winmdroot.System.Ole.PICTDESC* lpPictDesc, global::System.Guid* riid, winmdroot.Foundation.BOOL fOwn, void** lplpvObj); 144 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayDestroy(winmdroot.System.Com.SAFEARRAY* psa); 147 internal static unsafe winmdroot.Foundation.HRESULT SafeArrayGetElement(winmdroot.System.Com.SAFEARRAY* psa, in int rgIndices, void* pv) 151 winmdroot.Foundation.HRESULT __result = PInvokeCore.SafeArrayGetElement(psa, rgIndicesLocal, pv); 166 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayGetElement(winmdroot.System.Com.SAFEARRAY* psa, int* rgIndices, void* pv); 179 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayGetRecordInfo(winmdroot.System.Com.SAFEARRAY* psa, winmdroot.System.Ole.IRecordInfo** prinfo); 182 internal static unsafe winmdroot.Foundation.HRESULT SafeArrayGetVartype(winmdroot.System.Com.SAFEARRAY* psa, out winmdroot.System.Variant.VARENUM pvt) 186 winmdroot.Foundation.HRESULT __result = PInvokeCore.SafeArrayGetVartype(psa, pvtLocal); 203 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayGetVartype(winmdroot.System.Com.SAFEARRAY* psa, winmdroot.System.Variant.VARENUM* pvt); 216 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayLock(winmdroot.System.Com.SAFEARRAY* psa); 219 internal static unsafe winmdroot.Foundation.HRESULT SafeArrayPutElement(winmdroot.System.Com.SAFEARRAY* psa, in int rgIndices, void* pv) 223 winmdroot.Foundation.HRESULT __result = PInvokeCore.SafeArrayPutElement(psa, rgIndicesLocal, pv); 241 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayPutElement(winmdroot.System.Com.SAFEARRAY* psa, int* rgIndices, void* pv); 251 internal static extern unsafe winmdroot.Foundation.HRESULT SafeArrayUnlock(winmdroot.System.Com.SAFEARRAY* psa);
Windows.Win32.System_Com_IBindCtx_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT SetBindOptions(this winmdroot.System.Com.IBindCtx.Interface @this, in winmdroot.System.Com.BIND_OPTS pbindopts) 28 winmdroot.Foundation.HRESULT __result = @this.SetBindOptions(pbindoptsLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetBindOptions(this winmdroot.System.Com.IBindCtx.Interface @this, ref winmdroot.System.Com.BIND_OPTS pbindopts) 38 winmdroot.Foundation.HRESULT __result = @this.GetBindOptions(pbindoptsLocal);
Windows.Win32.System_Com_IDataObject_Extensions.g.cs (12)
24 internal static unsafe winmdroot.Foundation.HRESULT GetData(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatetcIn, out winmdroot.System.Com.STGMEDIUM pmedium) 30 winmdroot.Foundation.HRESULT __result = @this.GetData(pformatetcInLocal, pmediumLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT GetDataHere(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatetc, ref winmdroot.System.Com.STGMEDIUM pmedium) 43 winmdroot.Foundation.HRESULT __result = @this.GetDataHere(pformatetcLocal, pmediumLocal); 50 internal static unsafe winmdroot.Foundation.HRESULT QueryGetData(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatetc) 54 winmdroot.Foundation.HRESULT __result = @this.QueryGetData(pformatetcLocal); 60 internal static unsafe winmdroot.Foundation.HRESULT GetCanonicalFormatEtc(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatectIn, out winmdroot.System.Com.FORMATETC pformatetcOut) 66 winmdroot.Foundation.HRESULT __result = @this.GetCanonicalFormatEtc(pformatectInLocal, pformatetcOutLocal); 73 internal static unsafe winmdroot.Foundation.HRESULT SetData(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatetc, in winmdroot.System.Com.STGMEDIUM pmedium, winmdroot.Foundation.BOOL fRelease) 79 winmdroot.Foundation.HRESULT __result = @this.SetData(pformatetcLocal, pmediumLocal, fRelease); 86 internal static unsafe winmdroot.Foundation.HRESULT DAdvise(this winmdroot.System.Com.IDataObject.Interface @this, in winmdroot.System.Com.FORMATETC pformatetc, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink, out uint pdwConnection) 92 winmdroot.Foundation.HRESULT __result = @this.DAdvise(pformatetcLocal, advf, pAdvSink, pdwConnectionLocal);
Windows.Win32.System_Com_IEnumFORMATETC_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumFORMATETC.Interface @this, Span<winmdroot.System.Com.FORMATETC> rgelt, uint* pceltFetched) 28 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
Windows.Win32.System_Com_IEnumSTATDATA_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumSTATDATA.Interface @this, Span<winmdroot.System.Com.STATDATA> rgelt, uint* pceltFetched) 28 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
Windows.Win32.System_Com_IEnumString_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumString.Interface @this, Span<winmdroot.Foundation.PWSTR> rgelt, uint* pceltFetched) 28 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
Windows.Win32.System_Com_IGlobalInterfaceTable_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT RegisterInterfaceInGlobal(this winmdroot.System.Com.IGlobalInterfaceTable.Interface @this, winmdroot.System.Com.IUnknown* pUnk, in global::System.Guid riid, out uint pdwCookie) 30 winmdroot.Foundation.HRESULT __result = @this.RegisterInterfaceInGlobal(pUnk, riidLocal, pdwCookieLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT GetInterfaceFromGlobal(this winmdroot.System.Com.IGlobalInterfaceTable.Interface @this, uint dwCookie, in global::System.Guid riid, out void* ppv) 43 winmdroot.Foundation.HRESULT __result = @this.GetInterfaceFromGlobal(dwCookie, riidLocal, ppvLocal);
Windows.Win32.System_Com_IMoniker_Extensions.g.cs (18)
24 internal static unsafe winmdroot.Foundation.HRESULT GetClassID(this winmdroot.System.Com.IMoniker.Interface @this, out global::System.Guid pClassID) 28 winmdroot.Foundation.HRESULT __result = @this.GetClassID(pClassIDLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetSizeMax(this winmdroot.System.Com.IMoniker.Interface @this, out ulong pcbSize) 38 winmdroot.Foundation.HRESULT __result = @this.GetSizeMax(pcbSizeLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT BindToObject(this winmdroot.System.Com.IMoniker.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, in global::System.Guid riidResult, out void* ppvResult) 50 winmdroot.Foundation.HRESULT __result = @this.BindToObject(pbc, pmkToLeft, riidResultLocal, ppvResultLocal); 57 internal static unsafe winmdroot.Foundation.HRESULT BindToStorage(this winmdroot.System.Com.IMoniker.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, in global::System.Guid riid, out void* ppvObj) 63 winmdroot.Foundation.HRESULT __result = @this.BindToStorage(pbc, pmkToLeft, riidLocal, ppvObjLocal); 70 internal static unsafe winmdroot.Foundation.HRESULT Hash(this winmdroot.System.Com.IMoniker.Interface @this, out uint pdwHash) 74 winmdroot.Foundation.HRESULT __result = @this.Hash(pdwHashLocal); 80 internal static unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(this winmdroot.System.Com.IMoniker.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, out global::System.Runtime.InteropServices.ComTypes.FILETIME pFileTime) 84 winmdroot.Foundation.HRESULT __result = @this.GetTimeOfLastChange(pbc, pmkToLeft, pFileTimeLocal); 90 internal static unsafe winmdroot.Foundation.HRESULT GetDisplayName(this winmdroot.System.Com.IMoniker.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, out winmdroot.Foundation.PWSTR ppszDisplayName) 94 winmdroot.Foundation.HRESULT __result = @this.GetDisplayName(pbc, pmkToLeft, ppszDisplayNameLocal); 100 internal static unsafe winmdroot.Foundation.HRESULT ParseDisplayName(this winmdroot.System.Com.IMoniker.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.System.Com.IMoniker* pmkToLeft, winmdroot.Foundation.PWSTR pszDisplayName, out uint pchEaten, winmdroot.System.Com.IMoniker** ppmkOut) 104 winmdroot.Foundation.HRESULT __result = @this.ParseDisplayName(pbc, pmkToLeft, pszDisplayName, pchEatenLocal, ppmkOut); 110 internal static unsafe winmdroot.Foundation.HRESULT IsSystemMoniker(this winmdroot.System.Com.IMoniker.Interface @this, out uint pdwMksys) 114 winmdroot.Foundation.HRESULT __result = @this.IsSystemMoniker(pdwMksysLocal);
Windows.Win32.System_Com_IPersist_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetClassID(this winmdroot.System.Com.IPersist.Interface @this, out global::System.Guid pClassID) 28 winmdroot.Foundation.HRESULT __result = @this.GetClassID(pClassIDLocal);
Windows.Win32.System_Com_IPersistStream_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetClassID(this winmdroot.System.Com.IPersistStream.Interface @this, out global::System.Guid pClassID) 28 winmdroot.Foundation.HRESULT __result = @this.GetClassID(pClassIDLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetSizeMax(this winmdroot.System.Com.IPersistStream.Interface @this, out ulong pcbSize) 38 winmdroot.Foundation.HRESULT __result = @this.GetSizeMax(pcbSizeLocal);
Windows.Win32.System_Com_IRunningObjectTable_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT Register(this winmdroot.System.Com.IRunningObjectTable.Interface @this, winmdroot.System.Com.ROT_FLAGS grfFlags, winmdroot.System.Com.IUnknown* punkObject, winmdroot.System.Com.IMoniker* pmkObjectName, out uint pdwRegister) 28 winmdroot.Foundation.HRESULT __result = @this.Register(grfFlags, punkObject, pmkObjectName, pdwRegisterLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT NoteChangeTime(this winmdroot.System.Com.IRunningObjectTable.Interface @this, uint dwRegister, in global::System.Runtime.InteropServices.ComTypes.FILETIME pfiletime) 38 winmdroot.Foundation.HRESULT __result = @this.NoteChangeTime(dwRegister, pfiletimeLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetTimeOfLastChange(this winmdroot.System.Com.IRunningObjectTable.Interface @this, winmdroot.System.Com.IMoniker* pmkObjectName, out global::System.Runtime.InteropServices.ComTypes.FILETIME pfiletime) 48 winmdroot.Foundation.HRESULT __result = @this.GetTimeOfLastChange(pmkObjectName, pfiletimeLocal);
Windows.Win32.System_Com_IServiceProvider_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT QueryService(this winmdroot.System.Com.IServiceProvider.Interface @this, in global::System.Guid guidService, in global::System.Guid riid, out void* ppvObject) 32 winmdroot.Foundation.HRESULT __result = @this.QueryService(guidServiceLocal, riidLocal, ppvObjectLocal);
Windows.Win32.System_Com_IStream_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Stat(this winmdroot.System.Com.IStream.Interface @this, out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag) 28 winmdroot.Foundation.HRESULT __result = @this.Stat(pstatstgLocal, grfStatFlag);
Windows.Win32.System_Com_ITypeComp_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Bind(this winmdroot.System.Com.ITypeComp.Interface @this, winmdroot.Foundation.PWSTR szName, uint lHashVal, ushort wFlags, winmdroot.System.Com.ITypeInfo** ppTInfo, out winmdroot.System.Com.DESCKIND pDescKind, out winmdroot.System.Com.BINDPTR pBindPtr) 30 winmdroot.Foundation.HRESULT __result = @this.Bind(szName, lHashVal, wFlags, ppTInfo, pDescKindLocal, pBindPtrLocal);
Windows.Win32.System_Com_ITypeInfo_Extensions.g.cs (26)
24 internal static unsafe winmdroot.Foundation.HRESULT GetTypeAttr(this winmdroot.System.Com.ITypeInfo.Interface @this, out winmdroot.System.Com.TYPEATTR* ppTypeAttr) 28 winmdroot.Foundation.HRESULT __result = @this.GetTypeAttr(ppTypeAttrLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetFuncDesc(this winmdroot.System.Com.ITypeInfo.Interface @this, uint index, out winmdroot.System.Com.FUNCDESC* ppFuncDesc) 38 winmdroot.Foundation.HRESULT __result = @this.GetFuncDesc(index, ppFuncDescLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetVarDesc(this winmdroot.System.Com.ITypeInfo.Interface @this, uint index, out winmdroot.System.Com.VARDESC* ppVarDesc) 48 winmdroot.Foundation.HRESULT __result = @this.GetVarDesc(index, ppVarDescLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetNames(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.Foundation.BSTR* rgBstrNames, uint cMaxNames, out uint pcNames) 58 winmdroot.Foundation.HRESULT __result = @this.GetNames(memid, rgBstrNames, cMaxNames, pcNamesLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT GetRefTypeOfImplType(this winmdroot.System.Com.ITypeInfo.Interface @this, uint index, out uint pRefType) 68 winmdroot.Foundation.HRESULT __result = @this.GetRefTypeOfImplType(index, pRefTypeLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT GetImplTypeFlags(this winmdroot.System.Com.ITypeInfo.Interface @this, uint index, out winmdroot.System.Com.IMPLTYPEFLAGS pImplTypeFlags) 78 winmdroot.Foundation.HRESULT __result = @this.GetImplTypeFlags(index, pImplTypeFlagsLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT GetIDsOfNames(this winmdroot.System.Com.ITypeInfo.Interface @this, ReadOnlySpan<winmdroot.Foundation.PWSTR> rgszNames, Span<int> pMemId) 91 winmdroot.Foundation.HRESULT __result = @this.GetIDsOfNames(rgszNamesLocal, (uint )pMemId.Length, pMemIdLocal); 98 internal static unsafe winmdroot.Foundation.HRESULT Invoke(this winmdroot.System.Com.ITypeInfo.Interface @this, void* pvInstance, int memid, winmdroot.System.Com.DISPATCH_FLAGS wFlags, ref winmdroot.System.Com.DISPPARAMS pDispParams, out winmdroot.System.Variant.VARIANT pVarResult, out winmdroot.System.Com.EXCEPINFO pExcepInfo, out uint puArgErr) 108 winmdroot.Foundation.HRESULT __result = @this.Invoke(pvInstance, memid, wFlags, pDispParamsLocal, pVarResultLocal, pExcepInfoLocal, puArgErrLocal); 117 internal static unsafe winmdroot.Foundation.HRESULT GetDocumentation(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.Foundation.BSTR* pBstrName, winmdroot.Foundation.BSTR* pBstrDocString, out uint pdwHelpContext, winmdroot.Foundation.BSTR* pBstrHelpFile) 121 winmdroot.Foundation.HRESULT __result = @this.GetDocumentation(memid, pBstrName, pBstrDocString, pdwHelpContextLocal, pBstrHelpFile); 127 internal static unsafe winmdroot.Foundation.HRESULT GetDllEntry(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.System.Com.INVOKEKIND invKind, winmdroot.Foundation.BSTR* pBstrDllName, winmdroot.Foundation.BSTR* pBstrName, out ushort pwOrdinal) 131 winmdroot.Foundation.HRESULT __result = @this.GetDllEntry(memid, invKind, pBstrDllName, pBstrName, pwOrdinalLocal); 137 internal static unsafe winmdroot.Foundation.HRESULT AddressOfMember(this winmdroot.System.Com.ITypeInfo.Interface @this, int memid, winmdroot.System.Com.INVOKEKIND invKind, out void* ppv) 141 winmdroot.Foundation.HRESULT __result = @this.AddressOfMember(memid, invKind, ppvLocal); 147 internal static unsafe winmdroot.Foundation.HRESULT CreateInstance(this winmdroot.System.Com.ITypeInfo.Interface @this, winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObj) 153 winmdroot.Foundation.HRESULT __result = @this.CreateInstance(pUnkOuter, riidLocal, ppvObjLocal); 160 internal static unsafe winmdroot.Foundation.HRESULT GetContainingTypeLib(this winmdroot.System.Com.ITypeInfo.Interface @this, winmdroot.System.Com.ITypeLib** ppTLib, out uint pIndex) 164 winmdroot.Foundation.HRESULT __result = @this.GetContainingTypeLib(ppTLib, pIndexLocal);
Windows.Win32.System_Com_ITypeLib_Extensions.g.cs (12)
24 internal static unsafe winmdroot.Foundation.HRESULT GetTypeInfoType(this winmdroot.System.Com.ITypeLib.Interface @this, uint index, out winmdroot.System.Com.TYPEKIND pTKind) 28 winmdroot.Foundation.HRESULT __result = @this.GetTypeInfoType(index, pTKindLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetTypeInfoOfGuid(this winmdroot.System.Com.ITypeLib.Interface @this, in global::System.Guid guid, winmdroot.System.Com.ITypeInfo** ppTinfo) 38 winmdroot.Foundation.HRESULT __result = @this.GetTypeInfoOfGuid(guidLocal, ppTinfo); 44 internal static unsafe winmdroot.Foundation.HRESULT GetLibAttr(this winmdroot.System.Com.ITypeLib.Interface @this, out winmdroot.System.Com.TLIBATTR* ppTLibAttr) 48 winmdroot.Foundation.HRESULT __result = @this.GetLibAttr(ppTLibAttrLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetDocumentation(this winmdroot.System.Com.ITypeLib.Interface @this, int index, winmdroot.Foundation.BSTR* pBstrName, winmdroot.Foundation.BSTR* pBstrDocString, out uint pdwHelpContext, winmdroot.Foundation.BSTR* pBstrHelpFile) 58 winmdroot.Foundation.HRESULT __result = @this.GetDocumentation(index, pBstrName, pBstrDocString, pdwHelpContextLocal, pBstrHelpFile); 64 internal static unsafe winmdroot.Foundation.HRESULT IsName(this winmdroot.System.Com.ITypeLib.Interface @this, ref Span<char>szNameBuf, uint lHashVal, out winmdroot.Foundation.BOOL pfName) 72 winmdroot.Foundation.HRESULT __result = @this.IsName(wstrszNameBuf, lHashVal, pfNameLocal); 80 internal static unsafe winmdroot.Foundation.HRESULT FindName(this winmdroot.System.Com.ITypeLib.Interface @this, ref Span<char>szNameBuf, uint lHashVal, winmdroot.System.Com.ITypeInfo** ppTInfo, int* rgMemId, ref ushort pcFound) 88 winmdroot.Foundation.HRESULT __result = @this.FindName(wstrszNameBuf, lHashVal, ppTInfo, rgMemId, pcFoundLocal);
Windows.Win32.System_Com_StructuredStorage_IEnumSTATSTG_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.StructuredStorage.IEnumSTATSTG.Interface @this, Span<winmdroot.System.Com.STATSTG> rgelt, uint* pceltFetched) 28 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
Windows.Win32.System_Com_StructuredStorage_IStorage_Extensions.g.cs (24)
24 internal static unsafe winmdroot.Foundation.HRESULT CreateStream(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.IStream** ppstm) 28 winmdroot.Foundation.HRESULT __result = @this.CreateStream(pwcsNameLocal, grfMode, reserved1, reserved2, ppstm); 34 internal static unsafe winmdroot.Foundation.HRESULT OpenStream(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved2, winmdroot.System.Com.IStream** ppstm) 38 winmdroot.Foundation.HRESULT __result = @this.OpenStream(pwcsNameLocal, default, grfMode, reserved2, ppstm); 44 internal static unsafe winmdroot.Foundation.HRESULT CreateStorage(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, winmdroot.System.Com.STGM grfMode, uint reserved1, uint reserved2, winmdroot.System.Com.StructuredStorage.IStorage** ppstg) 48 winmdroot.Foundation.HRESULT __result = @this.CreateStorage(pwcsNameLocal, grfMode, reserved1, reserved2, ppstg); 54 internal static unsafe winmdroot.Foundation.HRESULT OpenStorage(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, in ushort* snbExclude, uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstg) 60 winmdroot.Foundation.HRESULT __result = @this.OpenStorage(pwcsNameLocal, pstgPriority, grfMode, snbExcludeLocal, reserved, ppstg); 67 internal static unsafe winmdroot.Foundation.HRESULT CopyTo(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, ReadOnlySpan<global::System.Guid> rgiidExclude, ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest) 71 winmdroot.Foundation.HRESULT __result = @this.CopyTo((uint )rgiidExclude.Length, rgiidExcludeLocal, snbExclude, pstgDest); 77 internal static unsafe winmdroot.Foundation.HRESULT MoveElementTo(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, winmdroot.System.Com.StructuredStorage.IStorage* pstgDest, string pwcsNewName, uint grfFlags) 83 winmdroot.Foundation.HRESULT __result = @this.MoveElementTo(pwcsNameLocal, pstgDest, pwcsNewNameLocal, grfFlags); 90 internal static unsafe winmdroot.Foundation.HRESULT EnumElements(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, winmdroot.System.Com.StructuredStorage.IEnumSTATSTG** ppenum) 92 winmdroot.Foundation.HRESULT __result = @this.EnumElements(default, default, default, ppenum); 97 internal static unsafe winmdroot.Foundation.HRESULT DestroyElement(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName) 101 winmdroot.Foundation.HRESULT __result = @this.DestroyElement(pwcsNameLocal); 107 internal static unsafe winmdroot.Foundation.HRESULT RenameElement(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsOldName, string pwcsNewName) 113 winmdroot.Foundation.HRESULT __result = @this.RenameElement(pwcsOldNameLocal, pwcsNewNameLocal); 120 internal static unsafe winmdroot.Foundation.HRESULT SetElementTimes(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, string pwcsName, in global::System.Runtime.InteropServices.ComTypes.FILETIME pctime, in global::System.Runtime.InteropServices.ComTypes.FILETIME patime, in global::System.Runtime.InteropServices.ComTypes.FILETIME pmtime) 130 winmdroot.Foundation.HRESULT __result = @this.SetElementTimes(pwcsNameLocal, pctimeLocal, patimeLocal, pmtimeLocal); 139 internal static unsafe winmdroot.Foundation.HRESULT SetClass(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, in global::System.Guid clsid) 143 winmdroot.Foundation.HRESULT __result = @this.SetClass(clsidLocal); 149 internal static unsafe winmdroot.Foundation.HRESULT Stat(this winmdroot.System.Com.StructuredStorage.IStorage.Interface @this, out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag) 153 winmdroot.Foundation.HRESULT __result = @this.Stat(pstatstgLocal, grfStatFlag);
Windows.Win32.System_Ole_IDispatchEx_Extensions.g.cs (8)
24 internal static unsafe winmdroot.Foundation.HRESULT GetDispID(this winmdroot.System.Ole.IDispatchEx.Interface @this, winmdroot.Foundation.BSTR bstrName, uint grfdex, out int pid) 28 winmdroot.Foundation.HRESULT __result = @this.GetDispID(bstrName, grfdex, pidLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT InvokeEx(this winmdroot.System.Ole.IDispatchEx.Interface @this, int id, uint lcid, ushort wFlags, in winmdroot.System.Com.DISPPARAMS pdp, winmdroot.System.Variant.VARIANT* pvarRes, winmdroot.System.Com.EXCEPINFO* pei, winmdroot.System.Com.IServiceProvider* pspCaller) 38 winmdroot.Foundation.HRESULT __result = @this.InvokeEx(id, lcid, wFlags, pdpLocal, pvarRes, pei, pspCaller); 44 internal static unsafe winmdroot.Foundation.HRESULT GetMemberProperties(this winmdroot.System.Ole.IDispatchEx.Interface @this, int id, uint grfdexFetch, out winmdroot.System.Ole.FDEX_PROP_FLAGS pgrfdex) 48 winmdroot.Foundation.HRESULT __result = @this.GetMemberProperties(id, grfdexFetch, pgrfdexLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetNextDispID(this winmdroot.System.Ole.IDispatchEx.Interface @this, uint grfdex, int id, out int pid) 58 winmdroot.Foundation.HRESULT __result = @this.GetNextDispID(grfdex, id, pidLocal);
Windows.Win32.System_Ole_IDropTarget_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT DragEnter(this winmdroot.System.Ole.IDropTarget.Interface @this, winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect) 28 winmdroot.Foundation.HRESULT __result = @this.DragEnter(pDataObj, grfKeyState, pt, pdwEffectLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT DragOver(this winmdroot.System.Ole.IDropTarget.Interface @this, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect) 38 winmdroot.Foundation.HRESULT __result = @this.DragOver(grfKeyState, pt, pdwEffectLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT Drop(this winmdroot.System.Ole.IDropTarget.Interface @this, winmdroot.System.Com.IDataObject* pDataObj, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.Foundation.POINTL pt, ref winmdroot.System.Ole.DROPEFFECT pdwEffect) 48 winmdroot.Foundation.HRESULT __result = @this.Drop(pDataObj, grfKeyState, pt, pdwEffectLocal);
Windows.Win32.System_Ole_IPicture_Extensions.g.cs (22)
24 internal static unsafe winmdroot.Foundation.HRESULT get_Handle(this winmdroot.System.Ole.IPicture.Interface @this, out winmdroot.System.Ole.OLE_HANDLE pHandle) 28 winmdroot.Foundation.HRESULT __result = @this.get_Handle(pHandleLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_hPal(this winmdroot.System.Ole.IPicture.Interface @this, out winmdroot.System.Ole.OLE_HANDLE phPal) 38 winmdroot.Foundation.HRESULT __result = @this.get_hPal(phPalLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_Type(this winmdroot.System.Ole.IPicture.Interface @this, out winmdroot.System.Ole.PICTYPE pType) 48 winmdroot.Foundation.HRESULT __result = @this.get_Type(pTypeLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_Width(this winmdroot.System.Ole.IPicture.Interface @this, out int pWidth) 58 winmdroot.Foundation.HRESULT __result = @this.get_Width(pWidthLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT get_Height(this winmdroot.System.Ole.IPicture.Interface @this, out int pHeight) 68 winmdroot.Foundation.HRESULT __result = @this.get_Height(pHeightLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT Render(this winmdroot.System.Ole.IPicture.Interface @this, winmdroot.Graphics.Gdi.HDC hDC, int x, int y, int cx, int cy, int xSrc, int ySrc, int cxSrc, int cySrc, in winmdroot.Foundation.RECT pRcWBounds) 78 winmdroot.Foundation.HRESULT __result = @this.Render(hDC, x, y, cx, cy, xSrc, ySrc, cxSrc, cySrc, pRcWBoundsLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT get_CurDC(this winmdroot.System.Ole.IPicture.Interface @this, out winmdroot.Graphics.Gdi.HDC phDC) 88 winmdroot.Foundation.HRESULT __result = @this.get_CurDC(phDCLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT SelectPicture(this winmdroot.System.Ole.IPicture.Interface @this, winmdroot.Graphics.Gdi.HDC hDCIn, out winmdroot.Graphics.Gdi.HDC phDCOut, out winmdroot.System.Ole.OLE_HANDLE phBmpOut) 100 winmdroot.Foundation.HRESULT __result = @this.SelectPicture(hDCIn, phDCOutLocal, phBmpOutLocal); 107 internal static unsafe winmdroot.Foundation.HRESULT get_KeepOriginalFormat(this winmdroot.System.Ole.IPicture.Interface @this, out winmdroot.Foundation.BOOL pKeep) 111 winmdroot.Foundation.HRESULT __result = @this.get_KeepOriginalFormat(pKeepLocal); 117 internal static unsafe winmdroot.Foundation.HRESULT SaveAsFile(this winmdroot.System.Ole.IPicture.Interface @this, winmdroot.System.Com.IStream* pStream, winmdroot.Foundation.BOOL fSaveMemCopy, out int pCbSize) 121 winmdroot.Foundation.HRESULT __result = @this.SaveAsFile(pStream, fSaveMemCopy, pCbSizeLocal); 127 internal static unsafe winmdroot.Foundation.HRESULT get_Attributes(this winmdroot.System.Ole.IPicture.Interface @this, out uint pDwAttr) 131 winmdroot.Foundation.HRESULT __result = @this.get_Attributes(pDwAttrLocal);
Windows.Win32.System_Ole_IRecordInfo_Extensions.g.cs (16)
24 internal static unsafe winmdroot.Foundation.HRESULT GetGuid(this winmdroot.System.Ole.IRecordInfo.Interface @this, out global::System.Guid pguid) 28 winmdroot.Foundation.HRESULT __result = @this.GetGuid(pguidLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetSize(this winmdroot.System.Ole.IRecordInfo.Interface @this, out uint pcbSize) 38 winmdroot.Foundation.HRESULT __result = @this.GetSize(pcbSizeLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetField(this winmdroot.System.Ole.IRecordInfo.Interface @this, void* pvData, string szFieldName, out winmdroot.System.Variant.VARIANT pvarField) 50 winmdroot.Foundation.HRESULT __result = @this.GetField(pvData, szFieldNameLocal, pvarFieldLocal); 57 internal static unsafe winmdroot.Foundation.HRESULT GetFieldNoCopy(this winmdroot.System.Ole.IRecordInfo.Interface @this, void* pvData, string szFieldName, out winmdroot.System.Variant.VARIANT pvarField, out void* ppvDataCArray) 65 winmdroot.Foundation.HRESULT __result = @this.GetFieldNoCopy(pvData, szFieldNameLocal, pvarFieldLocal, ppvDataCArrayLocal); 73 internal static unsafe winmdroot.Foundation.HRESULT PutField(this winmdroot.System.Ole.IRecordInfo.Interface @this, uint wFlags, void* pvData, string szFieldName, in winmdroot.System.Variant.VARIANT pvarField) 79 winmdroot.Foundation.HRESULT __result = @this.PutField(wFlags, pvData, szFieldNameLocal, pvarFieldLocal); 86 internal static unsafe winmdroot.Foundation.HRESULT PutFieldNoCopy(this winmdroot.System.Ole.IRecordInfo.Interface @this, uint wFlags, void* pvData, string szFieldName, in winmdroot.System.Variant.VARIANT pvarField) 92 winmdroot.Foundation.HRESULT __result = @this.PutFieldNoCopy(wFlags, pvData, szFieldNameLocal, pvarFieldLocal); 99 internal static unsafe winmdroot.Foundation.HRESULT GetFieldNames(this winmdroot.System.Ole.IRecordInfo.Interface @this, ref uint pcNames, winmdroot.Foundation.BSTR* rgBstrNames) 103 winmdroot.Foundation.HRESULT __result = @this.GetFieldNames(pcNamesLocal, rgBstrNames); 109 internal static unsafe winmdroot.Foundation.HRESULT RecordCreateCopy(this winmdroot.System.Ole.IRecordInfo.Interface @this, void* pvSource, out void* ppvDest) 113 winmdroot.Foundation.HRESULT __result = @this.RecordCreateCopy(pvSource, ppvDestLocal);
Windows.Win32.UI_Shell_IDataObjectAsyncCapability_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetAsyncMode(this winmdroot.UI.Shell.IDataObjectAsyncCapability.Interface @this, out winmdroot.Foundation.BOOL pfIsOpAsync) 28 winmdroot.Foundation.HRESULT __result = @this.GetAsyncMode(pfIsOpAsyncLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT InOperation(this winmdroot.UI.Shell.IDataObjectAsyncCapability.Interface @this, out winmdroot.Foundation.BOOL pfInAsyncOp) 38 winmdroot.Foundation.HRESULT __result = @this.InOperation(pfInAsyncOpLocal);
Windows.Win32.UI_Shell_IDragSourceHelper_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(this winmdroot.UI.Shell.IDragSourceHelper.Interface @this, in winmdroot.UI.Shell.SHDRAGIMAGE pshdi, winmdroot.System.Com.IDataObject* pDataObject) 28 winmdroot.Foundation.HRESULT __result = @this.InitializeFromBitmap(pshdiLocal, pDataObject); 34 internal static unsafe winmdroot.Foundation.HRESULT InitializeFromWindow(this winmdroot.UI.Shell.IDragSourceHelper.Interface @this, winmdroot.Foundation.HWND hwnd, global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject) 37 winmdroot.Foundation.HRESULT __result = @this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject);
Windows.Win32.UI_Shell_IDragSourceHelper2_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT InitializeFromBitmap(this winmdroot.UI.Shell.IDragSourceHelper2.Interface @this, in winmdroot.UI.Shell.SHDRAGIMAGE pshdi, winmdroot.System.Com.IDataObject* pDataObject) 28 winmdroot.Foundation.HRESULT __result = @this.InitializeFromBitmap(pshdiLocal, pDataObject); 34 internal static unsafe winmdroot.Foundation.HRESULT InitializeFromWindow(this winmdroot.UI.Shell.IDragSourceHelper2.Interface @this, winmdroot.Foundation.HWND hwnd, global::System.Drawing.Point? ppt, winmdroot.System.Com.IDataObject* pDataObject) 37 winmdroot.Foundation.HRESULT __result = @this.InitializeFromWindow(hwnd, ppt.HasValue ? &pptLocal : null, pDataObject);
Windows.Win32.UI_Shell_IDropTargetHelper_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT DragEnter(this winmdroot.UI.Shell.IDropTargetHelper.Interface @this, winmdroot.Foundation.HWND hwndTarget, winmdroot.System.Com.IDataObject* pDataObject, in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 28 winmdroot.Foundation.HRESULT __result = @this.DragEnter(hwndTarget, pDataObject, pptLocal, dwEffect); 34 internal static unsafe winmdroot.Foundation.HRESULT DragOver(this winmdroot.UI.Shell.IDropTargetHelper.Interface @this, in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 38 winmdroot.Foundation.HRESULT __result = @this.DragOver(pptLocal, dwEffect); 44 internal static unsafe winmdroot.Foundation.HRESULT Drop(this winmdroot.UI.Shell.IDropTargetHelper.Interface @this, winmdroot.System.Com.IDataObject* pDataObject, in global::System.Drawing.Point ppt, winmdroot.System.Ole.DROPEFFECT dwEffect) 48 winmdroot.Foundation.HRESULT __result = @this.Drop(pDataObject, pptLocal, dwEffect);
Windows\Win32\Foundation\GlobalBuffer.cs (5)
22Status = HRESULT.E_INVALIDARG; 33Status = HRESULT.E_OUTOFMEMORY; 40Status = HRESULT.E_OUTOFMEMORY; 46public HRESULT Status { get; private set; } = HRESULT.S_OK;
Windows\Win32\Foundation\HRESULT.cs (32)
45public static HRESULT FromWin32(WIN32_ERROR error) 52public static implicit operator HRESULT(Exception ex) 55return (HRESULT)ex.HResult; 64public static readonly HRESULT COR_E_ARGUMENT = (HRESULT)unchecked((int)0x80070057); 65public static readonly HRESULT TLBX_E_LIBNOTREGISTERED = (HRESULT)unchecked((int)0x80131165); 66public static readonly HRESULT COR_E_MISSINGFIELD = (HRESULT)unchecked((int)0x80131511); 67public static readonly HRESULT COR_E_MISSINGMEMBER = (HRESULT)unchecked((int)0x80131512); 68public static readonly HRESULT COR_E_MISSINGMETHOD = (HRESULT)unchecked((int)0x80131513); 69public static readonly HRESULT COR_E_NOTSUPPORTED = (HRESULT)unchecked((int)0x80131515); 70public static readonly HRESULT COR_E_OVERFLOW = (HRESULT)unchecked((int)0x80131516); 71public static readonly HRESULT COR_E_INVALIDOLEVARIANTTYPE = (HRESULT)unchecked((int)0x80131531); 72public static readonly HRESULT COR_E_SAFEARRAYTYPEMISMATCH = (HRESULT)unchecked((int)0x80131533); 73public static readonly HRESULT COR_E_TARGETINVOCATION = (HRESULT)unchecked((int)0x80131604); 74public static readonly HRESULT COR_E_OBJECTDISPOSED = (HRESULT)unchecked((int)0x80131622); 75public static readonly HRESULT COR_E_SERIALIZATION = (HRESULT)unchecked((int)0x8013150c); 81public static readonly HRESULT DESTS_E_NO_MATCHING_ASSOC_HANDLER = (HRESULT)unchecked((int)0x80040F03); 93/// <see cref="FACILITY_CODE.FACILITY_CONTROL"/> is used for all VB errors raised as <see cref="HRESULT"/>s. 104public static readonly HRESULT VB_E_NOTOBJECT = (HRESULT)unchecked((int)0x800A01A8);
Windows\Win32\Graphics\GdiPlus\StatusExtensions.cs (8)
26return new ExternalException(SR.GdiplusGenericError, (int)HRESULT.E_FAIL); 37return new ExternalException(SR.GdiplusInvalidOperation, (int)HRESULT.E_UNEXPECTED); 45return new ExternalException(SR.GdiplusGenericError, (int)HRESULT.E_FAIL); 49return new ExternalException(SR.GdiplusAborted, (int)HRESULT.E_ABORT); 55return new ExternalException(SR.GdiplusAccessDenied, (int)HRESULT.E_ACCESSDENIED); 76return new ExternalException(SR.GdiplusUnsupportedGdiplusVersion, (int)HRESULT.E_FAIL); 79return new ExternalException(SR.GdiplusNotInitialized, (int)HRESULT.E_FAIL); 82return new ExternalException($"{SR.GdiplusUnknown} [{status}]", (int)HRESULT.E_UNEXPECTED);
Windows\Win32\PInvokeCore.PrintDlgEx.cs (1)
12internal static extern unsafe HRESULT PrintDlgEx(PRINTDLGEXW* pPD);
Windows\Win32\PInvokeCore.RegisterDragDrop.cs (2)
11public static unsafe HRESULT RegisterDragDrop<T>(T hwnd, IDropTarget.Interface pDropTarget) 14using var dropTarget = ComHelpers.TryGetComScope<IDropTarget>(pDropTarget, out HRESULT hr);
Windows\Win32\PInvokeCore.RevokeDragDrop.cs (2)
9public static HRESULT RevokeDragDrop<T>(T hwnd) where T : IHandle<HWND> 11HRESULT result = RevokeDragDrop(hwnd.Handle);
Windows\Win32\System\Com\AgileComPointer.cs (5)
124var scope = GlobalInterfaceTable.GetInterface<TInterface>(_cookie, out HRESULT hr); 135var scope = TryGetInterface<TAsInterface>(out HRESULT hr); 143public ComScope<TInterface> TryGetInterface(out HRESULT hr) 149public ComScope<TAsInterface> TryGetInterface<TAsInterface>(out HRESULT hr) 192HRESULT hr = GlobalInterfaceTable.RevokeInterface(cookie);
Windows\Win32\System\Com\ComHelpers.cs (11)
40internal static ComScope<T> TryGetComScope<T>(object? @object, out HRESULT hr) where T : unmanaged, IComIID => 49T* result = TryGetComPointer<T>(@object, out HRESULT hr); 68using var scope = TryGetComScope<T>(@object, out HRESULT hr); 76/// Typically either <see cref="HRESULT.S_OK"/> or <see cref="HRESULT.E_POINTER"/>. Check for success, not 80internal static T* TryGetComPointer<T>(object? @object, out HRESULT result) where T : unmanaged, IComIID 84result = HRESULT.E_POINTER; 115result = HRESULT.E_NOINTERFACE; 122result = HRESULT.S_OK; 182HRESULT hr = unknown->QueryInterface(IID.Get<IUnknown>(), (void**)&unknown); 339HRESULT hr = PInvokeCore.LoadRegTypeLib(typeLibrary, majorVersion, minorVersion, 0, typelib);
Windows\Win32\System\Com\ComManagedStream.cs (30)
46HRESULT IStream.Interface.Clone(IStream** ppstm) 50return HRESULT.E_POINTER; 57return HRESULT.S_OK; 60HRESULT IStream.Interface.Commit(uint grfCommitFlags) 66return HRESULT.S_OK; 69HRESULT IStream.Interface.CopyTo(IStream* pstm, ulong cb, ulong* pcbRead, ulong* pcbWritten) 73return HRESULT.STG_E_INVALIDPOINTER; 109return HRESULT.S_OK; 112HRESULT ISequentialStream.Interface.Read(void* pv, uint cb, uint* pcbRead) 116return HRESULT.STG_E_INVALIDPOINTER; 127return HRESULT.S_OK; 130HRESULT IStream.Interface.Read(void* pv, uint cb, uint* pcbRead) 133HRESULT IStream.Interface.Seek(long dlibMove, SeekOrigin dwOrigin, ulong* plibNewPosition) 179return HRESULT.S_OK; 182return HRESULT.S_OK; 185HRESULT IStream.Interface.SetSize(ulong libNewSize) 188return HRESULT.S_OK; 191HRESULT IStream.Interface.Stat(STATSTG* pstatstg, uint grfStatFlag) 195return HRESULT.STG_E_INVALIDPOINTER; 217return HRESULT.S_OK; 221HRESULT IStream.Interface.LockRegion(ulong libOffset, ulong cb, uint dwLockType) => HRESULT.STG_E_INVALIDFUNCTION; 224HRESULT IStream.Interface.Revert() => HRESULT.S_OK; 227HRESULT IStream.Interface.UnlockRegion(ulong libOffset, ulong cb, uint dwLockType) => HRESULT.STG_E_INVALIDFUNCTION; 229HRESULT ISequentialStream.Interface.Write(void* pv, uint cb, uint* pcbWritten) 233return HRESULT.STG_E_INVALIDPOINTER; 244return HRESULT.S_OK; 247HRESULT IStream.Interface.Write(void* pv, uint cb, uint* pcbWritten)
Windows\Win32\System\Com\ComScope.cs (6)
60public ComScope<TTo> TryQuery<TTo>(out HRESULT hr) where TTo : unmanaged, IComIID 80public static ComScope<T> TryQueryFrom<TFrom>(TFrom* from, out HRESULT hr) where TFrom : unmanaged, IComIID 83hr = from is null ? HRESULT.E_POINTER : ((IUnknown*)from)->QueryInterface(IID.Get<T>(), scope); 94HRESULT.E_POINTER.ThrowOnFailure(); 104/// use the interface, otherwise use <see cref="TryQuery{TTo}(out HRESULT)"/>. 114HRESULT hr = AsUnknown->QueryInterface(IID.Get<TInterface>(), (void**)&unknown);
Windows\Win32\System\Com\GlobalInterfaceTable.cs (4)
40HRESULT hr = s_globalInterfaceTable->RegisterInterfaceInGlobal( 52public static ComScope<TInterface> GetInterface<TInterface>(uint cookie, out HRESULT result) 64public static HRESULT RevokeInterface(uint cookie) 66HRESULT hr = s_globalInterfaceTable->RevokeInterfaceFromGlobal(cookie);
Windows\Win32\System\Com\GlobalInterfaceTable.UnknownStrategy.cs (1)
31return cookie != 0 ? (int)HRESULT.S_OK : (int)RevokeInterface(_cookie);
Windows\Win32\System\Com\IComCallableWrapper.cs (4)
32public unsafe HRESULT QueryInterface(in Guid riid, out void* ppvObject) 41public unsafe HRESULT QueryInterface(Guid* riid, void** ppvObject) 44return ((delegate* unmanaged[Stdcall]<IComCallableWrapper*, Guid*, void**, HRESULT>)_vtbl[0])(pThis, riid, ppvObject); 62internal delegate* unmanaged[Stdcall]<IEnumUnknown*, Guid*, void**, HRESULT> QueryInterface_1;
Windows\Win32\System\Com\IDispatch.cs (11)
15internal HRESULT TryGetProperty( 23internal HRESULT TryGetProperty( 33HRESULT hr = dispatch->Invoke( 43if (hr == HRESULT.DISP_E_EXCEPTION) 47hr = (HRESULT)pExcepInfo.scode; 92public HRESULT SetPropertyValue(int dispatchId, VARIANT value, out string? errorText) 110HRESULT hr = Invoke( 120if (hr == HRESULT.DISP_E_EXCEPTION) 124hr = (HRESULT)pExcepInfo.scode; 135internal HRESULT GetIDOfName(string name, out int dispId) 141HRESULT result = GetIDsOfNames(IID.NULL(), (PWSTR*)&n, 1u, PInvokeCore.GetThreadLocale(), &id);
Windows\Win32\System\Com\IDispatch.Interface.cs (8)
22private static HRESULT GetTypeInfoCount(IDispatch* @this, uint* pctinfo) 26private static HRESULT GetTypeInfo(IDispatch* @this, uint iTInfo, uint lcid, ITypeInfo** ppTInfo) 30private static HRESULT GetIDsOfNames(IDispatch* @this, Guid* riid, PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 34private static HRESULT Invoke( 54HRESULT GetTypeInfoCount( 58HRESULT GetTypeInfo( 64HRESULT GetIDsOfNames( 72HRESULT Invoke(
Windows\Win32\System\Com\ITypeInfo.cs (2)
9public HRESULT GetIDOfName(string name, out int memberId) 15HRESULT result = GetIDsOfNames((PWSTR*)&n, 1, &id);
Windows\Win32\System\Com\IUnknown.CCW.cs (4)
47private static unsafe HRESULT QueryInterface(IUnknown* @this, Guid* iid, void* ppObject) 51return HRESULT.E_POINTER; 61return HRESULT.E_NOINTERFACE; 65return HRESULT.S_OK;
Windows\Win32\System\Com\IUnknown.cs (1)
11internal unsafe HRESULT QueryInterface(Guid* riid, void** ppvObject);
Windows\Win32\System\Com\WinFormsComWrappers.cs (9)
20unknown->QueryInterface_1 = (delegate* unmanaged[Stdcall]<IUnknown*, Guid*, void**, HRESULT>)fpQueryInterface; 56/// Handles exceptions and converts to <see cref="HRESULT"/>. 59internal static HRESULT UnwrapAndInvoke<TThis, TInterface>(TThis* @this, Func<TInterface, HRESULT> func) 66return @object is null ? HRESULT.COR_E_OBJECTDISPOSED : func(@object); 95/// <inheritdoc cref="UnwrapAndInvoke{TThis, TInterface}(TThis*, Func{TInterface, HRESULT})"/> 96internal static HRESULT UnwrapAndInvoke<TThis, TInterface>(TThis* @this, Action<TInterface> action) 105return HRESULT.COR_E_OBJECTDISPOSED; 109return HRESULT.S_OK;
Windows\Win32\System\Variant\VARIANT.cs (3)
274HRESULT hr = PInvokeCore.SafeArrayLock(psa); 275Debug.Assert(hr == HRESULT.S_OK); 433Debug.Assert(hr == HRESULT.S_OK);
System.Private.Windows.Core.Tests (102)
System\Private\Windows\Ole\ClipboardCoreTests.cs (30)
41static unsafe HRESULT IOleServices.GetDataHere(string format, object data, FORMATETC* pformatetc, STGMEDIUM* pmedium) => throw new NotImplementedException(); 43static HRESULT IOleServices.OleFlushClipboard() => throw new NotImplementedException(); 44static unsafe HRESULT IOleServices.OleGetClipboard(IDataObject** dataObject) => throw new NotImplementedException(); 45static unsafe HRESULT IOleServices.OleSetClipboard(IDataObject* dataObject) => throw new NotImplementedException(); 68HRESULT result = ClipboardCore.SetData(dataObject, copy: false, retryTimes: 1, retryDelay: 0); 69result.Should().Be(HRESULT.S_OK); 74result.Should().Be(HRESULT.S_OK); 83HRESULT result; 89result.Should().Be(HRESULT.S_OK); 95result.Should().Be(HRESULT.CLIPBRD_E_BAD_DATA); 107HRESULT result = ClipboardCore.SetData(dataObject, copy: false, retryTimes: 1, retryDelay: 0); 108result.Should().Be(HRESULT.S_OK); 111result.Should().Be(HRESULT.S_OK); 144ClipboardCore.GetDataObject<DataObject, ITestDataObject>(out var outData).Should().Be(HRESULT.S_OK); 166HRESULT result = ClipboardCore.SetData(dataObject, copy: false, retryTimes: 1, retryDelay: 0); 167result.Should().Be(HRESULT.S_OK); 170result.Should().Be(HRESULT.S_OK); 188HRESULT result = ClipboardCore.TryGetData(out var data, out var original, retryTimes: 1, retryDelay: 0); 191result.Should().Be(HRESULT.CLIPBRD_E_BAD_DATA); 200result.Should().Be(HRESULT.CLIPBRD_E_BAD_DATA); 210HRESULT result = ClipboardCore.SetData(dataObject, copy: false, retryTimes: 1, retryDelay: 0); 211result.Should().Be(HRESULT.S_OK); 216HRESULT result2 = ClipboardCore.GetDataObject<DataObject, ITestDataObject>(out var data2, retryTimes: 1, retryDelay: 0); 218result.Should().Be(HRESULT.CLIPBRD_E_BAD_DATA); 306HRESULT result = ClipboardCore.SetData(dataObject, copy: false, retryTimes: 1, retryDelay: 0); 307result.Should().Be(HRESULT.S_OK); 409HRESULT result = ClipboardCore.SetData(dataObject, copy: false, retryTimes: 1, retryDelay: 0); 410result.Should().Be(HRESULT.S_OK); 429HRESULT result = ClipboardCore.SetData(dataObject, copy: false, retryTimes: 1, retryDelay: 0); 430result.Should().Be(HRESULT.S_OK);
System\Private\Windows\Ole\ClipboardScope.cs (2)
13public ClipboardScope() => ClipboardCore<TOleServices>.Clear(retryTimes: 1, retryDelay: 0).Should().Be(HRESULT.S_OK); 16public readonly void Dispose() => ClipboardCore<TOleServices>.Clear(retryTimes: 1, retryDelay: 0).Should().Be(HRESULT.S_OK);
System\Private\Windows\Ole\DataObjectProxy.cs (31)
47public HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) => _original->GetData(pformatetcIn, pmedium); 48public HRESULT GetDataHere(FORMATETC* pformatetc, STGMEDIUM* pmedium) => _original->GetDataHere(pformatetc, pmedium); 49public HRESULT QueryGetData(FORMATETC* pformatetc) => _original->QueryGetData(pformatetc); 50public HRESULT GetCanonicalFormatEtc(FORMATETC* pformatectIn, FORMATETC* pformatetcOut) => _original->GetCanonicalFormatEtc(pformatectIn, pformatetcOut); 51public HRESULT SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease) => _original->SetData(pformatetc, pmedium, fRelease); 52public HRESULT EnumFormatEtc(uint dwDirection, IEnumFORMATETC** ppenumFormatEtc) => _original->EnumFormatEtc(dwDirection, ppenumFormatEtc); 53public HRESULT DAdvise(FORMATETC* pformatetc, uint advf, IAdviseSink* pAdvSink, uint* pdwConnection) => _original->DAdvise(pformatetc, advf, pAdvSink, pdwConnection); 54public HRESULT DUnadvise(uint dwConnection) => _original->DUnadvise(dwConnection); 55public HRESULT EnumDAdvise(IEnumSTATDATA** ppenumAdvise) => _original->EnumDAdvise(ppenumAdvise); 95private static unsafe HRESULT QueryInterface(IDataObject* @this, Guid* iid, void** ppObject) 99return HRESULT.E_POINTER; 106return HRESULT.S_OK; 113return HRESULT.E_NOINTERFACE; 128private static unsafe HRESULT GetData(IDataObject* @this, FORMATETC* pFormatetc, STGMEDIUM* pMedium) => 129Lifetime.GetObject(@this)?.GetData(pFormatetc, pMedium) ?? HRESULT.COR_E_OBJECTDISPOSED; 132private static unsafe HRESULT GetDataHere(IDataObject* @this, FORMATETC* pFormatetc, STGMEDIUM* pMedium) => 133Lifetime.GetObject(@this)?.GetDataHere(pFormatetc, pMedium) ?? HRESULT.COR_E_OBJECTDISPOSED; 136private static unsafe HRESULT QueryGetData(IDataObject* @this, FORMATETC* pFormatetc) => 137Lifetime.GetObject(@this)?.QueryGetData(pFormatetc) ?? HRESULT.COR_E_OBJECTDISPOSED; 140private static unsafe HRESULT GetCanonicalFormatEtc(IDataObject* @this, FORMATETC* pFormatetcIn, FORMATETC* pFormatetcOut) => 141Lifetime.GetObject(@this)?.GetCanonicalFormatEtc(pFormatetcIn, pFormatetcOut) ?? HRESULT.COR_E_OBJECTDISPOSED; 144private static unsafe HRESULT SetData(IDataObject* @this, FORMATETC* pFormatetc, STGMEDIUM* pMedium, BOOL fRelease) => 145Lifetime.GetObject(@this)?.SetData(pFormatetc, pMedium, fRelease) ?? HRESULT.COR_E_OBJECTDISPOSED; 148private static unsafe HRESULT EnumFormatEtc(IDataObject* @this, uint dwDirection, IEnumFORMATETC** ppEnumFormatEtc) => 149Lifetime.GetObject(@this)?.EnumFormatEtc(dwDirection, ppEnumFormatEtc) ?? HRESULT.COR_E_OBJECTDISPOSED; 152private static unsafe HRESULT DAdvise(IDataObject* @this, FORMATETC* pFormatetc, uint advf, IAdviseSink* pAdvSink, uint* pdwConnection) => 153Lifetime.GetObject(@this)?.DAdvise(pFormatetc, advf, pAdvSink, pdwConnection) ?? HRESULT.COR_E_OBJECTDISPOSED; 156private static unsafe HRESULT DUnadvise(IDataObject* @this, uint dwConnection) => 157Lifetime.GetObject(@this)?.DUnadvise(dwConnection) ?? HRESULT.COR_E_OBJECTDISPOSED; 160private static unsafe HRESULT EnumDAdvise(IDataObject* @this, IEnumSTATDATA** ppEnumAdvise) => 161Lifetime.GetObject(@this)?.EnumDAdvise(ppEnumAdvise) ?? HRESULT.COR_E_OBJECTDISPOSED;
System\Private\Windows\Ole\HGlobalNativeDataObject.cs (11)
20public override HRESULT QueryGetData(FORMATETC* pformatetc) 24return HRESULT.DV_E_FORMATETC; 29return HRESULT.DV_E_FORMATETC; 34return HRESULT.DV_E_DVASPECT; 39return HRESULT.DV_E_LINDEX; 44return HRESULT.DV_E_TYMED; 47return HRESULT.S_OK; 50public override HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) 52HRESULT result = QueryGetData(pformatetcIn); 60return HRESULT.E_POINTER; 70return HRESULT.S_OK;
System\Private\Windows\Ole\MockOleServices.cs (10)
20static unsafe HRESULT IOleServices.GetDataHere(string format, object data, FORMATETC* pformatetc, STGMEDIUM* pmedium) => HRESULT.DV_E_TYMED; 33static HRESULT IOleServices.OleFlushClipboard() 39static unsafe HRESULT IOleServices.OleGetClipboard(IDataObject** dataObject) 43return HRESULT.E_POINTER; 49return HRESULT.CLIPBRD_E_BAD_DATA; 54return HRESULT.S_OK; 57static unsafe HRESULT IOleServices.OleSetClipboard(IDataObject* dataObject) 64return HRESULT.S_OK; 73return HRESULT.S_OK;
System\Private\Windows\Ole\NativeDataObjectMock.cs (9)
11public virtual HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) => throw new NotImplementedException(); 12public virtual HRESULT GetDataHere(FORMATETC* pformatetc, STGMEDIUM* pmedium) => throw new NotImplementedException(); 13public virtual HRESULT QueryGetData(FORMATETC* pformatetc) => throw new NotImplementedException(); 14public virtual HRESULT GetCanonicalFormatEtc(FORMATETC* pformatectIn, FORMATETC* pformatetcOut) => throw new NotImplementedException(); 15public virtual HRESULT SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease) => throw new NotImplementedException(); 16public virtual HRESULT EnumFormatEtc(uint dwDirection, IEnumFORMATETC** ppenumFormatEtc) => throw new NotImplementedException(); 17public virtual HRESULT DAdvise(FORMATETC* pformatetc, uint advf, IAdviseSink* pAdvSink, uint* pdwConnection) => throw new NotImplementedException(); 18public virtual HRESULT DUnadvise(uint dwConnection) => throw new NotImplementedException(); 19public virtual HRESULT EnumDAdvise(IEnumSTATDATA** ppenumAdvise) => throw new NotImplementedException();
System\Private\Windows\Ole\TestDataObject.cs (9)
117public unsafe HRESULT GetData(FORMATETC* pformatetcIn, STGMEDIUM* pmedium) => _innerData.GetData(pformatetcIn, pmedium); 118public unsafe HRESULT GetDataHere(FORMATETC* pformatetc, STGMEDIUM* pmedium) => _innerData.GetDataHere(pformatetc, pmedium); 119public unsafe HRESULT QueryGetData(FORMATETC* pformatetc) => _innerData.QueryGetData(pformatetc); 120public unsafe HRESULT GetCanonicalFormatEtc(FORMATETC* pformatectIn, FORMATETC* pformatetcOut) => _innerData.GetCanonicalFormatEtc(pformatectIn, pformatetcOut); 121public unsafe HRESULT SetData(FORMATETC* pformatetc, STGMEDIUM* pmedium, BOOL fRelease) => _innerData.SetData(pformatetc, pmedium, fRelease); 122public unsafe HRESULT EnumFormatEtc(uint dwDirection, IEnumFORMATETC** ppenumFormatEtc) => _innerData.EnumFormatEtc(dwDirection, ppenumFormatEtc); 123public unsafe HRESULT DAdvise(FORMATETC* pformatetc, uint advf, IAdviseSink* pAdvSink, uint* pdwConnection) => _innerData.DAdvise(pformatetc, advf, pAdvSink, pdwConnection); 124public HRESULT DUnadvise(uint dwConnection) => _innerData.DUnadvise(dwConnection); 125public unsafe HRESULT EnumDAdvise(IEnumSTATDATA** ppenumAdvise) => _innerData.EnumDAdvise(ppenumAdvise);
System.Windows.Forms (1429)
System\Windows\Forms\Accessibility\AccessibleObject.cs (385)
297using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 449using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 458Debug.Assert(result == HRESULT.DISP_E_MEMBERNOTFOUND, $"{nameof(GetSystemIAccessibleFocus)} failed with {result}"); 517using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 526Debug.Assert(result == HRESULT.DISP_E_MEMBERNOTFOUND, $"{nameof(TryGetSystemIAccessibleSelection)} failed with {result}"); 555using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 559return result.Failed || result == HRESULT.S_FALSE ? null : TryGetAccessibleObject(child); 790internal virtual HRESULT GetTextSelection(SAFEARRAY** pRetVal) => HRESULT.E_NOTIMPL; 792internal virtual HRESULT GetTextVisibleRanges(SAFEARRAY** pRetVal) => HRESULT.E_NOTIMPL; 794internal virtual HRESULT GetTextRangeFromChild(IRawElementProviderSimple* childElement, ITextRangeProvider** pRetVal) => HRESULT.E_NOTIMPL; 796internal virtual HRESULT GetTextRangeFromPoint(UiaPoint screenLocation, ITextRangeProvider** pRetVal) => HRESULT.E_NOTIMPL; 807internal virtual HRESULT GetTextCaretRange(BOOL* isActive, ITextRangeProvider** pRetVal) => HRESULT.E_NOTIMPL; 809internal virtual HRESULT GetRangeFromAnnotation(IRawElementProviderSimple* annotationElement, ITextRangeProvider** pRetVal) => HRESULT.E_NOTIMPL; 880HRESULT ComIServiceProvider.Interface.QueryService(Guid* service, Guid* riid, void** ppvObject) 884return HRESULT.E_NOINTERFACE; 889return HRESULT.E_POINTER; 900return HRESULT.S_OK; 904return HRESULT.E_NOINTERFACE; 907HRESULT IAccessibleEx.Interface.GetObjectForChild(int idChild, IAccessibleEx** pRetVal) 911return HRESULT.E_POINTER; 915return HRESULT.S_OK; 918HRESULT IAccessibleEx.Interface.GetIAccessiblePair(UIA.IAccessible** ppAcc, int* pidChild) 922return HRESULT.E_POINTER; 928return HRESULT.E_POINTER; 933return HRESULT.S_OK; 936HRESULT IAccessibleEx.Interface.GetRuntimeId(SAFEARRAY** pRetVal) 940return HRESULT.E_POINTER; 950return HRESULT.COR_E_NOTSUPPORTED; 953return HRESULT.S_OK; 956HRESULT IAccessibleEx.Interface.ConvertReturnedElement(IRawElementProviderSimple* pIn, IAccessibleEx** ppRetValOut) 960return HRESULT.E_POINTER; 965return HRESULT.E_NOTIMPL; 968HRESULT IRawElementProviderSimple.Interface.get_ProviderOptions(ProviderOptions* pRetVal) 972return HRESULT.E_POINTER; 976return HRESULT.S_OK; 979HRESULT IRawElementProviderSimple.Interface.get_HostRawElementProvider(IRawElementProviderSimple** pRetVal) 983return HRESULT.E_POINTER; 987return HRESULT.S_OK; 990HRESULT IRawElementProviderSimple.Interface.GetPatternProvider(UIA_PATTERN_ID patternId, IUnknown** pRetVal) 994return HRESULT.E_POINTER; 1004return HRESULT.S_OK; 1007HRESULT IRawElementProviderSimple.Interface.GetPropertyValue(UIA_PROPERTY_ID propertyId, VARIANT* pRetVal) 1011return HRESULT.E_POINTER; 1024return HRESULT.S_OK; 1027HRESULT IRawElementProviderFragment.Interface.Navigate(NavigateDirection direction, IRawElementProviderFragment** pRetVal) 1031return HRESULT.E_POINTER; 1036return HRESULT.S_OK; 1039HRESULT IRawElementProviderFragment.Interface.GetRuntimeId(SAFEARRAY** pRetVal) 1043return HRESULT.E_POINTER; 1047return HRESULT.S_OK; 1050HRESULT IRawElementProviderFragment.Interface.get_BoundingRectangle(UiaRect* pRetVal) 1054return HRESULT.E_POINTER; 1065return HRESULT.S_OK; 1068HRESULT IRawElementProviderFragment.Interface.GetEmbeddedFragmentRoots(SAFEARRAY** pRetVal) 1072return HRESULT.E_POINTER; 1080return HRESULT.S_OK; 1083HRESULT IRawElementProviderFragment.Interface.SetFocus() 1086return HRESULT.S_OK; 1094HRESULT IRawElementProviderFragment.Interface.get_FragmentRoot(IRawElementProviderFragmentRoot** pRetVal) 1098return HRESULT.E_POINTER; 1104return HRESULT.S_OK; 1107HRESULT IRawElementProviderFragmentRoot.Interface.ElementProviderFromPoint(double x, double y, IRawElementProviderFragment** pRetVal) 1111return HRESULT.E_POINTER; 1115return HRESULT.S_OK; 1118HRESULT IRawElementProviderFragmentRoot.Interface.GetFocus(IRawElementProviderFragment** pRetVal) 1122return HRESULT.E_POINTER; 1126return HRESULT.S_OK; 1129HRESULT ILegacyIAccessibleProvider.Interface.Select(int flagsSelect) 1132return HRESULT.S_OK; 1135HRESULT ILegacyIAccessibleProvider.Interface.DoDefaultAction() 1138return HRESULT.S_OK; 1141HRESULT ILegacyIAccessibleProvider.Interface.SetValue(PCWSTR szValue) 1144return HRESULT.S_OK; 1147HRESULT ILegacyIAccessibleProvider.Interface.GetIAccessible(UIA.IAccessible** ppAccessible) 1151return HRESULT.E_POINTER; 1170return HRESULT.S_OK; 1173HRESULT ILegacyIAccessibleProvider.Interface.get_ChildId(int* pRetVal) 1177return HRESULT.E_POINTER; 1181return HRESULT.S_OK; 1184HRESULT ILegacyIAccessibleProvider.Interface.get_Name(BSTR* pszName) 1188return HRESULT.E_POINTER; 1194return HRESULT.S_OK; 1197HRESULT ILegacyIAccessibleProvider.Interface.get_Value(BSTR* pszValue) 1202return HRESULT.E_POINTER; 1208return HRESULT.S_OK; 1212HRESULT ILegacyIAccessibleProvider.Interface.get_Description(BSTR* pszDescription) 1216return HRESULT.E_POINTER; 1222return HRESULT.S_OK; 1225HRESULT ILegacyIAccessibleProvider.Interface.get_Role(uint* pdwRole) 1229return HRESULT.E_POINTER; 1233return HRESULT.S_OK; 1236HRESULT ILegacyIAccessibleProvider.Interface.get_State(uint* pdwState) 1240return HRESULT.E_POINTER; 1244return HRESULT.S_OK; 1247HRESULT ILegacyIAccessibleProvider.Interface.get_Help(BSTR* pszHelp) 1251return HRESULT.E_POINTER; 1257return HRESULT.S_OK; 1260HRESULT ILegacyIAccessibleProvider.Interface.get_KeyboardShortcut(BSTR* pszKeyboardShortcut) 1264return HRESULT.E_POINTER; 1268return HRESULT.S_OK; 1271HRESULT ILegacyIAccessibleProvider.Interface.GetSelection(SAFEARRAY** pvarSelectedChildren) 1275return HRESULT.E_POINTER; 1291return HRESULT.S_OK; 1294HRESULT ILegacyIAccessibleProvider.Interface.get_DefaultAction(BSTR* pszDefaultAction) 1298return HRESULT.E_POINTER; 1302return HRESULT.S_OK; 1305HRESULT IExpandCollapseProvider.Interface.Expand() 1308return HRESULT.S_OK; 1311HRESULT IExpandCollapseProvider.Interface.Collapse() 1314return HRESULT.S_OK; 1317HRESULT IExpandCollapseProvider.Interface.get_ExpandCollapseState(ExpandCollapseState* pRetVal) 1321return HRESULT.E_POINTER; 1325return HRESULT.S_OK; 1328HRESULT IInvokeProvider.Interface.Invoke() 1331return HRESULT.S_OK; 1336HRESULT ITextProvider.Interface.GetSelection(SAFEARRAY** pRetVal) => GetTextSelection(pRetVal); 1338HRESULT ITextProvider.Interface.GetVisibleRanges(SAFEARRAY** pRetVal) => GetTextVisibleRanges(pRetVal); 1340HRESULT ITextProvider.Interface.RangeFromChild(IRawElementProviderSimple* childElement, ITextRangeProvider** pRetVal) 1343HRESULT ITextProvider.Interface.RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal) 1350HRESULT ITextProvider2.Interface.GetSelection(SAFEARRAY** pRetVal) => GetTextSelection(pRetVal); 1352HRESULT ITextProvider2.Interface.GetVisibleRanges(SAFEARRAY** pRetVal) => GetTextVisibleRanges(pRetVal); 1354HRESULT ITextProvider2.Interface.RangeFromChild(IRawElementProviderSimple* childElement, ITextRangeProvider** pRetVal) 1357HRESULT ITextProvider2.Interface.RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal) 1362HRESULT ITextProvider2.Interface.GetCaretRange(BOOL* isActive, ITextRangeProvider** pRetVal) => GetTextCaretRange(isActive, pRetVal); 1364HRESULT ITextProvider2.Interface.RangeFromAnnotation(IRawElementProviderSimple* annotationElement, ITextRangeProvider** pRetVal) 1367HRESULT IValueProvider.Interface.SetValue(PCWSTR val) 1370return HRESULT.S_OK; 1373HRESULT IValueProvider.Interface.get_Value(BSTR* pRetVal) 1377return HRESULT.E_POINTER; 1381return HRESULT.S_OK; 1384HRESULT IValueProvider.Interface.get_IsReadOnly(BOOL* pRetVal) 1388return HRESULT.E_POINTER; 1392return HRESULT.S_OK; 1395HRESULT IToggleProvider.Interface.Toggle() 1398return HRESULT.S_OK; 1401HRESULT IToggleProvider.Interface.get_ToggleState(ToggleState* pRetVal) 1405return HRESULT.E_POINTER; 1409return HRESULT.S_OK; 1412HRESULT ITableProvider.Interface.GetRowHeaders(SAFEARRAY** pRetVal) 1416return HRESULT.E_POINTER; 1424return HRESULT.S_OK; 1427HRESULT ITableProvider.Interface.GetColumnHeaders(SAFEARRAY** pRetVal) 1431return HRESULT.E_POINTER; 1439return HRESULT.S_OK; 1442HRESULT ITableProvider.Interface.get_RowOrColumnMajor(RowOrColumnMajor* pRetVal) 1446return HRESULT.E_POINTER; 1450return HRESULT.S_OK; 1453HRESULT ITableItemProvider.Interface.GetRowHeaderItems(SAFEARRAY** pRetVal) 1457return HRESULT.E_POINTER; 1465return HRESULT.S_OK; 1468HRESULT ITableItemProvider.Interface.GetColumnHeaderItems(SAFEARRAY** pRetVal) 1472return HRESULT.E_POINTER; 1480return HRESULT.S_OK; 1483HRESULT IGridProvider.Interface.GetItem(int row, int column, IRawElementProviderSimple** pRetVal) 1487return HRESULT.E_POINTER; 1491return HRESULT.S_OK; 1494HRESULT IGridProvider.Interface.get_RowCount(int* pRetVal) 1498return HRESULT.E_POINTER; 1502return HRESULT.S_OK; 1505HRESULT IGridProvider.Interface.get_ColumnCount(int* pRetVal) 1509return HRESULT.E_POINTER; 1513return HRESULT.S_OK; 1516HRESULT IGridItemProvider.Interface.get_Row(int* pRetVal) 1520return HRESULT.E_POINTER; 1524return HRESULT.S_OK; 1527HRESULT IGridItemProvider.Interface.get_Column(int* pRetVal) 1531return HRESULT.E_POINTER; 1535return HRESULT.S_OK; 1538HRESULT IGridItemProvider.Interface.get_RowSpan(int* pRetVal) 1542return HRESULT.E_POINTER; 1546return HRESULT.S_OK; 1549HRESULT IGridItemProvider.Interface.get_ColumnSpan(int* pRetVal) 1553return HRESULT.E_POINTER; 1557return HRESULT.S_OK; 1560HRESULT IGridItemProvider.Interface.get_ContainingGrid(IRawElementProviderSimple** pRetVal) 1564return HRESULT.E_POINTER; 1568return HRESULT.S_OK; 1574HRESULT UIA.IAccessible.Interface.accDoDefaultAction(VARIANT varChild) 1582return HRESULT.S_OK; 1590return HRESULT.S_OK; 1594using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 1635HRESULT UIA.IAccessible.Interface.accHitTest(int xLeft, int yTop, VARIANT* pvarChild) 1639return HRESULT.E_POINTER; 1664return HRESULT.S_OK; 1668using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 1672return HRESULT.S_OK; 1685HRESULT UIA.IAccessible.Interface.accLocation(int* pxLeft, int* pyTop, int* pcxWidth, int* pcyHeight, VARIANT varChild) 1689return HRESULT.E_POINTER; 1703return HRESULT.S_OK; 1716return HRESULT.S_OK; 1720using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 1724return HRESULT.S_OK; 1737HRESULT UIA.IAccessible.Interface.accNavigate(int navDir, VARIANT varStart, VARIANT* pvarEndUpAt) 1741return HRESULT.E_POINTER; 1753return HRESULT.S_OK; 1762return HRESULT.S_OK; 1769return HRESULT.S_OK; 1772using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 1776return HRESULT.S_OK; 1788HRESULT UIA.IAccessible.Interface.accSelect(int flagsSelect, VARIANT varChild) 1796return HRESULT.S_OK; 1804return HRESULT.S_OK; 1808using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 1823using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 1839HRESULT UIA.IAccessible.Interface.get_accChild(VARIANT varChild, IDispatch** ppdispChild) 1843return HRESULT.E_POINTER; 1852return HRESULT.S_OK; 1866return HRESULT.S_OK; 1870return HRESULT.S_OK; 1874using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 1878return HRESULT.S_OK; 1886return HRESULT.S_OK; 1902HRESULT UIA.IAccessible.Interface.get_accChildCount(int* pcountChildren) 1906return HRESULT.E_POINTER; 1918using ComScope<UIA.IAccessible> accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 1929return HRESULT.S_OK; 1939HRESULT UIA.IAccessible.Interface.get_accDefaultAction(VARIANT varChild, BSTR* pszDefaultAction) 1943return HRESULT.E_POINTER; 1954return HRESULT.S_OK; 1964return HRESULT.S_OK; 1969return HRESULT.S_OK; 1979HRESULT UIA.IAccessible.Interface.get_accDescription(VARIANT varChild, BSTR* pszDescription) 1983return HRESULT.E_POINTER; 1994return HRESULT.S_OK; 2004return HRESULT.S_OK; 2009return HRESULT.S_OK; 2053HRESULT UIA.IAccessible.Interface.get_accFocus(VARIANT* pvarChild) 2057return HRESULT.E_POINTER; 2061return HRESULT.S_OK; 2071HRESULT UIA.IAccessible.Interface.get_accHelp(VARIANT varChild, BSTR* pszHelp) 2075return HRESULT.E_POINTER; 2085return HRESULT.S_OK; 2095return HRESULT.S_OK; 2100return HRESULT.S_OK; 2112HRESULT UIA.IAccessible.Interface.get_accHelpTopic(BSTR* pszHelpFile, VARIANT varChild, int* pidTopic) 2116return HRESULT.E_POINTER; 2126return HRESULT.S_OK; 2131return HRESULT.S_OK; 2141return HRESULT.S_OK; 2146return HRESULT.S_OK; 2151return HRESULT.S_OK; 2161HRESULT UIA.IAccessible.Interface.get_accKeyboardShortcut(VARIANT varChild, BSTR* pszKeyboardShortcut) 2170return HRESULT.S_OK; 2180return HRESULT.S_OK; 2185return HRESULT.S_OK; 2195HRESULT UIA.IAccessible.Interface.get_accName(VARIANT varChild, BSTR* pszName) 2199return HRESULT.E_POINTER; 2209return HRESULT.S_OK; 2219return HRESULT.S_OK; 2234return HRESULT.S_OK; 2247HRESULT UIA.IAccessible.Interface.get_accParent(IDispatch** ppdispParent) 2251return HRESULT.E_POINTER; 2259return HRESULT.S_OK; 2276return HRESULT.S_OK; 2286HRESULT UIA.IAccessible.Interface.get_accRole(VARIANT varChild, VARIANT* pvarRole) 2290return HRESULT.E_POINTER; 2299return HRESULT.S_OK; 2307return HRESULT.S_OK; 2315return HRESULT.S_OK; 2328HRESULT UIA.IAccessible.Interface.get_accSelection(VARIANT* pvarChildren) 2332return HRESULT.E_POINTER; 2341return HRESULT.S_OK; 2345using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 2349return HRESULT.S_OK; 2362HRESULT UIA.IAccessible.Interface.get_accState(VARIANT varChild, VARIANT* pvarState) 2366return HRESULT.E_POINTER; 2375return HRESULT.S_OK; 2383return HRESULT.S_OK; 2389return HRESULT.S_OK; 2399HRESULT UIA.IAccessible.Interface.get_accValue(VARIANT varChild, BSTR* pszValue) 2403return HRESULT.E_POINTER; 2414return HRESULT.S_OK; 2424return HRESULT.S_OK; 2429return HRESULT.S_OK; 2435HRESULT UIA.IAccessible.Interface.put_accName(VARIANT varChild, BSTR szName) 2445return HRESULT.S_OK; 2450return HRESULT.S_OK; 2460return HRESULT.S_OK; 2464return HRESULT.S_OK; 2469return HRESULT.S_OK; 2475HRESULT UIA.IAccessible.Interface.put_accValue(VARIANT varChild, BSTR szValue) 2486return HRESULT.S_OK; 2490return HRESULT.S_OK; 2500return HRESULT.S_OK; 2504return HRESULT.S_OK; 2509return HRESULT.S_OK; 2532HRESULT IOleWindow.Interface.GetWindow(HWND* phwnd) 2536return HRESULT.E_POINTER; 2540using var oleWindow = TryGetOleWindow(out HRESULT result); 2555return HRESULT.E_FAIL; 2562HRESULT IOleWindow.Interface.ContextSensitiveHelp(BOOL fEnterMode) 2565using var oleWindow = TryGetOleWindow(out HRESULT result); 2579return HRESULT.S_OK; 2582HRESULT IEnumVARIANT.Interface.Clone(IEnumVARIANT** ppEnum) => EnumVariant.Clone(ppEnum); 2584HRESULT IEnumVARIANT.Interface.Next(uint celt, VARIANT* rgVar, uint* pCeltFetched) 2587HRESULT IEnumVARIANT.Interface.Reset() => EnumVariant.Reset(); 2589HRESULT IEnumVARIANT.Interface.Skip(uint celt) => EnumVariant.Skip(celt); 2626using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 2648using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result); 2728HRESULT result = PInvoke.CreateStdAccessibleObject( 2806|| childID.data.intVal == (int)HRESULT.DISP_E_PARAMNOTFOUND 2998HRESULT IRawElementProviderHwndOverride.Interface.GetOverrideProviderForHwnd(HWND hwnd, IRawElementProviderSimple** pRetVal) 3002return HRESULT.E_POINTER; 3006return HRESULT.S_OK; 3009HRESULT IMultipleViewProvider.Interface.get_CurrentView(int* pRetVal) 3013return HRESULT.E_POINTER; 3017return HRESULT.S_OK; 3020HRESULT IMultipleViewProvider.Interface.GetSupportedViews(SAFEARRAY** pRetVal) 3024return HRESULT.E_POINTER; 3031return HRESULT.S_OK; 3034HRESULT IMultipleViewProvider.Interface.GetViewName(int viewId, BSTR* pRetVal) 3038return HRESULT.E_POINTER; 3042return HRESULT.S_OK; 3045HRESULT IMultipleViewProvider.Interface.SetCurrentView(int viewId) 3048return HRESULT.S_OK; 3051HRESULT IRangeValueProvider.Interface.SetValue(double val) 3054return HRESULT.S_OK; 3057HRESULT IRangeValueProvider.Interface.get_Value(double* pRetVal) 3061return HRESULT.E_POINTER; 3065return HRESULT.S_OK; 3068HRESULT IRangeValueProvider.Interface.get_IsReadOnly(BOOL* pRetVal) 3072return HRESULT.E_POINTER; 3076return HRESULT.S_OK; 3079HRESULT IRangeValueProvider.Interface.get_Maximum(double* pRetVal) 3083return HRESULT.E_POINTER; 3087return HRESULT.S_OK; 3090HRESULT IRangeValueProvider.Interface.get_Minimum(double* pRetVal) 3094return HRESULT.E_POINTER; 3098return HRESULT.S_OK; 3101HRESULT IRangeValueProvider.Interface.get_LargeChange(double* pRetVal) 3105return HRESULT.E_POINTER; 3109return HRESULT.S_OK; 3112HRESULT IRangeValueProvider.Interface.get_SmallChange(double* pRetVal) 3116return HRESULT.E_POINTER; 3120return HRESULT.S_OK; 3123HRESULT ISelectionProvider.Interface.GetSelection(SAFEARRAY** pRetVal) 3127return HRESULT.E_POINTER; 3135return HRESULT.S_OK; 3138HRESULT ISelectionProvider.Interface.get_CanSelectMultiple(BOOL* pRetVal) 3142return HRESULT.E_POINTER; 3146return HRESULT.S_OK; 3149HRESULT ISelectionProvider.Interface.get_IsSelectionRequired(BOOL* pRetVal) 3153return HRESULT.E_POINTER; 3157return HRESULT.S_OK; 3160HRESULT ISelectionItemProvider.Interface.Select() 3163return HRESULT.S_OK; 3166HRESULT ISelectionItemProvider.Interface.AddToSelection() 3169return HRESULT.S_OK; 3172HRESULT ISelectionItemProvider.Interface.RemoveFromSelection() 3175return HRESULT.S_OK; 3178HRESULT ISelectionItemProvider.Interface.get_IsSelected(BOOL* pRetVal) 3182return HRESULT.E_POINTER; 3186return HRESULT.S_OK; 3189HRESULT ISelectionItemProvider.Interface.get_SelectionContainer(IRawElementProviderSimple** pRetVal) 3193return HRESULT.E_POINTER; 3197return HRESULT.S_OK; 3238HRESULT result = PInvoke.UiaRaiseAutomationEvent(provider, eventId); 3239return result == HRESULT.S_OK; 3250HRESULT result = PInvoke.UiaRaiseAutomationPropertyChangedEvent(provider, propertyId, oldValue, newValue); 3251return result == HRESULT.S_OK; 3271HRESULT result = HRESULT.S_OK; 3284return result == HRESULT.S_OK; 3290HRESULT IScrollItemProvider.Interface.ScrollIntoView() 3293return HRESULT.S_OK; 3298private ComScope<IOleWindow> TryGetOleWindow(out HRESULT result) 3305result = HRESULT.E_NOINTERFACE; 3309HRESULT IDispatch.Interface.GetTypeInfoCount(uint* pctinfo) 3312HRESULT IDispatch.Interface.GetTypeInfo(uint iTInfo, uint lcid, ITypeInfo** ppTInfo) 3315HRESULT IDispatch.Interface.GetIDsOfNames(Guid* riid, PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 3318HRESULT IDispatch.Interface.Invoke( 3329HRESULT IDispatchEx.Interface.GetDispID(BSTR bstrName, uint grfdex, int* pid) 3332HRESULT IDispatchEx.Interface.InvokeEx( 3342HRESULT IDispatchEx.Interface.DeleteMemberByName(BSTR bstrName, uint grfdex) 3345HRESULT IDispatchEx.Interface.DeleteMemberByDispID(int id) 3348HRESULT IDispatchEx.Interface.GetMemberProperties(int id, uint grfdexFetch, FDEX_PROP_FLAGS* pgrfdex) 3351HRESULT IDispatchEx.Interface.GetMemberName(int id, BSTR* pbstrName) 3354HRESULT IDispatchEx.Interface.GetNextDispID(uint grfdex, int id, int* pid) 3357HRESULT IDispatchEx.Interface.GetNameSpaceParent(IUnknown** ppunk)
System\Windows\Forms\Accessibility\AccessibleObject.EnumVariantObject.cs (17)
30HRESULT IEnumVARIANT.Interface.Clone(IEnumVARIANT** ppEnum) 34return HRESULT.E_POINTER; 38return HRESULT.S_OK; 44HRESULT IEnumVARIANT.Interface.Reset() 47using ComScope<IEnumVARIANT> enumVariant = TryGetSystemEnumVARIANT(out HRESULT result); 53return HRESULT.S_OK; 59HRESULT IEnumVARIANT.Interface.Skip(uint celt) 63using ComScope<IEnumVARIANT> enumVariant = TryGetSystemEnumVARIANT(out HRESULT result); 69return HRESULT.S_OK; 75HRESULT IEnumVARIANT.Interface.Next(uint celt, VARIANT* rgVar, uint* pCeltFetched) 110return HRESULT.S_OK; 115return *pCeltFetched == celt ? HRESULT.S_OK : HRESULT.S_FALSE; 128using ComScope<IEnumVARIANT> enumVariant = TryGetSystemEnumVARIANT(out HRESULT result); 160using ComScope<IEnumVARIANT> enumVariant = TryGetSystemEnumVARIANT(out HRESULT result); 210private ComScope<IEnumVARIANT> TryGetSystemEnumVARIANT(out HRESULT result) 217result = HRESULT.E_NOINTERFACE;
System\Windows\Forms\Accessibility\AccessibleObjectExtensions.cs (26)
12public static ComScope<IAccessible> TryGetIAccessible(this AgileComPointer<IAccessible>? agile, out HRESULT result) 19result = HRESULT.E_NOINTERFACE; 29using var accessible = agile.TryGetIAccessible(out HRESULT result); 43result.Succeeded || result == HRESULT.DISP_E_MEMBERNOTFOUND, 53using var accessible = agile.TryGetIAccessible(out HRESULT result); 63result.Succeeded || result == HRESULT.DISP_E_MEMBERNOTFOUND, 73using var accessible = agile.TryGetIAccessible(out HRESULT result); 87using var accessible = agile.TryGetIAccessible(out HRESULT result); 97result.Succeeded || result == HRESULT.DISP_E_MEMBERNOTFOUND, 107using var accessible = agile.TryGetIAccessible(out HRESULT result); 117result.Succeeded || result == HRESULT.DISP_E_MEMBERNOTFOUND, 127using var accessible = agile.TryGetIAccessible(out HRESULT result); 137result.Succeeded || result == HRESULT.DISP_E_MEMBERNOTFOUND, 147using var accessible = agile.TryGetIAccessible(out HRESULT result); 170using var accessible = agile.TryGetIAccessible(out HRESULT result); 186using var accessible = agile.TryGetIAccessible(out HRESULT result); 205using var accessible = agile.TryGetIAccessible(out HRESULT result); 223using var accessible = agile.TryGetIAccessible(out HRESULT result); 233result.Succeeded || result == HRESULT.DISP_E_MEMBERNOTFOUND, 240using var accessible = agile.TryGetIAccessible(out HRESULT result); 248if (result.Failed && result != HRESULT.DISP_E_MEMBERNOTFOUND) 254result.Succeeded || result == HRESULT.DISP_E_MEMBERNOTFOUND, 260using var accessible = agile.TryGetIAccessible(out HRESULT result); 269result.Succeeded || result == HRESULT.DISP_E_MEMBERNOTFOUND, 280using var accessible = agile.TryGetIAccessible(out HRESULT result); 291using var accessible = agile.TryGetIAccessible(out HRESULT result);
System\Windows\Forms\Accessibility\LabelEditAccessibleObject.cs (6)
85internal override HRESULT GetTextSelection(SAFEARRAY** pRetVal) 88internal override HRESULT GetTextVisibleRanges(SAFEARRAY** pRetVal) 91internal override HRESULT GetTextRangeFromChild(IRawElementProviderSimple* childElement, ITextRangeProvider** pRetVal) 94internal override HRESULT GetTextRangeFromPoint(UiaPoint screenLocation, ITextRangeProvider** pRetVal) 100internal override HRESULT GetTextCaretRange(BOOL* isActive, ITextRangeProvider** pRetVal) 103internal override HRESULT GetRangeFromAnnotation(IRawElementProviderSimple* annotationElement, ITextRangeProvider** pRetVal)
System\Windows\Forms\Accessibility\LabelEditUiaTextProvider.cs (19)
72public override HRESULT GetCaretRange(BOOL* isActive, ITextRangeProvider** pRetVal) 76return HRESULT.E_POINTER; 96return HRESULT.S_OK; 149public override HRESULT GetSelection(SAFEARRAY** pRetVal) 153return HRESULT.E_POINTER; 171return HRESULT.S_OK; 204public override HRESULT GetVisibleRanges(SAFEARRAY** pRetVal) 208return HRESULT.E_POINTER; 219return HRESULT.S_OK; 232public override HRESULT RangeFromAnnotation(IRawElementProviderSimple* annotationElement, ITextRangeProvider** pRetVal) 236return HRESULT.E_POINTER; 245return HRESULT.S_OK; 248public override HRESULT RangeFromChild(IRawElementProviderSimple* childElement, ITextRangeProvider** pRetVal) 252return HRESULT.E_POINTER; 258return HRESULT.S_OK; 261public override HRESULT RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal) 265return HRESULT.E_POINTER; 280return HRESULT.S_OK; 302return HRESULT.S_OK;
System\Windows\Forms\ActiveX\AxHost.AxContainer.cs (48)
47protected override unsafe HRESULT Invoke( 75return HRESULT.S_OK; 79return HRESULT.DISP_E_MEMBERNOTFOUND; 552HRESULT IParseDisplayName.Interface.ParseDisplayName( 560HRESULT IOleContainer.Interface.ParseDisplayName( 571return HRESULT.E_NOTIMPL; 574HRESULT IOleContainer.Interface.EnumObjects(uint grfFlags, IEnumUnknown** ppenum) 578return HRESULT.E_POINTER; 597return HRESULT.S_OK; 602return HRESULT.S_OK; 605HRESULT IOleContainer.Interface.LockContainer(BOOL fLock) => HRESULT.E_NOTIMPL; 608HRESULT IOleInPlaceFrame.Interface.GetWindow(HWND* phwnd) 612return HRESULT.E_POINTER; 616return HRESULT.S_OK; 619HRESULT IOleInPlaceFrame.Interface.ContextSensitiveHelp(BOOL fEnterMode) => HRESULT.S_OK; 621HRESULT IOleInPlaceFrame.Interface.GetBorder(RECT* lprectBorder) => HRESULT.E_NOTIMPL; 623HRESULT IOleInPlaceFrame.Interface.RequestBorderSpace(RECT* pborderwidths) => HRESULT.E_NOTIMPL; 625HRESULT IOleInPlaceFrame.Interface.SetBorderSpace(RECT* pborderwidths) => HRESULT.E_NOTIMPL; 638HRESULT IOleInPlaceFrame.Interface.SetActiveObject(IOleInPlaceActiveObject* pActiveObject, PCWSTR pszObjName) 655return HRESULT.S_OK; 658using var oleObject = ComScope<IOleObject>.TryQueryFrom(pActiveObject, out HRESULT hr); 661return HRESULT.S_OK; 696return HRESULT.S_OK; 699HRESULT IOleInPlaceFrame.Interface.InsertMenus(HMENU hmenuShared, OLEMENUGROUPWIDTHS* lpMenuWidths) => HRESULT.S_OK; 701HRESULT IOleInPlaceFrame.Interface.SetMenu(HMENU hmenuShared, nint holemenu, HWND hwndActiveObject) => HRESULT.E_NOTIMPL; 703HRESULT IOleInPlaceFrame.Interface.RemoveMenus(HMENU hmenuShared) => HRESULT.E_NOTIMPL; 705HRESULT IOleInPlaceFrame.Interface.SetStatusText(PCWSTR pszStatusText) => HRESULT.E_NOTIMPL; 707HRESULT IOleInPlaceFrame.Interface.EnableModeless(BOOL fEnable) => HRESULT.E_NOTIMPL; 709HRESULT IOleInPlaceFrame.Interface.TranslateAccelerator(MSG* lpmsg, ushort wID) => HRESULT.S_FALSE; 711HRESULT IOleInPlaceUIWindow.Interface.GetWindow(HWND* phwnd) 714HRESULT IOleInPlaceUIWindow.Interface.ContextSensitiveHelp(BOOL fEnterMode) 717HRESULT IOleInPlaceUIWindow.Interface.GetBorder(RECT* lprectBorder) 720HRESULT IOleInPlaceUIWindow.Interface.RequestBorderSpace(RECT* pborderwidths) 723HRESULT IOleInPlaceUIWindow.Interface.SetBorderSpace(RECT* pborderwidths) 726HRESULT IOleInPlaceUIWindow.Interface.SetActiveObject(IOleInPlaceActiveObject* pActiveObject, PCWSTR pszObjName) 729HRESULT IOleWindow.Interface.GetWindow(HWND* phwnd) 732HRESULT IOleWindow.Interface.ContextSensitiveHelp(BOOL fEnterMode)
System\Windows\Forms\ActiveX\AxHost.AxContainer.ExtenderProxy.cs (25)
51HRESULT IVBGetControl.Interface.EnumControls( 58return HRESULT.E_POINTER; 65return HRESULT.S_OK; 68HRESULT IGetOleObject.Interface.GetOleObject(Guid* riid, void** ppvObj) 72return HRESULT.E_POINTER; 78return HRESULT.E_INVALIDARG; 85return HRESULT.S_OK; 88return HRESULT.E_FAIL; 91HRESULT IGetVBAObject.Interface.GetObject(Guid* riid, void** ppvObj, uint dwReserved) 95return HRESULT.E_INVALIDARG; 101return HRESULT.E_NOINTERFACE; 105return HRESULT.S_OK; 297protected override HRESULT GetDispID(BSTR bstrName, uint grfdex, int* pid) 302return HRESULT.S_OK; 306return HRESULT.DISP_E_UNKNOWNNAME; 309protected override HRESULT GetMemberName(int id, BSTR* pbstrName) 314return HRESULT.S_OK; 318return HRESULT.DISP_E_UNKNOWNNAME; 321protected override HRESULT GetNextDispID(uint grfdex, int id, int* pid) 326return HRESULT.S_OK; 330return HRESULT.S_FALSE; 333protected override HRESULT Invoke( 342protected override HRESULT GetMemberProperties(int dispId, out FDEX_PROP_FLAGS properties) 346return HRESULT.S_OK; 350return HRESULT.DISP_E_UNKNOWNNAME;
System\Windows\Forms\ActiveX\AxHost.AxPerPropertyBrowsingEnum.cs (1)
103HRESULT hr = propertyBrowsing.Value->GetPredefinedValue(_target.Dispid, cookie, &var);
System\Windows\Forms\ActiveX\AxHost.AxPropertyDescriptor.cs (3)
134using var propertyBrowsing = _owner.TryGetComScope<IPerPropertyBrowsing>(out HRESULT hr); 288using var propertyBrowsing = _owner.TryGetComScope<IPerPropertyBrowsing>(out HRESULT hr); 305if (hr == HRESULT.S_OK)
System\Windows\Forms\ActiveX\AxHost.ConnectionPointCookie.cs (3)
49HRESULT hr = cpc.FindConnectionPoint(&riid, &connectionPoint); 104IUnknown* ccw = ComHelpers.TryGetComPointer<IUnknown>(sink, out HRESULT hr); 121using var connectionPoint = TryGetInterface(out HRESULT hr);
System\Windows\Forms\ActiveX\AxHost.cs (31)
243HRESULT hr = oleObject.Value->GetMiscStatus(DVASPECT.DVASPECT_CONTENT, out OLEMISC bits); 1057private static HRESULT SetupLogPixels(bool force) 1064return HRESULT.E_FAIL; 1071return HRESULT.S_OK; 1127HRESULT hr = oleObject.Value->SetExtent(DVASPECT.DVASPECT_CONTENT, (SIZE*)&size); 1128if (hr != HRESULT.S_OK) 1467private HRESULT InPlaceDeactivate() 1692: TryGetComScope<IOleInPlaceActiveObject>(out HRESULT hr); 1705if (hr == HRESULT.S_OK) 1709else if (hr == HRESULT.S_FALSE) 2030HRESULT hr = HRESULT.E_FAIL; 2067return hr != HRESULT.S_FALSE; 2151using var pClientSite = ComHelpers.TryGetComScope<IOleClientSite>(_oleSite, out HRESULT hr); 2183private HRESULT UiDeactivate() 2222HRESULT hr = PInvoke.CoGetClassObject( 2231if (hr == HRESULT.E_NOINTERFACE) 2260HRESULT hr = PInvokeCore.CoCreateInstance( 2277HRESULT hr = PInvoke.CoGetClassObject( 2343using var categorizeProperties = ComHelpers.TryGetComScope<ICategorizeProperties>(_instance, out HRESULT hr); 2745using var persistStreamInit = ComHelpers.TryGetComScope<IPersistStreamInit>(_instance, out HRESULT hr); 2794using (var persistStreamInit = ComHelpers.TryGetComScope<IPersistStreamInit>(_instance, out HRESULT hr)) 2925using var pages = ComHelpers.TryGetComScope<ISpecifyPropertyPages>(_instance, out HRESULT hr); 2936using var pages = ComHelpers.TryGetComScope<ISpecifyPropertyPages>(_instance, out HRESULT hr); 2959using ComScope<IUnknown> unknown = ComHelpers.TryGetComScope<IUnknown>(_instance, out HRESULT hr); 3012using var pages = ComHelpers.TryGetComScope<ISpecifyPropertyPages>(_instance, out HRESULT hr); 3351HRESULT hr = iqa.QuickActivate(&qaContainer, &qaControl); 3522private ComScope<T> TryGetComScope<T>(out HRESULT hr) where T : unmanaged, IComIID 3557using var iPicture = ComHelpers.TryGetComScope<IPictureDisp>(picture, out HRESULT hr); 3581using var pictureDisp = ComHelpers.TryGetComScope<IPictureDisp>(picture, out HRESULT hr); 3685HRESULT hr = PInvoke.OleCreateFontIndirect(in fontDesc, in IID.GetRef<IFont>(), out void* lplpvObj);
System\Windows\Forms\ActiveX\AxHost.EnumUnknown.cs (13)
28unsafe HRESULT IEnumUnknown.Interface.Next(uint celt, IUnknown** rgelt, uint* pceltFetched) 32return HRESULT.E_POINTER; 42return HRESULT.E_INVALIDARG; 67return fetched != celt ? HRESULT.S_FALSE : HRESULT.S_OK; 70HRESULT IEnumUnknown.Interface.Skip(uint celt) 73return _location >= _size ? HRESULT.S_FALSE : HRESULT.S_OK; 76HRESULT IEnumUnknown.Interface.Reset() 79return HRESULT.S_OK; 82unsafe HRESULT IEnumUnknown.Interface.Clone(IEnumUnknown** ppenum) 86return HRESULT.E_POINTER; 90return HRESULT.S_OK;
System\Windows\Forms\ActiveX\AxHost.OleInterfaces.cs (88)
71HRESULT IGetVBAObject.Interface.GetObject(Guid* riid, void** ppvObj, uint dwReserved) 75return HRESULT.E_INVALIDARG; 81return HRESULT.E_NOINTERFACE; 85return HRESULT.S_OK; 90HRESULT IVBGetControl.Interface.EnumControls( 97return HRESULT.S_OK; 101HRESULT ISimpleFrameSite.Interface.PreMessageFilter( 107uint* pdwCookie) => HRESULT.S_OK; 109HRESULT ISimpleFrameSite.Interface.PostMessageFilter( 115uint dwCookie) => HRESULT.S_FALSE; 117protected override unsafe HRESULT Invoke( 128return HRESULT.E_POINTER; 135return HRESULT.S_OK; 138return HRESULT.DISP_E_MEMBERNOTFOUND; 142HRESULT IOleControlSite.Interface.OnControlInfoChanged() => HRESULT.S_OK; 144HRESULT IOleControlSite.Interface.LockInPlaceActive(BOOL fLock) => HRESULT.E_NOTIMPL; 146HRESULT IOleControlSite.Interface.GetExtendedControl(IDispatch** ppDisp) 150return HRESULT.E_POINTER; 156return HRESULT.E_NOTIMPL; 160return HRESULT.S_OK; 163HRESULT IOleControlSite.Interface.TransformCoords(POINTL* pPtlHimetric, PointF* pPtfContainer, uint dwFlags) 167return HRESULT.E_INVALIDARG; 170HRESULT hr = SetupLogPixels(force: false); 191return HRESULT.E_INVALIDARG; 208return HRESULT.E_INVALIDARG; 213return HRESULT.E_INVALIDARG; 216return HRESULT.S_OK; 219HRESULT IOleControlSite.Interface.TranslateAccelerator(MSG* pMsg, KEYMODIFIERS grfModifiers) 223return HRESULT.E_POINTER; 233return f ? HRESULT.S_OK : HRESULT.S_FALSE; 241HRESULT IOleControlSite.Interface.OnFocus(BOOL fGotFocus) => HRESULT.S_OK; 243HRESULT IOleControlSite.Interface.ShowPropertyFrame() 248return HRESULT.S_OK; 251return HRESULT.E_NOTIMPL; 255HRESULT IOleClientSite.Interface.SaveObject() => HRESULT.E_NOTIMPL; 257HRESULT IOleClientSite.Interface.GetMoniker(uint dwAssign, uint dwWhichMoniker, IMoniker** ppmk) 261return HRESULT.E_POINTER; 265return HRESULT.E_NOTIMPL; 268HRESULT IOleClientSite.Interface.GetContainer(IOleContainer** ppContainer) 272return HRESULT.E_POINTER; 276return HRESULT.S_OK; 279HRESULT IOleClientSite.Interface.ShowObject() 284return HRESULT.S_OK; 302return HRESULT.S_OK; 323return HRESULT.S_OK; 326HRESULT IOleClientSite.Interface.OnShowWindow(BOOL fShow) => HRESULT.S_OK; 328HRESULT IOleClientSite.Interface.RequestNewObjectLayout() => HRESULT.E_NOTIMPL; 332HRESULT IOleWindow.Interface.GetWindow(HWND* phwnd) 335HRESULT IOleWindow.Interface.ContextSensitiveHelp(BOOL fEnterMode) 338HRESULT IOleInPlaceSite.Interface.GetWindow(HWND* phwnd) 342return HRESULT.E_POINTER; 346return HRESULT.S_OK; 349HRESULT IOleInPlaceSite.Interface.ContextSensitiveHelp(BOOL fEnterMode) => HRESULT.E_NOTIMPL; 351HRESULT IOleInPlaceSite.Interface.CanInPlaceActivate() => HRESULT.S_OK; 353HRESULT IOleInPlaceSite.Interface.OnInPlaceActivate() 358return HRESULT.S_OK; 361HRESULT IOleInPlaceSite.Interface.OnUIActivate() 365return HRESULT.S_OK; 368HRESULT IOleInPlaceSite.Interface.GetWindowContext( 389return HRESULT.E_POINTER; 405return HRESULT.S_OK; 408HRESULT IOleInPlaceSite.Interface.Scroll(SIZE scrollExtant) => HRESULT.S_FALSE; 410HRESULT IOleInPlaceSite.Interface.OnUIDeactivate(BOOL fUndoable) 418return HRESULT.S_OK; 421HRESULT IOleInPlaceSite.Interface.OnInPlaceDeactivate() 431return HRESULT.S_OK; 434HRESULT IOleInPlaceSite.Interface.DiscardUndoState() => HRESULT.S_OK; 436HRESULT IOleInPlaceSite.Interface.DeactivateAndUndo() 442HRESULT IOleInPlaceSite.Interface.OnPosRectChange(RECT* lprcPosRect) 446return HRESULT.E_INVALIDARG; 466return HRESULT.S_OK; 471HRESULT IPropertyNotifySink.Interface.OnChanged(int dispid) 477return HRESULT.S_OK; 519return HRESULT.S_OK; 536return HRESULT.S_OK; 539HRESULT IPropertyNotifySink.Interface.OnRequestEdit(int dispid) => HRESULT.S_OK;
System\Windows\Forms\ActiveX\AxHost.PropertyBagStream.cs (8)
64HRESULT IPropertyBag.Interface.Read(PCWSTR pszPropName, VARIANT* pVar, IErrorLog* pErrorLog) 68return HRESULT.E_POINTER; 76return HRESULT.E_INVALIDARG; 87return (*pVar).Equals(default(VARIANT)) ? HRESULT.E_INVALIDARG : HRESULT.S_OK; 90HRESULT IPropertyBag.Interface.Write(PCWSTR pszPropName, VARIANT* pVar) 94return HRESULT.E_POINTER; 101return HRESULT.S_OK;
System\Windows\Forms\ActiveX\AxHost.State.cs (1)
164HRESULT hr = _buffer is null
System\Windows\Forms\ActiveX\AxHost.VBFormat.cs (5)
14HRESULT IVBFormat.Interface.Format( 26return HRESULT.E_INVALIDARG; 32return HRESULT.E_INVALIDARG; 38HRESULT hr = PInvoke.VarFormat( 63return HRESULT.S_OK;
System\Windows\Forms\ActiveX\Control.ActiveXFontMarshaler.cs (1)
60using var nativeFont = ComScope<IFont>.TryQueryFrom((IUnknown*)pObj, out HRESULT hr);
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (77)
211using var font = ComScope<IFont>.TryQueryFrom(value.data.punkVal, out HRESULT hr); 292internal HRESULT Advise(IAdviseSink* pAdvSink, uint* token) 297HRESULT hr = PInvoke.CreateOleAdviseHolder(&holder); 332internal unsafe HRESULT DoVerb( 400return HRESULT.E_NOTIMPL; 403return HRESULT.S_OK; 407internal HRESULT Draw( 427return HRESULT.DV_E_DVASPECT; 437return HRESULT.VIEW_E_DRAW; 496return HRESULT.S_OK; 545internal unsafe HRESULT GetAdvise(DVASPECT* pAspects, ADVF* pAdvf, IAdviseSink** ppAdvSink) 577return HRESULT.S_OK; 592using var dispatch = _clientSite.TryGetInterface<IDispatch>(out HRESULT hr); 612internal unsafe HRESULT GetControlInfo(CONTROLINFO* pControlInfo) 688return HRESULT.S_OK; 696ThrowHr(HRESULT.DV_E_DVASPECT); 747internal unsafe HRESULT GetWindow(HWND* phwnd) 751return HRESULT.E_POINTER; 757return HRESULT.E_FAIL; 761return HRESULT.S_OK; 790using var inPlaceSite = _clientSite.TryGetInterface<IOleInPlaceSite>(out HRESULT hr); 800if (hr != HRESULT.S_OK) 804hr = HRESULT.E_FAIL; 909&& hr != HRESULT.OLE_E_INVALIDRECT 910&& hr != HRESULT.INPLACE_E_NOTOOLSPACE 911&& hr != HRESULT.E_NOTIMPL) 920&& hr != HRESULT.OLE_E_INVALIDRECT 921&& hr != HRESULT.INPLACE_E_NOTOOLSPACE 922&& hr != HRESULT.E_NOTIMPL) 930internal HRESULT InPlaceDeactivate() 935return HRESULT.S_OK; 952using var inPlaceSite = _clientSite.TryGetInterface<IOleInPlaceSite>(out HRESULT hr); 965return HRESULT.S_OK; 969internal HRESULT IsDirty() => _activeXState[s_isDirty] ? HRESULT.S_OK : HRESULT.S_FALSE; 997internal HRESULT Load(IStorage* stg) 1000HRESULT hr = stg->OpenStream( 1006if (hr == HRESULT.STG_E_FILENOTFOUND) 1074HRESULT errorCode = HRESULT.S_OK; 1086errorCode = e is ExternalException ee ? (HRESULT)ee.ErrorCode : HRESULT.E_FAIL; 1317HRESULT hr = inPlaceFrame.Value->SetBorderSpace(null); 1318if (!hr.Succeeded && hr != HRESULT.INPLACE_E_NOTOOLSPACE && hr != HRESULT.E_NOTIMPL) 1332using var controlSite = _clientSite.TryGetInterface<IOleControlSite>(out HRESULT hr); 1355internal unsafe HRESULT QuickActivate(QACONTAINER* pQaContainer, QACONTROL* pQaControl) 1359return HRESULT.E_FAIL; 1417using var container = ComHelpers.TryGetComScope<IConnectionPointContainer>(_control, out HRESULT hr); 1432return HRESULT.S_OK; 1458internal HRESULT Save(IStorage* storage, BOOL fSameAsLoad) 1461HRESULT hr = storage->CreateStream( 1600internal HRESULT SetAdvise(DVASPECT aspects, ADVF advf, IAdviseSink* pAdvSink) 1605return HRESULT.DV_E_DVASPECT; 1627return HRESULT.S_OK; 1680ThrowHr(HRESULT.DV_E_DVASPECT); 1698using var clientSite = _clientSite.TryGetInterface<IOleInPlaceSite>(out HRESULT hr); 1752internal unsafe HRESULT SetObjectRects(RECT* lprcPosRect, RECT* lprcClipRect) 1756return HRESULT.E_INVALIDARG; 1830return HRESULT.S_OK; 1837internal static void ThrowHr(HRESULT hr) => throw new ExternalException(SR.ExternalException, (int)hr); 1840internal unsafe HRESULT TranslateAccelerator(MSG* lpmsg) 1844return HRESULT.E_POINTER; 1873return HRESULT.S_OK; 1889return HRESULT.S_OK; 1900return HRESULT.S_FALSE; 1903using var controlSite = _clientSite.TryGetInterface<IOleControlSite>(out HRESULT hr); 1906return HRESULT.S_FALSE; 1929internal HRESULT UIDeactivate() 1934return HRESULT.S_OK; 1957using var inPlaceSite = _clientSite.TryGetInterface<IOleInPlaceSite>(out HRESULT hr); 1964return HRESULT.S_OK; 1968internal HRESULT Unadvise(uint dwConnection) 1972return HRESULT.E_FAIL; 1989using var inPlaceSite = _clientSite.TryGetInterface<IOleInPlaceSite>(out HRESULT hr); 2059using var controlSite = _clientSite.TryGetInterface<IOleControlSite>(out HRESULT hr);
System\Windows\Forms\ActiveX\Control.ActiveXImpl.PropertyBagStream.cs (7)
49HRESULT IPropertyBag.Interface.Read(PCWSTR pszPropName, VARIANT* pVar, IErrorLog* pErrorLog) 53return HRESULT.E_POINTER; 60return HRESULT.E_INVALIDARG; 65return HRESULT.S_OK; 68HRESULT IPropertyBag.Interface.Write(PCWSTR pszPropName, VARIANT* pVar) 72return HRESULT.E_POINTER; 77return HRESULT.S_OK;
System\Windows\Forms\ActiveX\Control.ActiveXVerbEnum.cs (11)
25public unsafe HRESULT Next(uint celt, OLEVERB* rgelt, uint* pceltFetched) 29return HRESULT.E_POINTER; 56return celt == 0 ? HRESULT.S_OK : HRESULT.S_FALSE; 59public HRESULT Skip(uint celt) 64return HRESULT.S_OK; 68return HRESULT.S_FALSE; 71public HRESULT Reset() 74return HRESULT.S_OK; 77public HRESULT Clone(IEnumOLEVERB** ppenum) 80return HRESULT.S_OK;
System\Windows\Forms\ActiveX\Control.AxSourcingSite.cs (1)
42using var document = container.TryQuery<IHTMLDocument>(out HRESULT hr);
System\Windows\Forms\ActiveX\Control_ActiveXControlInterfaces.cs (146)
29unsafe HRESULT IOleControl.Interface.GetControlInfo(CONTROLINFO* pCI) 33return HRESULT.E_POINTER; 55unsafe HRESULT IOleControl.Interface.OnMnemonic(MSG* pMsg) 59return HRESULT.E_INVALIDARG; 65return HRESULT.S_OK; 69HRESULT IOleControl.Interface.OnAmbientPropertyChange(int dispID) 72return HRESULT.S_OK; 76HRESULT IOleControl.Interface.FreezeEvents(BOOL bFreeze) 80return HRESULT.S_OK; 84HRESULT IOleInPlaceActiveObject.Interface.GetWindow(HWND* phwnd) 88HRESULT IOleInPlaceActiveObject.Interface.ContextSensitiveHelp(BOOL fEnterMode) 92HRESULT IOleInPlaceActiveObject.Interface.TranslateAccelerator(MSG* lpmsg) 96HRESULT IOleInPlaceActiveObject.Interface.OnFrameWindowActivate(BOOL fActivate) 99return HRESULT.S_OK; 103HRESULT IOleInPlaceActiveObject.Interface.OnDocWindowActivate(BOOL fActivate) 106return HRESULT.S_OK; 110HRESULT IOleInPlaceActiveObject.Interface.ResizeBorder(RECT* prcBorder, IOleInPlaceUIWindow* pUIWindow, BOOL fFrameWindow) => 111HRESULT.S_OK; 114HRESULT IOleInPlaceActiveObject.Interface.EnableModeless(BOOL fEnable) => HRESULT.E_NOTIMPL; 117HRESULT IOleInPlaceObject.Interface.GetWindow(HWND* phwnd) => ActiveXInstance.GetWindow(phwnd); 120HRESULT IOleInPlaceObject.Interface.ContextSensitiveHelp(BOOL fEnterMode) 127return HRESULT.S_OK; 131HRESULT IOleInPlaceObject.Interface.InPlaceDeactivate() => ActiveXInstance.InPlaceDeactivate(); 134HRESULT IOleInPlaceObject.Interface.UIDeactivate() => ActiveXInstance.UIDeactivate(); 137HRESULT IOleInPlaceObject.Interface.SetObjectRects(RECT* lprcPosRect, RECT* lprcClipRect) => 141HRESULT IOleInPlaceObject.Interface.ReactivateAndUndo() => HRESULT.S_OK; 144HRESULT IOleObject.Interface.SetClientSite(IOleClientSite* pClientSite) 147return HRESULT.S_OK; 151HRESULT IOleObject.Interface.GetClientSite(IOleClientSite** ppClientSite) 155return HRESULT.E_POINTER; 159return HRESULT.S_OK; 163HRESULT IOleObject.Interface.SetHostNames(PCWSTR szContainerApp, PCWSTR szContainerObj) => 165HRESULT.S_OK; 168HRESULT IOleObject.Interface.Close(uint dwSaveOption) 171return HRESULT.S_OK; 175HRESULT IOleObject.Interface.SetMoniker(uint dwWhichMoniker, IMoniker* pmk) => HRESULT.E_NOTIMPL; 178HRESULT IOleObject.Interface.GetMoniker(uint dwAssign, uint dwWhichMoniker, IMoniker** ppmk) 182return HRESULT.E_POINTER; 186return HRESULT.E_NOTIMPL; 190HRESULT IOleObject.Interface.InitFromData(ComIDataObject* pDataObject, BOOL fCreation, uint dwReserved) => 191HRESULT.E_NOTIMPL; 194HRESULT IOleObject.Interface.GetClipboardData(uint dwReserved, ComIDataObject** ppDataObject) 198return HRESULT.E_POINTER; 202return HRESULT.E_NOTIMPL; 206HRESULT IOleObject.Interface.DoVerb( 222HRESULT IOleObject.Interface.EnumVerbs(IEnumOLEVERB** ppEnumOleVerb) 226return HRESULT.E_POINTER; 230return HRESULT.S_OK; 234HRESULT IOleObject.Interface.Update() => HRESULT.S_OK; 237HRESULT IOleObject.Interface.IsUpToDate() => HRESULT.S_OK; 240HRESULT IOleObject.Interface.GetUserClassID(Guid* pClsid) 244return HRESULT.E_POINTER; 248return HRESULT.S_OK; 252HRESULT IOleObject.Interface.GetUserType(uint dwFormOfType, PWSTR* pszUserType) 256return HRESULT.E_POINTER; 262return HRESULT.S_OK; 266HRESULT IOleObject.Interface.SetExtent(DVASPECT dwDrawAspect, SIZE* psizel) 270return HRESULT.E_INVALIDARG; 274return HRESULT.S_OK; 278HRESULT IOleObject.Interface.GetExtent(DVASPECT dwDrawAspect, SIZE* psizel) 282return HRESULT.E_INVALIDARG; 286return HRESULT.S_OK; 290HRESULT IOleObject.Interface.Advise(IAdviseSink* pAdvSink, uint* pdwConnection) 294return HRESULT.E_POINTER; 301HRESULT IOleObject.Interface.Unadvise(uint dwConnection) => ActiveXInstance.Unadvise(dwConnection); 304HRESULT IOleObject.Interface.EnumAdvise(IEnumSTATDATA** ppenumAdvise) 308return HRESULT.E_POINTER; 312return HRESULT.E_NOTIMPL; 316HRESULT IOleObject.Interface.GetMiscStatus(DVASPECT dwAspect, OLEMISC* pdwStatus) 320return HRESULT.E_POINTER; 326return HRESULT.DV_E_DVASPECT; 341return HRESULT.S_OK; 345HRESULT IOleObject.Interface.SetColorScheme(LOGPALETTE* pLogpal) => HRESULT.S_OK; 348HRESULT IOleWindow.Interface.GetWindow(HWND* phwnd) => ((IOleInPlaceObject.Interface)this).GetWindow(phwnd); 351HRESULT IOleWindow.Interface.ContextSensitiveHelp(BOOL fEnterMode) 354unsafe HRESULT IPersist.Interface.GetClassID(Guid* pClassID) 358return HRESULT.E_POINTER; 362return HRESULT.S_OK; 366HRESULT IPersistPropertyBag.Interface.InitNew() => HRESULT.S_OK; 369HRESULT IPersistPropertyBag.Interface.GetClassID(Guid* pClassID) 373return HRESULT.E_POINTER; 377return HRESULT.S_OK; 381HRESULT IPersistPropertyBag.Interface.Load(IPropertyBag* pPropBag, IErrorLog* pErrorLog) 384return HRESULT.S_OK; 388HRESULT IPersistPropertyBag.Interface.Save(IPropertyBag* pPropBag, BOOL fClearDirty, BOOL fSaveAllProperties) 391return HRESULT.S_OK; 395HRESULT IPersistStorage.Interface.GetClassID(Guid* pClassID) 399return HRESULT.E_POINTER; 403return HRESULT.S_OK; 407HRESULT IPersistStorage.Interface.IsDirty() => ActiveXInstance.IsDirty(); 410HRESULT IPersistStorage.Interface.InitNew(IStorage* pStg) => HRESULT.S_OK; 413HRESULT IPersistStorage.Interface.Load(IStorage* pStg) 417return HRESULT.E_POINTER; 424HRESULT IPersistStorage.Interface.Save(IStorage* pStgSave, BOOL fSameAsLoad) 428return HRESULT.E_POINTER; 435HRESULT IPersistStorage.Interface.SaveCompleted(IStorage* pStgNew) => HRESULT.S_OK; 438HRESULT IPersistStorage.Interface.HandsOffStorage() => HRESULT.S_OK; 441HRESULT IPersistStreamInit.Interface.GetClassID(Guid* pClassID) 445return HRESULT.E_POINTER; 449return HRESULT.S_OK; 453HRESULT IPersistStreamInit.Interface.IsDirty() => ActiveXInstance.IsDirty(); 456HRESULT IPersistStreamInit.Interface.Load(IStream* pStm) 460return HRESULT.E_POINTER; 464return HRESULT.S_OK; 468HRESULT IPersistStreamInit.Interface.Save(IStream* pStm, BOOL fClearDirty) 472return HRESULT.E_POINTER; 476return HRESULT.S_OK; 480HRESULT IPersistStreamInit.Interface.GetSizeMax(ulong* pCbSize) => HRESULT.S_OK; 483HRESULT IPersistStreamInit.Interface.InitNew() => HRESULT.S_OK; 486HRESULT IQuickActivate.Interface.QuickActivate(QACONTAINER* pQaContainer, QACONTROL* pQaControl) => 490HRESULT IQuickActivate.Interface.SetContentExtent(SIZE* pSizel) 494return HRESULT.E_INVALIDARG; 498return HRESULT.S_OK; 502HRESULT IQuickActivate.Interface.GetContentExtent(SIZE* pSizel) 506return HRESULT.E_INVALIDARG; 510return HRESULT.S_OK; 514HRESULT IViewObject.Interface.Draw( 526HRESULT hr = ActiveXInstance.Draw( 540return HRESULT.S_OK; 544HRESULT IViewObject.Interface.GetColorSet( 552HRESULT.E_NOTIMPL; 555HRESULT IViewObject.Interface.Freeze(DVASPECT dwDrawAspect, int lindex, void* pvAspect, uint* pdwFreeze) => 556HRESULT.E_NOTIMPL; 559HRESULT IViewObject.Interface.Unfreeze(uint dwFreeze) => HRESULT.E_NOTIMPL; 562HRESULT IViewObject.Interface.SetAdvise(DVASPECT aspects, uint advf, IAdviseSink* pAdvSink) => 566HRESULT IViewObject.Interface.GetAdvise(uint* pAspects, uint* pAdvf, IAdviseSink** ppAdvSink) => 570HRESULT IViewObject2.Interface.Draw( 594HRESULT IViewObject2.Interface.GetColorSet( 604HRESULT IViewObject2.Interface.Freeze(DVASPECT dwDrawAspect, int lindex, void* pvAspect, uint* pdwFreeze) 608HRESULT IViewObject2.Interface.Unfreeze(uint dwFreeze) 612HRESULT IViewObject2.Interface.SetAdvise(DVASPECT aspects, uint advf, IAdviseSink* pAdvSink) 616HRESULT IViewObject2.Interface.GetAdvise(uint* pAspects, uint* pAdvf, IAdviseSink** ppAdvSink) 620HRESULT IViewObject2.Interface.GetExtent(DVASPECT dwDrawAspect, int lindex, DVTARGETDEVICE* ptd, SIZE* lpsizel)
System\Windows\Forms\Application.ComponentManager.cs (2)
39unsafe HRESULT IMsoComponentManager.Interface.QueryService( 49return HRESULT.E_NOINTERFACE;
System\Windows\Forms\Application.ComponentThreadContext.cs (1)
103using var serviceProvider = messageFilter.TryQuery<ComIServiceProvider>(out HRESULT hr);
System\Windows\Forms\Application.ThreadContext.cs (2)
561HRESULT hr = PInvokeCore.OleInitialize(pvReserved: (void*)null); 564if (hr == HRESULT.RPC_E_CHANGED_MODE)
System\Windows\Forms\ComponentModel\COM2Interop\Com2AboutBoxPropertyDescriptor.AboutBoxUITypeEditor.cs (1)
19using var dispatch = ComHelpers.TryGetComScope<IDispatch>(context.Instance, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2ComponentEditor.cs (2)
16using var propertyBrowsing = ComHelpers.TryGetComScope<IPerPropertyBrowsing>(comObject, out HRESULT hr); 54using var propertyBrowsing = ComHelpers.TryGetComScope<IPerPropertyBrowsing>(obj, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2ExtendedBrowsingHandler.cs (1)
15public static ComScope<T> TryGetComScope(object? @object, out HRESULT hr)
System\Windows\Forms\ComponentModel\COM2Interop\COM2FontConverter.cs (2)
31using var iFont = ComScope<IFont>.TryQueryFrom((IUnknown*)nativeValue, out HRESULT hr); 86using var font = ComScope<IFont>.TryQueryFrom((IUnknown*)nativeValue, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2ICategorizePropertiesHandler.cs (1)
16using var categorizeProperties = TryGetComScope(@object, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2IDispatchConverter.cs (1)
46using var dispatch = ComHelpers.TryGetComScope<IDispatch>(value, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2IManagedPerPropertyBrowsingHandler.cs (3)
36using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 53HRESULT hr = propertyBrowsing->GetPropertyAttributes(dispid, &attributeCount, &nativeTypeNames, &nativeValues); 54if (hr != HRESULT.S_OK || attributeCount == 0 || nativeValues is null)
System\Windows\Forms\ComponentModel\COM2Interop\Com2IPerPropertyBrowsingHandler.Com2IPerPropertyBrowsingEnum.cs (3)
64using var ppb = ComHelpers.TryGetComScope<IPerPropertyBrowsing>(Target.TargetObject, out HRESULT hr); 129if (hr == HRESULT.S_OK) 169using var propertyBrowsing = ComHelpers.TryGetComScope<IPerPropertyBrowsing>(Target.TargetObject, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\Com2IPerPropertyBrowsingHandler.Com2IPerPropertyEnumConverter.cs (1)
31out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2IPerPropertyBrowsingHandler.cs (5)
35HRESULT hr = propertyBrowsing->MapPropertyToPage(dispid, &guid); 61using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 77using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 98using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 122if (hr == HRESULT.S_OK)
System\Windows\Forms\ComponentModel\COM2Interop\COM2IProvidePropertyBuilderHandler.cs (2)
54using var propertyBuilder = TryGetComScope(sender.TargetObject, out HRESULT hr); 73using var propertyBuilder = TryGetComScope(sender.TargetObject, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2IVsPerPropertyBrowsingHandler.cs (19)
18using var browsing = TryGetComScope(property.TargetObject, out HRESULT hr); 23if (hr == HRESULT.S_OK) 56using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 65if (hr == HRESULT.S_OK && !helpString.IsNull) 73using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 80hr = HRESULT.S_OK; 90if (hr == HRESULT.S_OK) 101if (hr == HRESULT.S_OK && display) 110using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 127using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 137if (hr == HRESULT.S_OK && !name.IsNull) 145using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 155if (hr == HRESULT.S_OK) 163using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 177? new Com2IDispatchConverter(sender, hr == HRESULT.S_OK && result) 178: new Com2IDispatchConverter(hr == HRESULT.S_OK && result, e.TypeConverter); 184using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 202using var propertyBrowsing = TryGetComScope(sender.TargetObject, out HRESULT hr); 212if (hr == HRESULT.S_OK && !isDefault)
System\Windows\Forms\ComponentModel\COM2Interop\COM2PictureConverter.cs (1)
41using var picture = ComScope<IPicture>.TryQueryFrom((IUnknown*)nativeValue, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2Properties.cs (1)
199HRESULT hr = pTypeInfos[i]->GetTypeAttr(&pTypeAttr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyBuilderUITypeEditor.cs (1)
49using var propertyBuilder = ComHelpers.TryGetComScope<IProvidePropertyBuilder>(target, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (11)
212using var dispatch = ComHelpers.TryGetComScope<IDispatch>(TargetObject, out HRESULT hr); 613using var dispatch = ComHelpers.TryGetComScope<IDispatch>(component, out HRESULT hr); 622if (hr != HRESULT.S_OK && hr != HRESULT.S_FALSE) 832using var dispatch = ComHelpers.TryGetComScope<IDispatch>(owner, out HRESULT hr); 858if (hr == HRESULT.S_OK || hr == HRESULT.S_FALSE) 865if (hr == HRESULT.E_ABORT || hr == HRESULT.OLE_E_PROMPTSAVECANCELLED) 871HRESULT setError = hr; 881if (hr.Succeeded && hr != HRESULT.S_FALSE && !errorInfo.IsNull)
System\Windows\Forms\ComponentModel\COM2Interop\COM2TypeInfoProcessor.cs (13)
71using var provideClassInfo = ComHelpers.TryGetComScope<IProvideClassInfo>(comObject, out HRESULT hr); 80using var dispatch = ComHelpers.TryGetComScope<IDispatch>(comObject, out HRESULT hr); 98using var classInfo = ComHelpers.TryGetComScope<IProvideMultipleClassInfo>(comObject, out HRESULT hr); 148HRESULT hr = ComNativeDescriptor.GetPropertyValue(dispatch, "__id", out _); 286HRESULT hr = typeInfo->GetTypeAttr(&pTypeAttr); 316HRESULT hr = HRESULT.S_OK; 439HRESULT hr; 460hr = HRESULT.S_OK; 492HRESULT hr = typeInfo->GetDocumentation(dispid, &nameBstr, &helpStringBstr, null, null); 599HRESULT hr = typeInfo->GetTypeAttr(&typeAttributes); 696HRESULT hr = enumTypeInfo->GetTypeAttr(&pTypeAttr); 825HRESULT hr = typeInfo->GetTypeAttr(&pTypeAttr);
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.ComTypeDescriptor.cs (1)
33using var dispatch = ComHelpers.TryGetComScope<IDispatch>(_instance, out HRESULT hr);
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.cs (11)
59using var dispatch = ComHelpers.TryGetComScope<IDispatch>(component, out HRESULT hr); 73using var propertyBrowsing = ComHelpers.TryGetComScope<IVsPerPropertyBrowsing>(component, out HRESULT hr); 111HRESULT hr = GetPropertyValue(dispatch, dispid, out object? value); 122internal static HRESULT GetPropertyValue(IDispatch* dispatch, string propertyName, out object? value) 131HRESULT hr = dispatch->GetIDsOfNames(&guid, (PWSTR*)&n, 1, PInvokeCore.GetThreadLocale(), &dispid); 138? HRESULT.DISP_E_MEMBERNOTFOUND 143internal static HRESULT GetPropertyValue(IDispatch* dispatch, int dispid, out object? value) 148HRESULT hr = dispatch->TryGetProperty(dispid, &result, PInvokeCore.GetThreadLocale()); 159hr = (HRESULT)ex.HResult; 172using var dispatch = ComHelpers.TryGetComScope<IDispatch>(@object, out HRESULT hr); 244using var browsing = ComHelpers.TryGetComScope<IVSMDPerPropertyBrowsing>(component, out HRESULT hr);
System\Windows\Forms\Control.cs (6)
9576HRESULT hr = PInvokeCore.RegisterDragDrop(this, new DropTarget(this)); 9577if (hr != HRESULT.S_OK && hr != HRESULT.DRAGDROP_E_ALREADYREGISTERED) 9585HRESULT hr = PInvokeCore.RevokeDragDrop(this); 9586if (hr != HRESULT.S_OK && hr != HRESULT.DRAGDROP_E_NOTREGISTERED)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildEditUiaProvider.cs (6)
109internal override unsafe HRESULT GetTextSelection(SAFEARRAY** pRetVal) => _textProvider.GetSelection(pRetVal); 111internal override unsafe HRESULT GetTextVisibleRanges(SAFEARRAY** pRetVal) => _textProvider.GetVisibleRanges(pRetVal); 113internal override unsafe HRESULT GetTextRangeFromChild(IRawElementProviderSimple* childElement, ITextRangeProvider** pRetVal) 116internal override unsafe HRESULT GetTextRangeFromPoint(UiaPoint screenLocation, ITextRangeProvider** pRetVal) 121internal override unsafe HRESULT GetTextCaretRange(BOOL* isActive, ITextRangeProvider** pRetVal) 124internal override unsafe HRESULT GetRangeFromAnnotation(IRawElementProviderSimple* annotationElement, ITextRangeProvider** pRetVal)
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxChildListUiaProvider.cs (1)
43using var accessible = SystemIAccessible.TryGetIAccessible(out HRESULT result);
System\Windows\Forms\Controls\ComboBox\ComboBox.ComboBoxUiaTextProvider.cs (23)
118public override HRESULT GetCaretRange(BOOL* isActive, ITextRangeProvider** pRetVal) 122return HRESULT.E_POINTER; 130return HRESULT.S_OK; 142return HRESULT.S_OK; 204public override HRESULT GetSelection(SAFEARRAY** pRetVal) 208return HRESULT.E_POINTER; 214return HRESULT.S_OK; 232return HRESULT.S_OK; 265public override HRESULT GetVisibleRanges(SAFEARRAY** pRetVal) 269return HRESULT.E_POINTER; 275return HRESULT.S_OK; 286return HRESULT.S_OK; 299public override HRESULT RangeFromAnnotation(IRawElementProviderSimple* annotationElement, ITextRangeProvider** pRetVal) 303return HRESULT.E_POINTER; 312return HRESULT.S_OK; 315public override HRESULT RangeFromChild(IRawElementProviderSimple* childElement, ITextRangeProvider** pRetVal) 319return HRESULT.E_POINTER; 325return HRESULT.S_OK; 328public override HRESULT RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal) 332return HRESULT.E_POINTER; 338return HRESULT.S_OK; 353return HRESULT.S_OK; 375return HRESULT.S_OK;
System\Windows\Forms\Controls\ImageList\ImageList.NativeImageList.cs (1)
26using var stream = ComHelpers.TryGetComScope<IStream>(pstm, out HRESULT hr);
System\Windows\Forms\Controls\PropertyGrid\PropertyGrid.cs (4)
2354HRESULT IPropertyNotifySink.Interface.OnChanged(int dispID) 2386return HRESULT.S_OK; 2850HRESULT IPropertyNotifySink.Interface.OnRequestEdit(int dispID) 2853return HRESULT.S_OK;
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
3035if (expectedLength == (int)HRESULT.E_INVALIDARG)
System\Windows\Forms\Controls\RichTextBox\RichTextBox.OleCallback.cs (28)
25public HRESULT GetNewStorage(IStorage** lplpstg) 29return HRESULT.E_POINTER; 35return HRESULT.E_FAIL; 39HRESULT hr = PInvoke.CreateILockBytesOnHGlobal(default, fDeleteOnRelease: true, pLockBytes); 56public HRESULT GetInPlaceContext( 59OLEINPLACEFRAMEINFO* lpFrameInfo) => HRESULT.E_NOTIMPL; 61public HRESULT ShowContainerUI(BOOL fShow) => HRESULT.S_OK; 63public HRESULT QueryInsertObject(Guid* lpclsid, IStorage* lpstg, int cp) => HRESULT.S_OK; 65public HRESULT DeleteObject(IOleObject* lpoleobj) => HRESULT.S_OK; 68public HRESULT QueryAcceptData(Com.IDataObject* lpdataobj, ushort* lpcfFormat, RECO_FLAGS reco, BOOL fReally, HGLOBAL hMetaPict) 72return HRESULT.E_POINTER; 77return HRESULT.E_NOTIMPL; 83return HRESULT.E_FAIL; 185return e.Effect == DragDropEffects.None ? HRESULT.E_FAIL : HRESULT.S_OK; 188public HRESULT ContextSensitiveHelp(BOOL fEnterMode) => HRESULT.E_NOTIMPL; 190public HRESULT GetClipboardData(CHARRANGE* lpchrg, uint reco, Com.IDataObject** lplpdataobj) => HRESULT.E_NOTIMPL; 192public HRESULT GetDragDropEffect(BOOL fDrag, MODIFIERKEYS_FLAGS grfKeyState, DROPEFFECT* pdwEffect) 196return HRESULT.E_POINTER; 202return HRESULT.S_OK; 271return HRESULT.S_OK; 274public HRESULT GetContextMenu( 286return HRESULT.S_OK;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (1)
1654using var textDocument = richEdit.TryQuery<ITextDocument>(out HRESULT hr);
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseAccessibleObject.cs (12)
100internal override HRESULT GetTextSelection(SAFEARRAY** pRetVal) 101=> _textProvider?.GetSelection(pRetVal) ?? HRESULT.COR_E_OBJECTDISPOSED; 103internal override HRESULT GetTextVisibleRanges(SAFEARRAY** pRetVal) 104=> _textProvider?.GetVisibleRanges(pRetVal) ?? HRESULT.COR_E_OBJECTDISPOSED; 106internal override HRESULT GetTextRangeFromChild(IRawElementProviderSimple* childElement, ITextRangeProvider** pRetVal) 107=> _textProvider?.RangeFromChild(childElement, pRetVal) ?? HRESULT.COR_E_OBJECTDISPOSED; 109internal override HRESULT GetTextRangeFromPoint(UiaPoint screenLocation, ITextRangeProvider** pRetVal) 110=> _textProvider?.RangeFromPoint(screenLocation, pRetVal) ?? HRESULT.COR_E_OBJECTDISPOSED; 115internal override HRESULT GetTextCaretRange(BOOL* isActive, ITextRangeProvider** pRetVal) 116=> _textProvider?.GetCaretRange(isActive, pRetVal) ?? HRESULT.COR_E_OBJECTDISPOSED; 118internal override HRESULT GetRangeFromAnnotation(IRawElementProviderSimple* annotationElement, ITextRangeProvider** pRetVal) 119=> _textProvider?.RangeFromAnnotation(annotationElement, pRetVal) ?? HRESULT.COR_E_OBJECTDISPOSED;
System\Windows\Forms\Controls\TextBox\TextBoxBase.TextBoxBaseUiaTextProvider.cs (23)
25public override HRESULT GetSelection(SAFEARRAY** pRetVal) 29return HRESULT.E_POINTER; 35return HRESULT.S_OK; 53return HRESULT.S_OK; 56public override HRESULT GetVisibleRanges(SAFEARRAY** pRetVal) 60return HRESULT.E_POINTER; 66return HRESULT.S_OK; 77return HRESULT.S_OK; 80public override HRESULT RangeFromChild(IRawElementProviderSimple* childElement, ITextRangeProvider** pRetVal) 84return HRESULT.E_POINTER; 90return HRESULT.S_OK; 93public override HRESULT RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal) 97return HRESULT.E_POINTER; 103return HRESULT.S_OK; 118return HRESULT.S_OK; 140return HRESULT.S_OK; 156public override HRESULT GetCaretRange(BOOL* isActive, ITextRangeProvider** pRetVal) 160return HRESULT.E_POINTER; 168return HRESULT.S_OK; 180return HRESULT.S_OK; 185public override HRESULT RangeFromAnnotation(IRawElementProviderSimple* annotationElement, ITextRangeProvider** pRetVal) 189return HRESULT.E_POINTER; 200return HRESULT.S_OK;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropTargetManager.cs (2)
176HRESULT hr = PInvokeCore.RegisterDragDrop(_owner, new DropTarget(this)); 177if (hr.Failed && hr != HRESULT.DRAGDROP_E_ALREADYREGISTERED)
System\Windows\Forms\Controls\WebBrowser\HtmlDocument.cs (4)
53var scope = htmlDoc2.TryQuery<T>(out HRESULT hr); 487using var htmlDoc = dispatch.TryQuery<IHTMLDocument>(out HRESULT hr); 506HRESULT hr = htmlDoc2.Value->get_Script(scriptDispatch); 551if (hr == HRESULT.S_OK)
System\Windows\Forms\Controls\WebBrowser\HtmlElement.cs (6)
128using var htmlDocument = dispatch.TryQuery<IHTMLDocument>(out HRESULT hr); 170using var node = htmlElement.TryQuery<IHTMLDOMNode>(out HRESULT hr); 275var scope = htmlElement.TryQuery<T>(out HRESULT hr); 286using var node = htmlElement.TryQuery<IHTMLDOMNode>(out HRESULT hr); 575using var scriptDispatch = htmlElement.TryQuery<IDispatch>(out HRESULT hr); 621if (hr == HRESULT.S_OK)
System\Windows\Forms\Controls\WebBrowser\HtmlToClrEventProxy.cs (31)
48protected override unsafe HRESULT GetDispID(BSTR bstrName, uint grfdex, int* pid) 52return HRESULT.E_POINTER; 59return HRESULT.S_OK; 62return HRESULT.S_OK; 65return HRESULT.S_OK; 68return HRESULT.DISP_E_UNKNOWNNAME; 72protected override unsafe HRESULT GetNextDispID(uint grfdex, int id, int* pid) 76return HRESULT.E_POINTER; 83return HRESULT.S_OK; 86return HRESULT.S_OK; 89return HRESULT.S_OK; 92return HRESULT.S_FALSE; 96protected override unsafe HRESULT GetMemberName(int id, BSTR* pbstrName) 100return HRESULT.E_POINTER; 107return HRESULT.S_OK; 110return HRESULT.S_OK; 113return HRESULT.S_OK; 116return HRESULT.DISP_E_UNKNOWNNAME; 120protected override HRESULT GetMemberProperties(int dispId, out FDEX_PROP_FLAGS properties) 126return HRESULT.S_OK; 129return HRESULT.S_OK; 132return HRESULT.S_OK; 135return HRESULT.DISP_E_UNKNOWNNAME; 139protected override unsafe HRESULT Invoke(int dispId, uint lcid, DISPATCH_FLAGS flags, DISPPARAMS* parameters, VARIANT* result, EXCEPINFO* exceptionInfo, uint* argumentError) 150return HRESULT.S_OK; 156return HRESULT.DISP_E_PARAMNOTOPTIONAL; 160return HRESULT.S_OK; 163return HRESULT.DISP_E_MEMBERNOTFOUND; 167return HRESULT.DISP_E_PARAMNOTOPTIONAL; 171return HRESULT.S_OK; 173return HRESULT.DISP_E_MEMBERNOTFOUND;
System\Windows\Forms\Controls\WebBrowser\HtmlWindow.cs (2)
47var scope = htmlWindow2.TryQuery<T>(out HRESULT hr); 81using var htmlDoc = htmlDoc2.TryQuery<IHTMLDocument>(out HRESULT hr);
System\Windows\Forms\Controls\WebBrowser\HtmlWindowCollection.cs (1)
64HRESULT hr = dispatch.Value->QueryInterface(IID.Get<IHTMLWindow2>(), (void**)&htmlWindow2);
System\Windows\Forms\Controls\WebBrowser\WebBrowser.cs (1)
224using var iHTMLDocument2 = dispatch.TryQuery<IHTMLDocument2>(out HRESULT hr);
System\Windows\Forms\Controls\WebBrowser\WebBrowser.WebBrowserSite.cs (35)
29unsafe HRESULT IDocHostUIHandler.ShowContextMenu(uint dwID, Point* pt, object pcmdtReserved, object pdispReserved) 36return HRESULT.S_FALSE; 41return HRESULT.E_INVALIDARG; 55return HRESULT.S_OK; 58unsafe HRESULT IDocHostUIHandler.GetHostInfo(MsHtml.DOCHOSTUIINFO* pInfo) 62return HRESULT.E_POINTER; 89return HRESULT.S_OK; 92HRESULT IDocHostUIHandler.EnableModeless(BOOL fEnable) 94return HRESULT.E_NOTIMPL; 97HRESULT IDocHostUIHandler.ShowUI( 104return HRESULT.S_FALSE; 107HRESULT IDocHostUIHandler.HideUI() 109return HRESULT.E_NOTIMPL; 112HRESULT IDocHostUIHandler.UpdateUI() 114return HRESULT.E_NOTIMPL; 117HRESULT IDocHostUIHandler.OnDocWindowActivate(BOOL fActivate) 119return HRESULT.E_NOTIMPL; 122HRESULT IDocHostUIHandler.OnFrameWindowActivate(BOOL fActivate) 124return HRESULT.E_NOTIMPL; 127unsafe HRESULT IDocHostUIHandler.ResizeBorder(RECT* rect, IOleInPlaceUIWindow.Interface doc, BOOL fFrameWindow) 129return HRESULT.E_NOTIMPL; 132HRESULT IDocHostUIHandler.GetOptionKeyPath(string[] pbstrKey, uint dw) 134return HRESULT.E_NOTIMPL; 137HRESULT IDocHostUIHandler.GetDropTarget(OleIDropTarget.Interface pDropTarget, out OleIDropTarget.Interface? ppDropTarget) 142return HRESULT.E_NOTIMPL; 145HRESULT IDocHostUIHandler.GetExternal(out object? ppDispatch) 149return HRESULT.S_OK; 152unsafe HRESULT IDocHostUIHandler.TranslateAccelerator(MSG* lpMsg, Guid* pguidCmdGroup, uint nCmdID) 156return HRESULT.E_POINTER; 167return HRESULT.S_OK; 171return HRESULT.S_FALSE; 174HRESULT IDocHostUIHandler.TranslateUrl(uint dwTranslate, string strUrlIn, out string? pstrUrlOut) 179return HRESULT.S_FALSE; 182HRESULT IDocHostUIHandler.FilterDataObject(ComTypes.IDataObject pDO, out ComTypes.IDataObject? ppDORet) 187return HRESULT.S_FALSE;
System\Windows\Forms\Controls\WebBrowser\WebBrowserBase.cs (10)
254HRESULT hr = _axOleInPlaceActiveObject!.TranslateAccelerator(&win32Message); 255if (hr == HRESULT.S_OK) 267if (hr == HRESULT.S_FALSE) 673HRESULT hr = _axOleObject!.DoVerb((int)verb, null, clientSite, 0, HWND, &posRect); 841HRESULT hr = PInvokeCore.CoCreateInstance( 897HRESULT hr = _axOleObject.GetMiscStatus(DVASPECT.DVASPECT_CONTENT, out OLEMISC bits); 1003HRESULT hr = AXInPlaceObject!.UIDeactivate(); 1087HRESULT hr = _axOleObject!.SetExtent(DVASPECT.DVASPECT_CONTENT, (SIZE*)&sz); 1088if (hr != HRESULT.S_OK) 1175HRESULT result = _axOleControl!.OnAmbientPropertyChange(dispid);
System\Windows\Forms\Controls\WebBrowser\WebBrowserContainer.cs (45)
27HRESULT IParseDisplayName.Interface.ParseDisplayName(IBindCtx* pbc, PWSTR pszDisplayName, uint* pchEaten, IMoniker** ppmkOut) => 31HRESULT IOleContainer.Interface.ParseDisplayName(IBindCtx* pbc, PWSTR pszDisplayName, uint* pchEaten, IMoniker** ppmkOut) 38return HRESULT.E_NOTIMPL; 41HRESULT IOleContainer.Interface.EnumObjects(uint grfFlags, IEnumUnknown** ppenum) 45return HRESULT.E_POINTER; 58return HRESULT.S_OK; 63return HRESULT.S_OK; 66HRESULT IOleContainer.Interface.LockContainer(BOOL fLock) => HRESULT.E_NOTIMPL; 69HRESULT IOleInPlaceFrame.Interface.GetWindow(HWND* phwnd) 73return HRESULT.E_POINTER; 77return HRESULT.S_OK; 80HRESULT IOleInPlaceFrame.Interface.ContextSensitiveHelp(BOOL fEnterMode) => HRESULT.S_OK; 82HRESULT IOleInPlaceFrame.Interface.GetBorder(RECT* lprectBorder) => HRESULT.E_NOTIMPL; 84HRESULT IOleInPlaceFrame.Interface.RequestBorderSpace(RECT* pborderwidths) => HRESULT.E_NOTIMPL; 86HRESULT IOleInPlaceFrame.Interface.SetBorderSpace(RECT* pborderwidths) => HRESULT.E_NOTIMPL; 88HRESULT IOleInPlaceFrame.Interface.SetActiveObject(IOleInPlaceActiveObject* pActiveObject, PCWSTR pszObjName) 95return HRESULT.S_OK; 100using var oleObject = ComScope<IOleObject>.TryQueryFrom(pActiveObject, out HRESULT hr); 103return HRESULT.S_OK; 136return HRESULT.S_OK; 139HRESULT IOleInPlaceFrame.Interface.InsertMenus(HMENU hmenuShared, OLEMENUGROUPWIDTHS* lpMenuWidths) 140=> HRESULT.S_OK; 142HRESULT IOleInPlaceFrame.Interface.SetMenu(HMENU hmenuShared, nint holemenu, HWND hwndActiveObject) 143=> HRESULT.E_NOTIMPL; 145HRESULT IOleInPlaceFrame.Interface.RemoveMenus(HMENU hmenuShared) => HRESULT.E_NOTIMPL; 147HRESULT IOleInPlaceFrame.Interface.SetStatusText(PCWSTR pszStatusText) => HRESULT.E_NOTIMPL; 149HRESULT IOleInPlaceFrame.Interface.EnableModeless(BOOL fEnable) => HRESULT.E_NOTIMPL; 151HRESULT IOleInPlaceFrame.Interface.TranslateAccelerator(MSG* lpmsg, ushort wID) => HRESULT.S_FALSE; 414HRESULT IOleInPlaceUIWindow.Interface.GetWindow(HWND* phwnd) 417HRESULT IOleInPlaceUIWindow.Interface.ContextSensitiveHelp(BOOL fEnterMode) 420HRESULT IOleInPlaceUIWindow.Interface.GetBorder(RECT* lprectBorder) 423HRESULT IOleInPlaceUIWindow.Interface.RequestBorderSpace(RECT* pborderwidths) 426HRESULT IOleInPlaceUIWindow.Interface.SetBorderSpace(RECT* pborderwidths) 429HRESULT IOleInPlaceUIWindow.Interface.SetActiveObject(IOleInPlaceActiveObject* pActiveObject, PCWSTR pszObjName) 432HRESULT IOleWindow.Interface.GetWindow(HWND* phwnd) 435HRESULT IOleWindow.Interface.ContextSensitiveHelp(BOOL fEnterMode)
System\Windows\Forms\Controls\WebBrowser\WebBrowserSiteBase.cs (73)
67HRESULT IOleControlSite.Interface.OnControlInfoChanged() => HRESULT.S_OK; 69HRESULT IOleControlSite.Interface.LockInPlaceActive(BOOL fLock) => HRESULT.E_NOTIMPL; 71HRESULT IOleControlSite.Interface.GetExtendedControl(IDispatch** ppDisp) 75return HRESULT.E_POINTER; 79return HRESULT.E_NOTIMPL; 82HRESULT IOleControlSite.Interface.TransformCoords(POINTL* pPtlHimetric, PointF* pPtfContainer, uint dwFlags) 86return HRESULT.E_POINTER; 104return HRESULT.E_INVALIDARG; 121return HRESULT.E_INVALIDARG; 126return HRESULT.E_INVALIDARG; 129return HRESULT.S_OK; 132HRESULT IOleControlSite.Interface.TranslateAccelerator(MSG* pMsg, KEYMODIFIERS grfModifiers) 136return HRESULT.E_POINTER; 146return f ? HRESULT.S_OK : HRESULT.S_FALSE; 154HRESULT IOleControlSite.Interface.OnFocus(BOOL fGotFocus) => HRESULT.S_OK; 156HRESULT IOleControlSite.Interface.ShowPropertyFrame() => HRESULT.E_NOTIMPL; 159HRESULT IOleClientSite.Interface.SaveObject() => HRESULT.E_NOTIMPL; 161HRESULT IOleClientSite.Interface.GetMoniker(uint dwAssign, uint dwWhichMoniker, IMoniker** ppmk) 165return HRESULT.E_POINTER; 169return HRESULT.E_NOTIMPL; 172HRESULT IOleClientSite.Interface.GetContainer(IOleContainer** ppContainer) 176return HRESULT.E_POINTER; 180return HRESULT.S_OK; 183HRESULT IOleClientSite.Interface.ShowObject() 206return HRESULT.S_OK; 209HRESULT IOleClientSite.Interface.OnShowWindow(BOOL fShow) => HRESULT.S_OK; 211HRESULT IOleClientSite.Interface.RequestNewObjectLayout() => HRESULT.E_NOTIMPL; 214unsafe HRESULT IOleInPlaceSite.Interface.GetWindow(HWND* phwnd) 218return HRESULT.E_POINTER; 222return HRESULT.S_OK; 225HRESULT IOleInPlaceSite.Interface.ContextSensitiveHelp(BOOL fEnterMode) => HRESULT.E_NOTIMPL; 227HRESULT IOleInPlaceSite.Interface.CanInPlaceActivate() => HRESULT.S_OK; 229HRESULT IOleInPlaceSite.Interface.OnInPlaceActivate() 234return HRESULT.S_OK; 237HRESULT IOleInPlaceSite.Interface.OnUIActivate() 241return HRESULT.S_OK; 244HRESULT IOleInPlaceSite.Interface.GetWindowContext( 253return HRESULT.E_POINTER; 274return HRESULT.S_OK; 277HRESULT IOleInPlaceSite.Interface.Scroll(SIZE scrollExtant) => HRESULT.S_FALSE; 279HRESULT IOleInPlaceSite.Interface.OnUIDeactivate(BOOL fUndoable) 287return HRESULT.S_OK; 290HRESULT IOleInPlaceSite.Interface.OnInPlaceDeactivate() 299return HRESULT.S_OK; 302HRESULT IOleInPlaceSite.Interface.DiscardUndoState() => HRESULT.S_OK; 304HRESULT IOleInPlaceSite.Interface.DeactivateAndUndo() => Host.AXInPlaceObject!.UIDeactivate(); 306HRESULT IOleInPlaceSite.Interface.OnPosRectChange(RECT* lprcPosRect) => OnActiveXRectChange(lprcPosRect); 309HRESULT ISimpleFrameSite.Interface.PreMessageFilter( 315uint* pdwCookie) => HRESULT.S_OK; 317HRESULT ISimpleFrameSite.Interface.PostMessageFilter( 323uint dwCookie) => HRESULT.S_FALSE; 326HRESULT IPropertyNotifySink.Interface.OnChanged(int dispid) 332return HRESULT.S_OK; 350return HRESULT.S_OK; 353HRESULT IPropertyNotifySink.Interface.OnRequestEdit(int dispid) => HRESULT.S_OK; 404private unsafe HRESULT OnActiveXRectChange(RECT* lprcPosRect) 408return HRESULT.E_INVALIDARG; 415return HRESULT.S_OK; 418HRESULT IOleWindow.Interface.GetWindow(HWND* phwnd) 421HRESULT IOleWindow.Interface.ContextSensitiveHelp(BOOL fEnterMode)
System\Windows\Forms\Dialogs\CommonDialogs\FileDialog.Vista.cs (1)
41returnValue = dialog.Value->Show(hWndOwner) == HRESULT.S_OK;
System\Windows\Forms\Dialogs\CommonDialogs\FileDialog.VistaDialogEvents.cs (17)
19public HRESULT OnFileOk(IFileDialog* pfd) 21return _ownerDialog.HandleVistaFileOk(pfd) ? HRESULT.S_OK : HRESULT.S_FALSE; 24public HRESULT OnFolderChanging(IFileDialog* pfd, IShellItem* psiFolder) 26return HRESULT.S_OK; 29public HRESULT OnFolderChange(IFileDialog* pfd) 31return HRESULT.S_OK; 34public HRESULT OnSelectionChange(IFileDialog* pfd) 36return HRESULT.S_OK; 39public unsafe HRESULT OnShareViolation(IFileDialog* pfd, IShellItem* psi, FDE_SHAREVIOLATION_RESPONSE* pResponse) 43return HRESULT.E_POINTER; 47return HRESULT.S_OK; 50public HRESULT OnTypeChange(IFileDialog* pfd) 52return HRESULT.S_OK; 55public unsafe HRESULT OnOverwrite(IFileDialog* pfd, IShellItem* psi, FDE_OVERWRITE_RESPONSE* pResponse) 59return HRESULT.E_POINTER; 63return HRESULT.S_OK;
System\Windows\Forms\Dialogs\CommonDialogs\FolderBrowserDialog.cs (2)
305HRESULT hr = dialog->Show(owner); 308if (hr == HRESULT.FromWin32(WIN32_ERROR.ERROR_CANCELLED))
System\Windows\Forms\Dialogs\CommonDialogs\OpenFileDialog.cs (2)
148HRESULT hr = openDialog.Value->GetResults(items); 168HRESULT hr = PInvokeCore.CoCreateInstance(
System\Windows\Forms\Dialogs\CommonDialogs\SaveFileDialog.cs (1)
166HRESULT hr = PInvokeCore.CoCreateInstance(
System\Windows\Forms\Dialogs\TaskDialog\TaskDialog.cs (11)
113/// always return <see cref="HRESULT.S_FALSE"/> to prevent the dialog from applying the 143/// <see cref="HRESULT.S_OK"/> to cache the button instance, 149/// returned <see cref="HRESULT.S_OK"/>, so that further 150/// handles will return <see cref="HRESULT.S_FALSE"/> to 269private static unsafe HRESULT HandleTaskDialogNativeCallback( 595HRESULT returnValue; 908private HRESULT HandleTaskDialogCallback( 1037return HRESULT.S_FALSE; 1131return applyButtonResult ? HRESULT.S_OK : HRESULT.S_FALSE; 1184return HRESULT.S_OK;
System\Windows\Forms\OLE\Clipboard.cs (3)
47HRESULT result = ClipboardCore.SetData(dataObject, copy, retryTimes, retryDelay); 60HRESULT result = ClipboardCore.GetDataObject<DataObject, IDataObject>(out IDataObject? dataObject); 75HRESULT result = ClipboardCore.Clear();
System\Windows\Forms\OLE\DataObject.cs (9)
320HRESULT Com.IDataObject.Interface.DAdvise(Com.FORMATETC* pformatetc, uint advf, Com.IAdviseSink* pAdvSink, uint* pdwConnection) => 323HRESULT Com.IDataObject.Interface.DUnadvise(uint dwConnection) => 326HRESULT Com.IDataObject.Interface.EnumDAdvise(Com.IEnumSTATDATA** ppenumAdvise) => 329HRESULT Com.IDataObject.Interface.EnumFormatEtc(uint dwDirection, Com.IEnumFORMATETC** ppenumFormatEtc) => 332HRESULT Com.IDataObject.Interface.GetData(Com.FORMATETC* pformatetcIn, Com.STGMEDIUM* pmedium) => 335HRESULT Com.IDataObject.Interface.GetDataHere(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium) => 338HRESULT Com.IDataObject.Interface.QueryGetData(Com.FORMATETC* pformatetc) => 341HRESULT Com.IDataObject.Interface.GetCanonicalFormatEtc(Com.FORMATETC* pformatectIn, Com.FORMATETC* pformatetcOut) => 344HRESULT Com.IDataObject.Interface.SetData(Com.FORMATETC* pformatetc, Com.STGMEDIUM* pmedium, BOOL fRelease) =>
System\Windows\Forms\OLE\DropSource.cs (11)
32public HRESULT QueryContinueDrag(BOOL fEscapePressed, MODIFIERKEYS_FLAGS grfKeyState) 52DragAction.Drop => HRESULT.DRAGDROP_S_DROP, 53DragAction.Cancel => HRESULT.DRAGDROP_S_CANCEL, 54_ => HRESULT.S_OK, 58public HRESULT GiveFeedback(DROPEFFECT dwEffect) 79return HRESULT.DRAGDROP_S_USEDEFAULTCURSORS; 82return HRESULT.S_OK; 100public unsafe HRESULT DragEnterTarget(HWND hwndTarget) 104return HRESULT.S_OK; 107public HRESULT DragLeaveTarget() 116return HRESULT.S_OK;
System\Windows\Forms\OLE\DropTarget.cs (20)
106HRESULT OleIDropTarget.Interface.DragEnter(Com.IDataObject* pDataObj, MODIFIERKEYS_FLAGS grfKeyState, POINTL pt, DROPEFFECT* pdwEffect) 112return HRESULT.E_INVALIDARG; 132return HRESULT.S_OK; 135HRESULT OleIDropTarget.Interface.DragOver(MODIFIERKEYS_FLAGS grfKeyState, POINTL pt, DROPEFFECT* pdwEffect) 139return HRESULT.E_INVALIDARG; 159return HRESULT.S_OK; 162HRESULT OleIDropTarget.Interface.DragLeave() 172return HRESULT.S_OK; 175HRESULT OleIDropTarget.Interface.Drop(Com.IDataObject* pDataObj, MODIFIERKEYS_FLAGS grfKeyState, POINTL pt, DROPEFFECT* pdwEffect) 179return HRESULT.E_INVALIDARG; 193HRESULT result = HRESULT.S_OK; 242result = asyncCapability->EndOperation(HRESULT.E_UNEXPECTED, null, (uint)DROPEFFECT.DROPEFFECT_NONE); 250private HRESULT HandleOnDragDrop(DragEventArgs e, IDataObjectAsyncCapability* asyncCapability, DROPEFFECT* pdwEffect) 269HRESULT result = asyncCapability->EndOperation(HRESULT.S_OK, null, (uint)effect); 277return HRESULT.S_OK; 294HRESULT result = asyncCapability->EndOperation(HRESULT.S_OK, null, (uint)effect); 299return HRESULT.S_OK;
System\Windows\Forms\OLE\WinFormsOleServices.cs (9)
36static unsafe HRESULT IOleServices.GetDataHere(string format, object data, FORMATETC* pformatetc, STGMEDIUM* pmedium) 42return HRESULT.DV_E_TYMED; 54return HRESULT.S_OK; 57return HRESULT.DV_E_TYMED; 88HRESULT result = dataObject->QueryGetData(formatEtc); 100Debug.WriteLineIf(result == HRESULT.CLIPBRD_E_BAD_DATA, "CLIPBRD_E_BAD_DATA returned when trying to get clipboard data."); 150static unsafe HRESULT IOleServices.OleGetClipboard(Com.IDataObject** dataObject) => 153static unsafe HRESULT IOleServices.OleSetClipboard(Com.IDataObject* dataObject) => 156static HRESULT IOleServices.OleFlushClipboard() =>
System\Windows\Forms\Printing\PrintDialog.cs (1)
415HRESULT hr = PInvokeCore.PrintDlgEx(&dialogSettings);
System\Windows\Forms\Printing\PrintPreviewControl.PrintPreviewControlAccessibleObject.cs (6)
95HRESULT IScrollProvider.Interface.Scroll(ScrollAmount horizontalAmount, ScrollAmount verticalAmount) 99return HRESULT.E_FAIL; 149return HRESULT.S_OK; 152HRESULT IScrollProvider.Interface.SetScrollPercent(double horizontalPercent, double verticalPercent) 156return HRESULT.E_FAIL; 172return HRESULT.S_OK;
System\Windows\Forms\StringSource.cs (12)
74public unsafe HRESULT Clone(IEnumString** ppenum) 78return HRESULT.E_POINTER; 82return HRESULT.S_OK; 85public unsafe HRESULT Next(uint celt, PWSTR* rgelt, [Optional] uint* pceltFetched) 89return HRESULT.E_INVALIDARG; 107return celt == 0 ? HRESULT.S_OK : HRESULT.S_FALSE; 110public HRESULT Skip(uint celt) 115return HRESULT.S_FALSE; 119return HRESULT.S_OK; 122public HRESULT Reset() 125return HRESULT.S_OK;
System\Windows\Forms\VisualStyles\VisualStyleRenderer.cs (1)
15private HRESULT _lastHResult;
System.Windows.Forms.Design (31)
System\ComponentModel\Design\MultilineStringEditor.OleCallback.cs (29)
23public HRESULT GetNewStorage(IStorage** lplpstg) 27return HRESULT.E_POINTER; 31HRESULT hr = PInvoke.CreateILockBytesOnHGlobal(default, fDeleteOnRelease: true, pLockBytes); 48public HRESULT GetInPlaceContext( 53return HRESULT.E_NOTIMPL; 56public HRESULT ShowContainerUI(BOOL fShow) 58return HRESULT.S_OK; 61public unsafe HRESULT QueryInsertObject(Guid* lpclsid, IStorage* lpstg, int cp) 63HRESULT hr = PInvoke.ReadClassStg(lpstg, out Guid realClsid); 67return HRESULT.S_FALSE; 74return HRESULT.E_POINTER; 86or "0003000A-0000-0000-C000-000000000046" => HRESULT.S_OK, 87_ => HRESULT.S_FALSE, 91public HRESULT DeleteObject(IOleObject* lpoleobj) => HRESULT.S_OK; 93public HRESULT QueryAcceptData(Com.IDataObject* lpdataobj, ushort* lpcfFormat, RECO_FLAGS reco, BOOL fReally, HGLOBAL hMetaPict) 99return HRESULT.E_POINTER; 120return success ? HRESULT.S_OK : HRESULT.E_FAIL; 123return HRESULT.E_NOTIMPL; 126public HRESULT ContextSensitiveHelp(BOOL fEnterMode) => HRESULT.E_NOTIMPL; 128public HRESULT GetClipboardData(CHARRANGE* lpchrg, uint reco, Com.IDataObject** lplpdataobj) => HRESULT.E_NOTIMPL; 130public unsafe HRESULT GetDragDropEffect(BOOL fDrag, MODIFIERKEYS_FLAGS grfKeyState, DROPEFFECT* pdwEffect) 134return HRESULT.E_POINTER; 138return HRESULT.S_OK; 141public HRESULT GetContextMenu( 153return HRESULT.S_OK;
System\Windows\Forms\Design\DocumentDesigner.AxToolboxItem.cs (2)
290HRESULT hr = PInvokeCore.LoadRegTypeLib( 307HRESULT hr = PInvoke.LoadTypeLib(inprocServer, &pTLB);
System.Windows.Forms.Interop.Tests (14)
AccessibleObjectTests.cs (13)
452Assert.Equal(HRESULT.S_OK, enumVariant.Reset()); 456var result = enumVariant.Next(1, &variantObject, &retreivedCount); 457Assert.Equal(HRESULT.S_OK, result); 470AssertSuccess(Test_IOleWindowContextSensitiveHelp(o, (BOOL)fEnterMode, HRESULT.S_OK)); 482AssertSuccess(Test_IOleWindowContextSensitiveHelp(o, (BOOL)fEnterMode, HRESULT.S_OK)); 495AssertSuccess(Test_IOleWindowContextSensitiveHelp(o, (BOOL)fEnterMode, HRESULT.S_OK)); 502AssertSuccess(Test_IOleWindowGetWindow(o, IntPtr.Zero, HRESULT.E_FAIL)); 512AssertSuccess(Test_IOleWindowGetWindow(o, IntPtr.Zero, HRESULT.E_FAIL)); 750HRESULT hr = typeInfo.Value->GetIDOfName("accChild", out int memberId); 751Assert.Equal(HRESULT.S_OK, hr); 753Assert.Equal(HRESULT.DISP_E_UNKNOWNNAME, hr); 1019HRESULT expectedHr); 1025HRESULT expectedHr);
PropertyGridTests.cs (1)
37Assert.Equal((int)HRESULT.DISP_E_MEMBERNOTFOUND, ex.HResult);
System.Windows.Forms.Primitives (18149)
Interop\Mshtml\Interop.IDocHostUIHandler.cs (15)
20HRESULT ShowContextMenu( 27HRESULT GetHostInfo( 31HRESULT ShowUI( 39HRESULT HideUI(); 42HRESULT UpdateUI(); 45HRESULT EnableModeless( 49HRESULT OnDocWindowActivate( 53HRESULT OnFrameWindowActivate( 57HRESULT ResizeBorder( 63HRESULT TranslateAccelerator( 69HRESULT GetOptionKeyPath( 74HRESULT GetDropTarget( 79HRESULT GetExternal( 83HRESULT TranslateUrl( 89HRESULT FilterDataObject(
Interop\UiaCore\Interop.StubFragmentRoot.cs (35)
22HRESULT IRawElementProviderFragmentRoot.Interface.ElementProviderFromPoint(double x, double y, IRawElementProviderFragment** pRetVal) 26return HRESULT.E_POINTER; 30return HRESULT.S_OK; 33HRESULT IRawElementProviderFragmentRoot.Interface.GetFocus(IRawElementProviderFragment** pRetVal) 37return HRESULT.E_POINTER; 41return HRESULT.S_OK; 44HRESULT IRawElementProviderFragment.Interface.Navigate(NavigateDirection direction, IRawElementProviderFragment** pRetVal) 48return HRESULT.E_POINTER; 52return HRESULT.S_OK; 55HRESULT IRawElementProviderFragment.Interface.GetRuntimeId(SAFEARRAY** pRetVal) 59return HRESULT.E_POINTER; 63return HRESULT.S_OK; 66HRESULT IRawElementProviderFragment.Interface.get_BoundingRectangle(UiaRect* pRetVal) 70return HRESULT.E_POINTER; 74return HRESULT.S_OK; 77HRESULT IRawElementProviderFragment.Interface.GetEmbeddedFragmentRoots(SAFEARRAY** pRetVal) 81return HRESULT.E_POINTER; 85return HRESULT.S_OK; 88HRESULT IRawElementProviderFragment.Interface.SetFocus() => HRESULT.S_OK; 90HRESULT IRawElementProviderFragment.Interface.get_FragmentRoot(IRawElementProviderFragmentRoot** pRetVal) 94return HRESULT.E_POINTER; 98return HRESULT.S_OK; 101HRESULT IRawElementProviderSimple.Interface.get_ProviderOptions(ProviderOptions* pRetVal) 105return HRESULT.E_POINTER; 109return HRESULT.S_OK; 112HRESULT IRawElementProviderSimple.Interface.GetPatternProvider(UIA_PATTERN_ID patternId, IUnknown** pRetVal) 116return HRESULT.E_POINTER; 120return HRESULT.S_OK; 123HRESULT IRawElementProviderSimple.Interface.GetPropertyValue(UIA_PROPERTY_ID propertyId, VARIANT* pRetVal) 127return HRESULT.E_POINTER; 131return HRESULT.S_OK; 134HRESULT IRawElementProviderSimple.Interface.get_HostRawElementProvider(IRawElementProviderSimple** pRetVal) 138return HRESULT.E_POINTER; 142return HRESULT.S_OK;
Microsoft\Office\IMsoComponent.cs (3)
32internal delegate* unmanaged[Stdcall]<IMsoComponent*, Guid*, void**, HRESULT> QueryInterface_1; 125public HRESULT QueryInterface(Guid* riid, void** ppvObject) 128return ((delegate* unmanaged[Stdcall]<IMsoComponent*, Guid*, void**, HRESULT>)_lpVtbl[0])(pThis, riid, ppvObject);
Microsoft\Office\IMsoComponentManager.cs (5)
37public HRESULT QueryInterface(Guid* riid, void** ppvObject) 40return ((delegate* unmanaged[Stdcall]<IMsoComponentManager*, Guid*, void**, HRESULT>)_lpVtbl[0])(pThis, riid, ppvObject); 58public HRESULT QueryService(Guid* guidService, Guid* iid, void** ppvObj) 61return ((delegate* unmanaged[Stdcall]<IMsoComponentManager*, Guid*, Guid*, void**, HRESULT>)_lpVtbl[3]) 229HRESULT QueryService(
Microsoft\Office\IMsoComponentManager.NativeAdapter.cs (1)
22HRESULT Interface.QueryService(Guid* guidService, Guid* iid, void** ppvObj)
Microsoft\VisualStudio\Shell\ICategorizeProperties.cs (8)
35public HRESULT QueryInterface(Guid* riid, void** ppvObject) 38return ((delegate* unmanaged[Stdcall]<ICategorizeProperties*, Guid*, void**, HRESULT>)_lpVtbl[0])(pThis, riid, ppvObject); 55internal HRESULT MapPropertyToCategory( 60return ((delegate* unmanaged[Stdcall]<ICategorizeProperties*, int, PROPCAT*, HRESULT>)_lpVtbl[2])(pThis, dispid, ppropcat); 63internal HRESULT GetCategoryName( 69return ((delegate* unmanaged[Stdcall]<ICategorizeProperties*, PROPCAT, int, BSTR*, HRESULT>)_lpVtbl[2])(pThis, propcat, lcid, pbstrName); 85HRESULT MapPropertyToCategory( 95HRESULT GetCategoryName(
Microsoft\VisualStudio\Shell\IProvidePropertyBuilder.cs (8)
35public HRESULT QueryInterface(Guid* riid, void** ppvObject) 38return ((delegate* unmanaged[Stdcall]<IProvidePropertyBuilder*, Guid*, void**, HRESULT>)_lpVtbl[0])(pThis, riid, ppvObject); 55public HRESULT MapPropertyToBuilder( 62return ((delegate* unmanaged[Stdcall]<IProvidePropertyBuilder*, int, CTLBLDTYPE*, BSTR*, VARIANT_BOOL*, HRESULT>)_lpVtbl[3])( 70public HRESULT ExecuteBuilder( 79return ((delegate* unmanaged[Stdcall]<IProvidePropertyBuilder*, int, BSTR*, IDispatch*, HWND, VARIANT*, VARIANT_BOOL*, HRESULT>)_lpVtbl[4])( 112HRESULT MapPropertyToBuilder( 137HRESULT ExecuteBuilder(
Microsoft\VisualStudio\Shell\IVSMDPerPropertyBrowsing.cs (5)
36public HRESULT QueryInterface(Guid* riid, void** ppvObject) 39return ((delegate* unmanaged[Stdcall]<IVSMDPerPropertyBrowsing*, Guid*, void**, HRESULT>)_lpVtbl[0])(pThis, riid, ppvObject); 57public HRESULT GetPropertyAttributes( 64return ((delegate* unmanaged[Stdcall]<IVSMDPerPropertyBrowsing*, int, uint*, BSTR**, VARIANT**, HRESULT>)_lpVtbl[3])( 101HRESULT GetPropertyAttributes(
Microsoft\VisualStudio\Shell\IVsPerPropertyBrowsing.cs (31)
35public HRESULT QueryInterface(Guid* riid, void** ppvObject) 38return ((delegate* unmanaged[Stdcall]<IVsPerPropertyBrowsing*, Guid*, void**, HRESULT>)_lpVtbl[0])(pThis, riid, ppvObject); 56public HRESULT HideProperty(int dispid, BOOL* pfHide) 59return ((delegate* unmanaged[Stdcall]<IVsPerPropertyBrowsing*, int, BOOL*, HRESULT>)_lpVtbl[3])(pThis, dispid, pfHide); 63public HRESULT DisplayChildProperties(int dispid, BOOL* pfDisplay) 66return ((delegate* unmanaged[Stdcall]<IVsPerPropertyBrowsing*, int, BOOL*, HRESULT>)_lpVtbl[4])(pThis, dispid, pfDisplay); 70public HRESULT GetLocalizedPropertyInfo( 77return ((delegate* unmanaged[Stdcall]<IVsPerPropertyBrowsing*, int, uint, BSTR*, BSTR*, HRESULT>)_lpVtbl[5])( 86public HRESULT HasDefaultValue( 91return ((delegate* unmanaged[Stdcall]<IVsPerPropertyBrowsing*, int, BOOL*, HRESULT>)_lpVtbl[6])(pThis, dispid, fDefault); 95public HRESULT IsPropertyReadOnly( 100return ((delegate* unmanaged[Stdcall]<IVsPerPropertyBrowsing*, int, BOOL*, HRESULT>)_lpVtbl[7])(pThis, dispid, fReadOnly); 104public HRESULT GetClassName( 108return ((delegate* unmanaged[Stdcall]<IVsPerPropertyBrowsing*, BSTR*, HRESULT>)_lpVtbl[8])(pThis, pbstrClassName); 112public HRESULT CanResetPropertyValue( 117return ((delegate* unmanaged[Stdcall]<IVsPerPropertyBrowsing*, int, BOOL*, HRESULT>)_lpVtbl[9])(pThis, dispid, pfCanReset); 121public HRESULT ResetPropertyValue( 125return ((delegate* unmanaged[Stdcall]<IVsPerPropertyBrowsing*, int, HRESULT>)_lpVtbl[9])(pThis, dispid); 138HRESULT HideProperty( 144/// result other than <see cref="HRESULT.S_OK"/> or false for <paramref name="pfDisplay"/> will suppress this feature. 147HRESULT DisplayChildProperties( 153/// <see cref="HRESULT.S_OK"/> return code will display the default values. 156HRESULT GetLocalizedPropertyInfo( 167HRESULT HasDefaultValue( 175HRESULT IsPropertyReadOnly( 181/// window selection combo. Returning any result other than <see cref="HRESULT.S_OK"/> will cause the default to 186HRESULT GetClassName( 191/// <see cref="HRESULT.S_OK"/> or false for <paramref name="pfCanReset"/> will not allow the value to be reset. 194HRESULT CanResetPropertyValue( 199/// If the return value is <see cref="HRESULT.S_OK"/>, the property's value will then be refreshed to the 203HRESULT ResetPropertyValue(
System\Windows\Forms\Automation\UiaTextProvider.cs (6)
19public abstract HRESULT GetSelection(SAFEARRAY** pRetVal); 21public abstract HRESULT GetVisibleRanges(SAFEARRAY** pRetVal); 23public abstract HRESULT RangeFromChild(IRawElementProviderSimple* childElement, ITextRangeProvider** pRetVal); 25public abstract HRESULT RangeFromPoint(UiaPoint point, ITextRangeProvider** pRetVal); 149public abstract HRESULT RangeFromAnnotation(IRawElementProviderSimple* annotationElement, ITextRangeProvider** pRetVal); 151public abstract HRESULT GetCaretRange(BOOL* isActive, ITextRangeProvider** pRetVal);
System\Windows\Forms\Automation\UiaTextRange.cs (68)
112HRESULT ITextRangeProvider.Interface.Clone(ITextRangeProvider** pRetVal) 116return HRESULT.E_POINTER; 122return HRESULT.S_OK; 128HRESULT ITextRangeProvider.Interface.Compare(ITextRangeProvider* range, BOOL* pRetVal) 132return HRESULT.E_POINTER; 137return HRESULT.E_INVALIDARG; 141return HRESULT.S_OK; 144HRESULT ITextRangeProvider.Interface.CompareEndpoints(TextPatternRangeEndpoint endpoint, ITextRangeProvider* targetRange, TextPatternRangeEndpoint targetEndpoint, int* pRetVal) 148return HRESULT.E_POINTER; 153return HRESULT.E_INVALIDARG; 159return HRESULT.E_INVALIDARG; 166return HRESULT.S_OK; 169HRESULT ITextRangeProvider.Interface.ExpandToEnclosingUnit(TextUnit unit) 264return HRESULT.E_INVALIDARG; 267return HRESULT.S_OK; 270HRESULT ITextRangeProvider.Interface.FindAttribute(UIA_TEXTATTRIBUTE_ID attributeId, VARIANT val, BOOL backward, ITextRangeProvider** pRetVal) 274return HRESULT.E_POINTER; 278return HRESULT.S_OK; 281HRESULT ITextRangeProvider.Interface.FindText(BSTR text, BOOL backward, BOOL ignoreCase, ITextRangeProvider** pRetVal) 285return HRESULT.E_POINTER; 292return HRESULT.E_INVALIDARG; 299return HRESULT.E_INVALIDARG; 313return HRESULT.S_OK; 316HRESULT ITextRangeProvider.Interface.GetAttributeValue(UIA_TEXTATTRIBUTE_ID attributeId, VARIANT* pRetVal) 320return HRESULT.E_POINTER; 324return HRESULT.S_OK; 327HRESULT ITextRangeProvider.Interface.GetBoundingRectangles(SAFEARRAY** pRetVal) 331return HRESULT.E_POINTER; 342return HRESULT.S_OK; 354return HRESULT.S_OK; 367return HRESULT.S_OK; 376return HRESULT.S_OK; 392return HRESULT.S_OK; 410return HRESULT.S_OK; 413HRESULT ITextRangeProvider.Interface.GetEnclosingElement(IRawElementProviderSimple** pRetVal) 417return HRESULT.E_POINTER; 421return HRESULT.S_OK; 424HRESULT ITextRangeProvider.Interface.GetText(int maxLength, BSTR* pRetVal) 428return HRESULT.E_POINTER; 443return HRESULT.S_OK; 446HRESULT ITextRangeProvider.Interface.Move(TextUnit unit, int count, int* pRetVal) 450return HRESULT.E_POINTER; 474return HRESULT.S_OK; 495return HRESULT.S_OK; 501return HRESULT.S_OK; 504HRESULT ITextRangeProvider.Interface.MoveEndpointByUnit(TextPatternRangeEndpoint endpoint, TextUnit unit, int count, int* pRetVal) 508return HRESULT.E_POINTER; 525return HRESULT.S_OK; 532return HRESULT.S_OK; 543return HRESULT.S_OK; 550return HRESULT.S_OK; 555return HRESULT.S_OK; 558HRESULT ITextRangeProvider.Interface.MoveEndpointByRange(TextPatternRangeEndpoint endpoint, ITextRangeProvider* targetRange, TextPatternRangeEndpoint targetEndpoint) 562return HRESULT.E_INVALIDARG; 578return HRESULT.S_OK; 581HRESULT ITextRangeProvider.Interface.Select() 584return HRESULT.S_OK; 587HRESULT ITextRangeProvider.Interface.AddToSelection() => HRESULT.S_OK; 589HRESULT ITextRangeProvider.Interface.RemoveFromSelection() => HRESULT.S_OK; 591HRESULT ITextRangeProvider.Interface.ScrollIntoView(BOOL alignToTop) 601return HRESULT.S_OK; 617return HRESULT.S_OK; 627return HRESULT.S_OK; 630HRESULT ITextRangeProvider.Interface.GetChildren(SAFEARRAY** pRetVal) 634return HRESULT.E_POINTER; 638return HRESULT.S_OK;
System\Windows\Forms\IExtender.cs (46)
32public unsafe HRESULT QueryInterface(Guid* riid, void** ppvObject) 35return ((delegate* unmanaged[Stdcall]<IExtender*, Guid*, void**, HRESULT>)_vtable[0])(pThis, riid, ppvObject); 55internal delegate* unmanaged[Stdcall]<IExtender*, Guid*, void**, HRESULT> QueryInterface_1; 58internal delegate* unmanaged[Stdcall]<IExtender*, int*, HRESULT> get_Align_4; 59internal delegate* unmanaged[Stdcall]<IExtender*, int, HRESULT> set_Align_5; 60internal delegate* unmanaged[Stdcall]<IExtender*, BOOL*, HRESULT> get_Enabled_6; 61internal delegate* unmanaged[Stdcall]<IExtender*, BOOL, HRESULT> set_Enabled_7; 62internal delegate* unmanaged[Stdcall]<IExtender*, int*, HRESULT> get_Height_8; 63internal delegate* unmanaged[Stdcall]<IExtender*, int, HRESULT> set_Height_9; 64internal delegate* unmanaged[Stdcall]<IExtender*, int*, HRESULT> get_Left_10; 65internal delegate* unmanaged[Stdcall]<IExtender*, int, HRESULT> set_Left_11; 66internal delegate* unmanaged[Stdcall]<IExtender*, BOOL*, HRESULT> get_TabStop_12; 67internal delegate* unmanaged[Stdcall]<IExtender*, BOOL, HRESULT> set_TabStop_13; 68internal delegate* unmanaged[Stdcall]<IExtender*, int*, HRESULT> get_Top_14; 69internal delegate* unmanaged[Stdcall]<IExtender*, int, HRESULT> set_Top_15; 70internal delegate* unmanaged[Stdcall]<IExtender*, BOOL*, HRESULT> get_Visible_16; 71internal delegate* unmanaged[Stdcall]<IExtender*, BOOL, HRESULT> set_Visible_17; 72internal delegate* unmanaged[Stdcall]<IExtender*, int*, HRESULT> get_Width_18; 73internal delegate* unmanaged[Stdcall]<IExtender*, int, HRESULT> set_Width_19; 74internal delegate* unmanaged[Stdcall]<IExtender*, BSTR*, HRESULT> get_Name_20; 75internal delegate* unmanaged[Stdcall]<IExtender*, IUnknown**, HRESULT> get_Parent_21; 76internal delegate* unmanaged[Stdcall]<IExtender*, HWND*, HRESULT> get_Hwnd_22; 77internal delegate* unmanaged[Stdcall]<IExtender*, IUnknown**, HRESULT> get_Container_23; 78internal delegate* unmanaged[Stdcall]<IExtender*, void*, void*, void*, void*, HRESULT> Move_24; 129private static HRESULT get_Align(IExtender* @this, int* value) 133private static HRESULT set_Align(IExtender* @this, int value) 137private static HRESULT get_Enabled(IExtender* @this, BOOL* value) 141private static HRESULT set_Enabled(IExtender* @this, BOOL value) 145private static HRESULT get_Height(IExtender* @this, int* value) 149private static HRESULT set_Height(IExtender* @this, int value) 153private static HRESULT get_Left(IExtender* @this, int* value) 157private static HRESULT set_Left(IExtender* @this, int value) 161private static HRESULT get_TabStop(IExtender* @this, BOOL* value) 165private static HRESULT set_TabStop(IExtender* @this, BOOL value) 169private static HRESULT get_Top(IExtender* @this, int* value) 173private static HRESULT set_Top(IExtender* @this, int value) 177private static HRESULT get_Visible(IExtender* @this, BOOL* value) 181private static HRESULT set_Visible(IExtender* @this, BOOL value) 185private static HRESULT get_Width(IExtender* @this, int* value) 189private static HRESULT set_Width(IExtender* @this, int value) 193private static HRESULT get_Name(IExtender* @this, BSTR* value) 197private static HRESULT get_Parent(IExtender* @this, IUnknown** value) 201private static HRESULT get_Hwnd(IExtender* @this, HWND* value) 205private static HRESULT get_Container(IExtender* @this, IUnknown** value) 210private static HRESULT Move(IExtender* @this, void* left, void* top, void* width, void* height) => HRESULT.S_OK;
System\Windows\Forms\Internals\ScaleHelper.cs (1)
81HRESULT result = PInvoke.GetProcessDpiAwareness(
Windows.Win32.IAccessible.g.cs (180)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IAccessible*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAccessible*)Unsafe.AsPointer(ref this), riid, ppvObject); 73 ((delegate *unmanaged [Stdcall]<IAccessible*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IAccessible*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 78 ((delegate *unmanaged [Stdcall]<IAccessible*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IAccessible*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 99 ((delegate *unmanaged [Stdcall]<IAccessible*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IAccessible*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 116 ((delegate *unmanaged [Stdcall]<IAccessible*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IAccessible*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 122 private static winmdroot.Foundation.HRESULT get_accParent(IAccessible* pThis, winmdroot.System.Com.IDispatch** ppdispParent) 126 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 135 return (winmdroot.Foundation.HRESULT)ex.HResult; 151 public unsafe winmdroot.Foundation.HRESULT get_accParent(winmdroot.System.Com.IDispatch** ppdispParent) 153 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IAccessible*)Unsafe.AsPointer(ref this), ppdispParent); 157 internal unsafe winmdroot.Foundation.HRESULT get_accChildCount(out int pcountChildren) 161 winmdroot.Foundation.HRESULT __result = this.get_accChildCount(pcountChildrenLocal); 169 private static winmdroot.Foundation.HRESULT get_accChildCount(IAccessible* pThis, int* pcountChildren) 173 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 182 return (winmdroot.Foundation.HRESULT)ex.HResult; 198 public unsafe winmdroot.Foundation.HRESULT get_accChildCount(int* pcountChildren) 200 return ((delegate *unmanaged [Stdcall]<IAccessible*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IAccessible*)Unsafe.AsPointer(ref this), pcountChildren); 206 private static winmdroot.Foundation.HRESULT get_accChild(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Com.IDispatch** ppdispChild) 210 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 243 public unsafe winmdroot.Foundation.HRESULT get_accChild(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Com.IDispatch** ppdispChild) 245 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IAccessible*)Unsafe.AsPointer(ref this), varChild, ppdispChild); 251 private static winmdroot.Foundation.HRESULT get_accName(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszName) 255 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 264 return (winmdroot.Foundation.HRESULT)ex.HResult; 288 public unsafe winmdroot.Foundation.HRESULT get_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszName) 290 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszName); 296 private static winmdroot.Foundation.HRESULT get_accValue(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszValue) 300 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 309 return (winmdroot.Foundation.HRESULT)ex.HResult; 330 public unsafe winmdroot.Foundation.HRESULT get_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszValue) 332 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszValue); 338 private static winmdroot.Foundation.HRESULT get_accDescription(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDescription) 342 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 351 return (winmdroot.Foundation.HRESULT)ex.HResult; 375 public unsafe winmdroot.Foundation.HRESULT get_accDescription(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDescription) 377 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszDescription); 381 internal unsafe winmdroot.Foundation.HRESULT get_accRole(winmdroot.System.Variant.VARIANT varChild, out winmdroot.System.Variant.VARIANT pvarRole) 385 winmdroot.Foundation.HRESULT __result = this.get_accRole(varChild, pvarRoleLocal); 393 private static winmdroot.Foundation.HRESULT get_accRole(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarRole) 397 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 406 return (winmdroot.Foundation.HRESULT)ex.HResult; 430 public unsafe winmdroot.Foundation.HRESULT get_accRole(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarRole) 432 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pvarRole); 436 internal unsafe winmdroot.Foundation.HRESULT get_accState(winmdroot.System.Variant.VARIANT varChild, out winmdroot.System.Variant.VARIANT pvarState) 440 winmdroot.Foundation.HRESULT __result = this.get_accState(varChild, pvarStateLocal); 448 private static winmdroot.Foundation.HRESULT get_accState(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarState) 452 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 461 return (winmdroot.Foundation.HRESULT)ex.HResult; 485 public unsafe winmdroot.Foundation.HRESULT get_accState(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarState) 487 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pvarState); 493 private static winmdroot.Foundation.HRESULT get_accHelp(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszHelp) 497 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 506 return (winmdroot.Foundation.HRESULT)ex.HResult; 529 public unsafe winmdroot.Foundation.HRESULT get_accHelp(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszHelp) 531 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszHelp); 535 internal unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(winmdroot.Foundation.BSTR* pszHelpFile, winmdroot.System.Variant.VARIANT varChild, out int pidTopic) 539 winmdroot.Foundation.HRESULT __result = this.get_accHelpTopic(pszHelpFile, varChild, pidTopicLocal); 547 private static winmdroot.Foundation.HRESULT get_accHelpTopic(IAccessible* pThis, winmdroot.Foundation.BSTR* pszHelpFile, winmdroot.System.Variant.VARIANT varChild, int* pidTopic) 551 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 560 return (winmdroot.Foundation.HRESULT)ex.HResult; 585 public unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(winmdroot.Foundation.BSTR* pszHelpFile, winmdroot.System.Variant.VARIANT varChild, int* pidTopic) 587 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); 593 private static winmdroot.Foundation.HRESULT get_accKeyboardShortcut(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszKeyboardShortcut) 597 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 606 return (winmdroot.Foundation.HRESULT)ex.HResult; 631 public unsafe winmdroot.Foundation.HRESULT get_accKeyboardShortcut(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszKeyboardShortcut) 633 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszKeyboardShortcut); 637 internal unsafe winmdroot.Foundation.HRESULT get_accFocus(out winmdroot.System.Variant.VARIANT pvarChild) 641 winmdroot.Foundation.HRESULT __result = this.get_accFocus(pvarChildLocal); 649 private static winmdroot.Foundation.HRESULT get_accFocus(IAccessible* pThis, winmdroot.System.Variant.VARIANT* pvarChild) 653 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 662 return (winmdroot.Foundation.HRESULT)ex.HResult; 682 public unsafe winmdroot.Foundation.HRESULT get_accFocus(winmdroot.System.Variant.VARIANT* pvarChild) 684 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IAccessible*)Unsafe.AsPointer(ref this), pvarChild); 688 internal unsafe winmdroot.Foundation.HRESULT get_accSelection(out winmdroot.System.Variant.VARIANT pvarChildren) 692 winmdroot.Foundation.HRESULT __result = this.get_accSelection(pvarChildrenLocal); 700 private static winmdroot.Foundation.HRESULT get_accSelection(IAccessible* pThis, winmdroot.System.Variant.VARIANT* pvarChildren) 704 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 713 return (winmdroot.Foundation.HRESULT)ex.HResult; 734 public unsafe winmdroot.Foundation.HRESULT get_accSelection(winmdroot.System.Variant.VARIANT* pvarChildren) 736 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IAccessible*)Unsafe.AsPointer(ref this), pvarChildren); 742 private static winmdroot.Foundation.HRESULT get_accDefaultAction(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDefaultAction) 746 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 755 return (winmdroot.Foundation.HRESULT)ex.HResult; 779 public unsafe winmdroot.Foundation.HRESULT get_accDefaultAction(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDefaultAction) 781 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IAccessible*)Unsafe.AsPointer(ref this), varChild, pszDefaultAction); 787 private static winmdroot.Foundation.HRESULT accSelect(IAccessible* pThis, int flagsSelect, winmdroot.System.Variant.VARIANT varChild) 791 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 800 return (winmdroot.Foundation.HRESULT)ex.HResult; 824 public winmdroot.Foundation.HRESULT accSelect(int flagsSelect, winmdroot.System.Variant.VARIANT varChild) 826 return ((delegate *unmanaged [Stdcall]<IAccessible*,int ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IAccessible*)Unsafe.AsPointer(ref this), flagsSelect, varChild); 830 internal unsafe winmdroot.Foundation.HRESULT accLocation(out int pxLeft, out int pyTop, out int pcxWidth, out int pcyHeight, winmdroot.System.Variant.VARIANT varChild) 840 winmdroot.Foundation.HRESULT __result = this.accLocation(pxLeftLocal, pyTopLocal, pcxWidthLocal, pcyHeightLocal, varChild); 851 private static winmdroot.Foundation.HRESULT accLocation(IAccessible* pThis, int* pxLeft, int* pyTop, int* pcxWidth, int* pcyHeight, winmdroot.System.Variant.VARIANT varChild) 855 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 864 return (winmdroot.Foundation.HRESULT)ex.HResult; 900 public unsafe winmdroot.Foundation.HRESULT accLocation(int* pxLeft, int* pyTop, int* pcxWidth, int* pcyHeight, winmdroot.System.Variant.VARIANT varChild) 902 return ((delegate *unmanaged [Stdcall]<IAccessible*,int* ,int* ,int* ,int* ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IAccessible*)Unsafe.AsPointer(ref this), pxLeft, pyTop, pcxWidth, pcyHeight, varChild); 906 internal unsafe winmdroot.Foundation.HRESULT accNavigate(int navDir, winmdroot.System.Variant.VARIANT varStart, out winmdroot.System.Variant.VARIANT pvarEndUpAt) 910 winmdroot.Foundation.HRESULT __result = this.accNavigate(navDir, varStart, pvarEndUpAtLocal); 918 private static winmdroot.Foundation.HRESULT accNavigate(IAccessible* pThis, int navDir, winmdroot.System.Variant.VARIANT varStart, winmdroot.System.Variant.VARIANT* pvarEndUpAt) 922 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 931 return (winmdroot.Foundation.HRESULT)ex.HResult; 958 public unsafe winmdroot.Foundation.HRESULT accNavigate(int navDir, winmdroot.System.Variant.VARIANT varStart, winmdroot.System.Variant.VARIANT* pvarEndUpAt) 960 return ((delegate *unmanaged [Stdcall]<IAccessible*,int ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IAccessible*)Unsafe.AsPointer(ref this), navDir, varStart, pvarEndUpAt); 964 internal unsafe winmdroot.Foundation.HRESULT accHitTest(int xLeft, int yTop, out winmdroot.System.Variant.VARIANT pvarChild) 968 winmdroot.Foundation.HRESULT __result = this.accHitTest(xLeft, yTop, pvarChildLocal); 976 private static winmdroot.Foundation.HRESULT accHitTest(IAccessible* pThis, int xLeft, int yTop, winmdroot.System.Variant.VARIANT* pvarChild) 980 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 989 return (winmdroot.Foundation.HRESULT)ex.HResult; 1017 public unsafe winmdroot.Foundation.HRESULT accHitTest(int xLeft, int yTop, winmdroot.System.Variant.VARIANT* pvarChild) 1019 return ((delegate *unmanaged [Stdcall]<IAccessible*,int ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IAccessible*)Unsafe.AsPointer(ref this), xLeft, yTop, pvarChild); 1025 private static winmdroot.Foundation.HRESULT accDoDefaultAction(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild) 1029 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1038 return (winmdroot.Foundation.HRESULT)ex.HResult; 1058 public winmdroot.Foundation.HRESULT accDoDefaultAction(winmdroot.System.Variant.VARIANT varChild) 1060 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IAccessible*)Unsafe.AsPointer(ref this), varChild); 1066 private static winmdroot.Foundation.HRESULT put_accName(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szName) 1070 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1079 return (winmdroot.Foundation.HRESULT)ex.HResult; 1090 public winmdroot.Foundation.HRESULT put_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szName) 1092 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IAccessible*)Unsafe.AsPointer(ref this), varChild, szName); 1098 private static winmdroot.Foundation.HRESULT put_accValue(IAccessible* pThis, winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szValue) 1102 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1111 return (winmdroot.Foundation.HRESULT)ex.HResult; 1129 public winmdroot.Foundation.HRESULT put_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szValue) 1131 return ((delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IAccessible*)Unsafe.AsPointer(ref this), varChild, szValue); 1134 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1138 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 1155 internal delegate *unmanaged [Stdcall]<IAccessible*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1161 internal delegate *unmanaged [Stdcall]<IAccessible*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 1163 internal delegate *unmanaged [Stdcall]<IAccessible*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 1165 internal delegate *unmanaged [Stdcall]<IAccessible*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 1167 internal delegate *unmanaged [Stdcall]<IAccessible*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 1169 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_accParent_8; 1171 internal delegate *unmanaged [Stdcall]<IAccessible*,int* ,winmdroot.Foundation.HRESULT> get_accChildCount_9; 1173 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_accChild_10; 1175 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accName_11; 1177 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accValue_12; 1179 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accDescription_13; 1181 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_accRole_14; 1183 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_accState_15; 1185 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accHelp_16; 1187 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.Foundation.BSTR* ,winmdroot.System.Variant.VARIANT ,int* ,winmdroot.Foundation.HRESULT> get_accHelpTopic_17; 1189 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accKeyboardShortcut_18; 1191 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_accFocus_19; 1193 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_accSelection_20; 1195 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accDefaultAction_21; 1197 internal delegate *unmanaged [Stdcall]<IAccessible*,int ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> accSelect_22; 1199 internal delegate *unmanaged [Stdcall]<IAccessible*,int* ,int* ,int* ,int* ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> accLocation_23; 1201 internal delegate *unmanaged [Stdcall]<IAccessible*,int ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> accNavigate_24; 1203 internal delegate *unmanaged [Stdcall]<IAccessible*,int ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> accHitTest_25; 1205 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> accDoDefaultAction_26; 1207 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_accName_27; 1209 internal delegate *unmanaged [Stdcall]<IAccessible*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_accValue_28; 1256 unsafe winmdroot.Foundation.HRESULT get_accParent(winmdroot.System.Com.IDispatch** ppdispParent); 1259 unsafe winmdroot.Foundation.HRESULT get_accChildCount(int* pcountChildren); 1262 unsafe winmdroot.Foundation.HRESULT get_accChild(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Com.IDispatch** ppdispChild); 1265 unsafe winmdroot.Foundation.HRESULT get_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszName); 1268 unsafe winmdroot.Foundation.HRESULT get_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszValue); 1271 unsafe winmdroot.Foundation.HRESULT get_accDescription(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDescription); 1274 unsafe winmdroot.Foundation.HRESULT get_accRole(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarRole); 1277 unsafe winmdroot.Foundation.HRESULT get_accState(winmdroot.System.Variant.VARIANT varChild, winmdroot.System.Variant.VARIANT* pvarState); 1280 unsafe winmdroot.Foundation.HRESULT get_accHelp(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszHelp); 1283 unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(winmdroot.Foundation.BSTR* pszHelpFile, winmdroot.System.Variant.VARIANT varChild, int* pidTopic); 1286 unsafe winmdroot.Foundation.HRESULT get_accKeyboardShortcut(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszKeyboardShortcut); 1289 unsafe winmdroot.Foundation.HRESULT get_accFocus(winmdroot.System.Variant.VARIANT* pvarChild); 1292 unsafe winmdroot.Foundation.HRESULT get_accSelection(winmdroot.System.Variant.VARIANT* pvarChildren); 1295 unsafe winmdroot.Foundation.HRESULT get_accDefaultAction(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR* pszDefaultAction); 1298winmdroot.Foundation.HRESULT accSelect(int flagsSelect, winmdroot.System.Variant.VARIANT varChild); 1301 unsafe winmdroot.Foundation.HRESULT accLocation(int* pxLeft, int* pyTop, int* pcxWidth, int* pcyHeight, winmdroot.System.Variant.VARIANT varChild); 1304 unsafe winmdroot.Foundation.HRESULT accNavigate(int navDir, winmdroot.System.Variant.VARIANT varStart, winmdroot.System.Variant.VARIANT* pvarEndUpAt); 1307 unsafe winmdroot.Foundation.HRESULT accHitTest(int xLeft, int yTop, winmdroot.System.Variant.VARIANT* pvarChild); 1310winmdroot.Foundation.HRESULT accDoDefaultAction(winmdroot.System.Variant.VARIANT varChild); 1313winmdroot.Foundation.HRESULT put_accName(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szName); 1316winmdroot.Foundation.HRESULT put_accValue(winmdroot.System.Variant.VARIANT varChild, winmdroot.Foundation.BSTR szValue);
Windows.Win32.IAccessibleEx.g.cs (31)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IAccessibleEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAccessibleEx*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetObjectForChild(IAccessibleEx* pThis, int idChild, winmdroot.UI.Accessibility.IAccessibleEx** pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 90 ((delegate *unmanaged [Stdcall]<IAccessibleEx*,int ,winmdroot.UI.Accessibility.IAccessibleEx** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IAccessibleEx*)Unsafe.AsPointer(ref this), idChild, &__retVal).ThrowOnFailure(); 106 private static winmdroot.Foundation.HRESULT GetIAccessiblePair(IAccessibleEx* pThis, winmdroot.UI.Accessibility.IAccessible** ppAcc, int* pidChild) 110 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 119 return (winmdroot.Foundation.HRESULT)ex.HResult; 140 ((delegate *unmanaged [Stdcall]<IAccessibleEx*,winmdroot.UI.Accessibility.IAccessible** ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IAccessibleEx*)Unsafe.AsPointer(ref this), ppAcc, pidChild).ThrowOnFailure(); 146 private static winmdroot.Foundation.HRESULT GetRuntimeId(IAccessibleEx* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 150 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 174 ((delegate *unmanaged [Stdcall]<IAccessibleEx*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IAccessibleEx*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 181 private static winmdroot.Foundation.HRESULT ConvertReturnedElement(IAccessibleEx* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple* pIn, winmdroot.UI.Accessibility.IAccessibleEx** ppRetValOut) 185 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 194 return (winmdroot.Foundation.HRESULT)ex.HResult; 213 ((delegate *unmanaged [Stdcall]<IAccessibleEx*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.IAccessibleEx** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IAccessibleEx*)Unsafe.AsPointer(ref this), pIn, ppRetValOut).ThrowOnFailure(); 216 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 220 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 237 internal delegate *unmanaged [Stdcall]<IAccessibleEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 243 internal delegate *unmanaged [Stdcall]<IAccessibleEx*,int ,winmdroot.UI.Accessibility.IAccessibleEx** ,winmdroot.Foundation.HRESULT> GetObjectForChild_4; 245 internal delegate *unmanaged [Stdcall]<IAccessibleEx*,winmdroot.UI.Accessibility.IAccessible** ,int* ,winmdroot.Foundation.HRESULT> GetIAccessiblePair_5; 247 internal delegate *unmanaged [Stdcall]<IAccessibleEx*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetRuntimeId_6; 249 internal delegate *unmanaged [Stdcall]<IAccessibleEx*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.IAccessibleEx** ,winmdroot.Foundation.HRESULT> ConvertReturnedElement_7; 279 unsafe winmdroot.Foundation.HRESULT GetObjectForChild(int idChild, winmdroot.UI.Accessibility.IAccessibleEx** pRetVal); 282 unsafe winmdroot.Foundation.HRESULT GetIAccessiblePair(winmdroot.UI.Accessibility.IAccessible** ppAcc, int* pidChild); 285 unsafe winmdroot.Foundation.HRESULT GetRuntimeId(winmdroot.System.Com.SAFEARRAY** pRetVal); 288 unsafe winmdroot.Foundation.HRESULT ConvertReturnedElement(winmdroot.UI.Accessibility.IRawElementProviderSimple* pIn, winmdroot.UI.Accessibility.IAccessibleEx** ppRetValOut);
Windows.Win32.IAdviseSinkEx.g.cs (13)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IAdviseSinkEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAdviseSinkEx*)Unsafe.AsPointer(ref this), riid, ppvObject); 74 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 97 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 120 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 143 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 166 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 189 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 209 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 213 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 230 internal delegate *unmanaged [Stdcall]<IAdviseSinkEx*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1;
Windows.Win32.IAutoComplete.g.cs (19)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IAutoComplete*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAutoComplete*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT Init(IAutoComplete* pThis, winmdroot.Foundation.HWND hwndEdit, winmdroot.System.Com.IUnknown* punkACL, winmdroot.Foundation.PCWSTR pwszRegKeyPath, winmdroot.Foundation.PCWSTR pwszQuickComplete) 74 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 112 ((delegate *unmanaged [Stdcall]<IAutoComplete*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IAutoComplete*)Unsafe.AsPointer(ref this), hwndEdit, punkACL, pwszRegKeyPath, pwszQuickComplete).ThrowOnFailure(); 118 private static winmdroot.Foundation.HRESULT Enable(IAutoComplete* pThis, winmdroot.Foundation.BOOL fEnable) 122 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 131 return (winmdroot.Foundation.HRESULT)ex.HResult; 146 ((delegate *unmanaged [Stdcall]<IAutoComplete*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IAutoComplete*)Unsafe.AsPointer(ref this), fEnable).ThrowOnFailure(); 149 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 153 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 170 internal delegate *unmanaged [Stdcall]<IAutoComplete*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 176 internal delegate *unmanaged [Stdcall]<IAutoComplete*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> Init_4; 178 internal delegate *unmanaged [Stdcall]<IAutoComplete*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Enable_5; 206 unsafe winmdroot.Foundation.HRESULT Init(winmdroot.Foundation.HWND hwndEdit, winmdroot.System.Com.IUnknown* punkACL, winmdroot.Foundation.PCWSTR pwszRegKeyPath, winmdroot.Foundation.PCWSTR pwszQuickComplete); 209winmdroot.Foundation.HRESULT Enable(winmdroot.Foundation.BOOL fEnable);
Windows.Win32.IAutoComplete2.g.cs (32)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IAutoComplete2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IAutoComplete2*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT Init(IAutoComplete2* pThis, winmdroot.Foundation.HWND hwndEdit, winmdroot.System.Com.IUnknown* punkACL, winmdroot.Foundation.PCWSTR pwszRegKeyPath, winmdroot.Foundation.PCWSTR pwszQuickComplete) 74 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<IAutoComplete2*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IAutoComplete2*)Unsafe.AsPointer(ref this), hwndEdit, punkACL, pwszRegKeyPath, pwszQuickComplete).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT Enable(IAutoComplete2* pThis, winmdroot.Foundation.BOOL fEnable) 99 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 114 ((delegate *unmanaged [Stdcall]<IAutoComplete2*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IAutoComplete2*)Unsafe.AsPointer(ref this), fEnable).ThrowOnFailure(); 120 private static winmdroot.Foundation.HRESULT SetOptions(IAutoComplete2* pThis, uint dwFlag) 124 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 133 return (winmdroot.Foundation.HRESULT)ex.HResult; 146 public winmdroot.Foundation.HRESULT SetOptions(uint dwFlag) 148 return ((delegate *unmanaged [Stdcall]<IAutoComplete2*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IAutoComplete2*)Unsafe.AsPointer(ref this), dwFlag); 163 private static winmdroot.Foundation.HRESULT GetOptions(IAutoComplete2* pThis, uint* pdwFlag) 167 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<IAutoComplete2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IAutoComplete2*)Unsafe.AsPointer(ref this), pdwFlag).ThrowOnFailure(); 196 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 200 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 217 internal delegate *unmanaged [Stdcall]<IAutoComplete2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 223 internal delegate *unmanaged [Stdcall]<IAutoComplete2*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> Init_4; 225 internal delegate *unmanaged [Stdcall]<IAutoComplete2*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Enable_5; 227 internal delegate *unmanaged [Stdcall]<IAutoComplete2*,uint ,winmdroot.Foundation.HRESULT> SetOptions_6; 229 internal delegate *unmanaged [Stdcall]<IAutoComplete2*,uint* ,winmdroot.Foundation.HRESULT> GetOptions_7; 259 unsafe new winmdroot.Foundation.HRESULT Init(winmdroot.Foundation.HWND hwndEdit, winmdroot.System.Com.IUnknown* punkACL, winmdroot.Foundation.PCWSTR pwszRegKeyPath, winmdroot.Foundation.PCWSTR pwszQuickComplete); 262 new winmdroot.Foundation.HRESULT Enable(winmdroot.Foundation.BOOL fEnable); 265winmdroot.Foundation.HRESULT SetOptions(uint dwFlag); 268 unsafe winmdroot.Foundation.HRESULT GetOptions(uint* pdwFlag);
Windows.Win32.IBindHost.g.cs (25)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IBindHost*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IBindHost*)Unsafe.AsPointer(ref this), riid, ppvObject); 57 private static winmdroot.Foundation.HRESULT CreateMoniker(IBindHost* pThis, winmdroot.Foundation.PWSTR szName, winmdroot.System.Com.IBindCtx* pBC, winmdroot.System.Com.IMoniker** ppmk, uint dwReserved) 61 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 70 return (winmdroot.Foundation.HRESULT)ex.HResult; 76 ((delegate *unmanaged [Stdcall]<IBindHost*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker** ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IBindHost*)Unsafe.AsPointer(ref this), szName, pBC, ppmk, dwReserved).ThrowOnFailure(); 94 private static winmdroot.Foundation.HRESULT MonikerBindToStorage(IBindHost* pThis, winmdroot.System.Com.IMoniker* pMk, winmdroot.System.Com.IBindCtx* pBC, winmdroot.System.Com.IBindStatusCallback* pBSC, global::System.Guid* riid, void** ppvObj) 98 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 113 ((delegate *unmanaged [Stdcall]<IBindHost*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IBindStatusCallback* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IBindHost*)Unsafe.AsPointer(ref this), pMk, pBC, pBSC, riid, ppvObj).ThrowOnFailure(); 131 private static winmdroot.Foundation.HRESULT MonikerBindToObject(IBindHost* pThis, winmdroot.System.Com.IMoniker* pMk, winmdroot.System.Com.IBindCtx* pBC, winmdroot.System.Com.IBindStatusCallback* pBSC, global::System.Guid* riid, void** ppvObj) 135 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 144 return (winmdroot.Foundation.HRESULT)ex.HResult; 150 ((delegate *unmanaged [Stdcall]<IBindHost*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IBindStatusCallback* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IBindHost*)Unsafe.AsPointer(ref this), pMk, pBC, pBSC, riid, ppvObj).ThrowOnFailure(); 153 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 157 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 174 internal delegate *unmanaged [Stdcall]<IBindHost*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 180 internal delegate *unmanaged [Stdcall]<IBindHost*,winmdroot.Foundation.PWSTR ,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IMoniker** ,uint ,winmdroot.Foundation.HRESULT> CreateMoniker_4; 182 internal delegate *unmanaged [Stdcall]<IBindHost*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IBindStatusCallback* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> MonikerBindToStorage_5; 184 internal delegate *unmanaged [Stdcall]<IBindHost*,winmdroot.System.Com.IMoniker* ,winmdroot.System.Com.IBindCtx* ,winmdroot.System.Com.IBindStatusCallback* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> MonikerBindToObject_6; 212 unsafe winmdroot.Foundation.HRESULT CreateMoniker(winmdroot.Foundation.PWSTR szName, winmdroot.System.Com.IBindCtx* pBC, winmdroot.System.Com.IMoniker** ppmk, uint dwReserved); 215 unsafe winmdroot.Foundation.HRESULT MonikerBindToStorage(winmdroot.System.Com.IMoniker* pMk, winmdroot.System.Com.IBindCtx* pBC, winmdroot.System.Com.IBindStatusCallback* pBSC, global::System.Guid* riid, void** ppvObj); 218 unsafe winmdroot.Foundation.HRESULT MonikerBindToObject(winmdroot.System.Com.IMoniker* pMk, winmdroot.System.Com.IBindCtx* pBC, winmdroot.System.Com.IBindStatusCallback* pBSC, global::System.Guid* riid, void** ppvObj);
Windows.Win32.IBinding.g.cs (43)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IBinding*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IBinding*)Unsafe.AsPointer(ref this), riid, ppvObject); 57 private static winmdroot.Foundation.HRESULT Abort(IBinding* pThis) 61 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 70 return (winmdroot.Foundation.HRESULT)ex.HResult; 76 ((delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IBinding*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 82 private static winmdroot.Foundation.HRESULT Suspend(IBinding* pThis) 86 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 95 return (winmdroot.Foundation.HRESULT)ex.HResult; 101 ((delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IBinding*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 107 private static winmdroot.Foundation.HRESULT Resume(IBinding* pThis) 111 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 120 return (winmdroot.Foundation.HRESULT)ex.HResult; 126 ((delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IBinding*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 132 private static winmdroot.Foundation.HRESULT SetPriority(IBinding* pThis, int nPriority) 136 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 145 return (winmdroot.Foundation.HRESULT)ex.HResult; 151 ((delegate *unmanaged [Stdcall]<IBinding*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IBinding*)Unsafe.AsPointer(ref this), nPriority).ThrowOnFailure(); 166 private static winmdroot.Foundation.HRESULT GetPriority(IBinding* pThis, int* pnPriority) 170 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 185 ((delegate *unmanaged [Stdcall]<IBinding*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IBinding*)Unsafe.AsPointer(ref this), pnPriority).ThrowOnFailure(); 209 private static winmdroot.Foundation.HRESULT GetBindResult(IBinding* pThis, global::System.Guid* pclsidProtocol, uint* pdwResult, winmdroot.Foundation.PWSTR* pszResult, uint* pdwReserved) 213 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 222 return (winmdroot.Foundation.HRESULT)ex.HResult; 228 ((delegate *unmanaged [Stdcall]<IBinding*,global::System.Guid* ,uint* ,winmdroot.Foundation.PWSTR* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IBinding*)Unsafe.AsPointer(ref this), pclsidProtocol, pdwResult, pszResult, pdwReserved).ThrowOnFailure(); 231 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 235 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 252 internal delegate *unmanaged [Stdcall]<IBinding*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 258 internal delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT> Abort_4; 260 internal delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT> Suspend_5; 262 internal delegate *unmanaged [Stdcall]<IBinding*,winmdroot.Foundation.HRESULT> Resume_6; 264 internal delegate *unmanaged [Stdcall]<IBinding*,int ,winmdroot.Foundation.HRESULT> SetPriority_7; 266 internal delegate *unmanaged [Stdcall]<IBinding*,int* ,winmdroot.Foundation.HRESULT> GetPriority_8; 268 internal delegate *unmanaged [Stdcall]<IBinding*,global::System.Guid* ,uint* ,winmdroot.Foundation.PWSTR* ,uint* ,winmdroot.Foundation.HRESULT> GetBindResult_9; 299winmdroot.Foundation.HRESULT Abort(); 302winmdroot.Foundation.HRESULT Suspend(); 305winmdroot.Foundation.HRESULT Resume(); 308winmdroot.Foundation.HRESULT SetPriority(int nPriority); 311 unsafe winmdroot.Foundation.HRESULT GetPriority(int* pnPriority); 314 unsafe winmdroot.Foundation.HRESULT GetBindResult(global::System.Guid* pclsidProtocol, uint* pdwResult, winmdroot.Foundation.PWSTR* pszResult, uint* pdwReserved);
Windows.Win32.IBindStatusCallback.g.cs (62)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IBindStatusCallback*)Unsafe.AsPointer(ref this), riid, ppvObject); 57 private static winmdroot.Foundation.HRESULT OnStartBinding(IBindStatusCallback* pThis, uint dwReserved, winmdroot.System.Com.IBinding* pib) 61 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 70 return (winmdroot.Foundation.HRESULT)ex.HResult; 76 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,winmdroot.System.Com.IBinding* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IBindStatusCallback*)Unsafe.AsPointer(ref this), dwReserved, pib).ThrowOnFailure(); 91 private static winmdroot.Foundation.HRESULT GetPriority(IBindStatusCallback* pThis, int* pnPriority) 95 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 104 return (winmdroot.Foundation.HRESULT)ex.HResult; 110 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IBindStatusCallback*)Unsafe.AsPointer(ref this), pnPriority).ThrowOnFailure(); 116 private static winmdroot.Foundation.HRESULT OnLowResource(IBindStatusCallback* pThis, uint reserved) 120 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 129 return (winmdroot.Foundation.HRESULT)ex.HResult; 135 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IBindStatusCallback*)Unsafe.AsPointer(ref this), reserved).ThrowOnFailure(); 150 private static winmdroot.Foundation.HRESULT OnProgress(IBindStatusCallback* pThis, uint ulProgress, uint ulProgressMax, uint ulStatusCode, winmdroot.Foundation.PCWSTR szStatusText) 154 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 169 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,uint ,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IBindStatusCallback*)Unsafe.AsPointer(ref this), ulProgress, ulProgressMax, ulStatusCode, szStatusText).ThrowOnFailure(); 172 /// <inheritdoc cref="OnStopBinding(winmdroot.Foundation.HRESULT, winmdroot.Foundation.PCWSTR)"/> 173 internal unsafe void OnStopBinding(winmdroot.Foundation.HRESULT hresult, string szError) 184 private static winmdroot.Foundation.HRESULT OnStopBinding(IBindStatusCallback* pThis, winmdroot.Foundation.HRESULT hresult, winmdroot.Foundation.PCWSTR szError) 188 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 197 return (winmdroot.Foundation.HRESULT)ex.HResult; 201 public void OnStopBinding(winmdroot.Foundation.HRESULT hresult, winmdroot.Foundation.PCWSTR szError) 203 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IBindStatusCallback*)Unsafe.AsPointer(ref this), hresult, szError).ThrowOnFailure(); 221 private static winmdroot.Foundation.HRESULT GetBindInfo(IBindStatusCallback* pThis, uint* grfBINDF, winmdroot.System.Com.BINDINFO* pbindinfo) 225 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 234 return (winmdroot.Foundation.HRESULT)ex.HResult; 240 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint* ,winmdroot.System.Com.BINDINFO* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IBindStatusCallback*)Unsafe.AsPointer(ref this), grfBINDF, pbindinfo).ThrowOnFailure(); 258 private static winmdroot.Foundation.HRESULT OnDataAvailable(IBindStatusCallback* pThis, uint grfBSCF, uint dwSize, winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pstgmed) 262 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 271 return (winmdroot.Foundation.HRESULT)ex.HResult; 277 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,uint ,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IBindStatusCallback*)Unsafe.AsPointer(ref this), grfBSCF, dwSize, pformatetc, pstgmed).ThrowOnFailure(); 292 private static winmdroot.Foundation.HRESULT OnObjectAvailable(IBindStatusCallback* pThis, global::System.Guid* riid, winmdroot.System.Com.IUnknown* punk) 296 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 305 return (winmdroot.Foundation.HRESULT)ex.HResult; 311 ((delegate *unmanaged [Stdcall]<IBindStatusCallback*,global::System.Guid* ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IBindStatusCallback*)Unsafe.AsPointer(ref this), riid, punk).ThrowOnFailure(); 314 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 318 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 335 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 341 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,winmdroot.System.Com.IBinding* ,winmdroot.Foundation.HRESULT> OnStartBinding_4; 343 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,int* ,winmdroot.Foundation.HRESULT> GetPriority_5; 345 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,winmdroot.Foundation.HRESULT> OnLowResource_6; 347 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,uint ,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> OnProgress_7; 349 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> OnStopBinding_8; 351 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint* ,winmdroot.System.Com.BINDINFO* ,winmdroot.Foundation.HRESULT> GetBindInfo_9; 353 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,uint ,uint ,winmdroot.System.Com.FORMATETC* ,winmdroot.System.Com.STGMEDIUM* ,winmdroot.Foundation.HRESULT> OnDataAvailable_10; 355 internal delegate *unmanaged [Stdcall]<IBindStatusCallback*,global::System.Guid* ,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> OnObjectAvailable_11; 388 unsafe winmdroot.Foundation.HRESULT OnStartBinding(uint dwReserved, winmdroot.System.Com.IBinding* pib); 391 unsafe winmdroot.Foundation.HRESULT GetPriority(int* pnPriority); 394winmdroot.Foundation.HRESULT OnLowResource(uint reserved); 397winmdroot.Foundation.HRESULT OnProgress(uint ulProgress, uint ulProgressMax, uint ulStatusCode, winmdroot.Foundation.PCWSTR szStatusText); 400winmdroot.Foundation.HRESULT OnStopBinding(winmdroot.Foundation.HRESULT hresult, winmdroot.Foundation.PCWSTR szError); 403 unsafe winmdroot.Foundation.HRESULT GetBindInfo(uint* grfBINDF, winmdroot.System.Com.BINDINFO* pbindinfo); 406 unsafe winmdroot.Foundation.HRESULT OnDataAvailable(uint grfBSCF, uint dwSize, winmdroot.System.Com.FORMATETC* pformatetc, winmdroot.System.Com.STGMEDIUM* pstgmed); 409 unsafe winmdroot.Foundation.HRESULT OnObjectAvailable(global::System.Guid* riid, winmdroot.System.Com.IUnknown* punk);
Windows.Win32.IClassFactory.g.cs (23)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IClassFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IClassFactory*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT CreateInstance(winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObject) 62 winmdroot.Foundation.HRESULT __result = this.CreateInstance(pUnkOuter, riidLocal, ppvObjectLocal); 71 private static winmdroot.Foundation.HRESULT CreateInstance(IClassFactory* pThis, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject) 75 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 100 public unsafe winmdroot.Foundation.HRESULT CreateInstance([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject) 102 return ((delegate *unmanaged [Stdcall]<IClassFactory*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IClassFactory*)Unsafe.AsPointer(ref this), pUnkOuter, riid, ppvObject); 108 private static winmdroot.Foundation.HRESULT LockServer(IClassFactory* pThis, winmdroot.Foundation.BOOL fLock) 112 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 121 return (winmdroot.Foundation.HRESULT)ex.HResult; 132 public winmdroot.Foundation.HRESULT LockServer(winmdroot.Foundation.BOOL fLock) 134 return ((delegate *unmanaged [Stdcall]<IClassFactory*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IClassFactory*)Unsafe.AsPointer(ref this), fLock); 137 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 141 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 158 internal delegate *unmanaged [Stdcall]<IClassFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 164 internal delegate *unmanaged [Stdcall]<IClassFactory*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> CreateInstance_4; 166 internal delegate *unmanaged [Stdcall]<IClassFactory*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> LockServer_5; 194 unsafe winmdroot.Foundation.HRESULT CreateInstance([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject); 197winmdroot.Foundation.HRESULT LockServer(winmdroot.Foundation.BOOL fLock);
Windows.Win32.IClassFactory2.g.cs (48)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IClassFactory2*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT CreateInstance(winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObject) 62 winmdroot.Foundation.HRESULT __result = this.CreateInstance(pUnkOuter, riidLocal, ppvObjectLocal); 71 private static winmdroot.Foundation.HRESULT CreateInstance(IClassFactory2* pThis, [Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject) 75 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 public unsafe winmdroot.Foundation.HRESULT CreateInstance([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject) 90 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IClassFactory2*)Unsafe.AsPointer(ref this), pUnkOuter, riid, ppvObject); 96 private static winmdroot.Foundation.HRESULT LockServer(IClassFactory2* pThis, winmdroot.Foundation.BOOL fLock) 100 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 109 return (winmdroot.Foundation.HRESULT)ex.HResult; 113 public winmdroot.Foundation.HRESULT LockServer(winmdroot.Foundation.BOOL fLock) 115 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IClassFactory2*)Unsafe.AsPointer(ref this), fLock); 119 internal unsafe winmdroot.Foundation.HRESULT GetLicInfo(ref winmdroot.System.Ole.LICINFO pLicInfo) 123 winmdroot.Foundation.HRESULT __result = this.GetLicInfo(pLicInfoLocal); 131 private static winmdroot.Foundation.HRESULT GetLicInfo(IClassFactory2* pThis, winmdroot.System.Ole.LICINFO* pLicInfo) 135 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 144 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 public unsafe winmdroot.Foundation.HRESULT GetLicInfo(winmdroot.System.Ole.LICINFO* pLicInfo) 160 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.System.Ole.LICINFO* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IClassFactory2*)Unsafe.AsPointer(ref this), pLicInfo); 166 private static winmdroot.Foundation.HRESULT RequestLicKey(IClassFactory2* pThis, uint dwReserved, winmdroot.Foundation.BSTR* pBstrKey) 170 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 194 public unsafe winmdroot.Foundation.HRESULT RequestLicKey(uint dwReserved, winmdroot.Foundation.BSTR* pBstrKey) 196 return ((delegate *unmanaged [Stdcall]<IClassFactory2*,uint ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IClassFactory2*)Unsafe.AsPointer(ref this), dwReserved, pBstrKey); 200 internal unsafe winmdroot.Foundation.HRESULT CreateInstanceLic(winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, winmdroot.Foundation.BSTR bstrKey, out void* ppvObj) 206 winmdroot.Foundation.HRESULT __result = this.CreateInstanceLic(pUnkOuter, default, riidLocal, bstrKey, ppvObjLocal); 215 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) 219 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 228 return (winmdroot.Foundation.HRESULT)ex.HResult; 246 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) 248 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); 251 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 255 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 272 internal delegate *unmanaged [Stdcall]<IClassFactory2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 278 internal delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.System.Com.IUnknown* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> CreateInstance_4; 280 internal delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> LockServer_5; 282 internal delegate *unmanaged [Stdcall]<IClassFactory2*,winmdroot.System.Ole.LICINFO* ,winmdroot.Foundation.HRESULT> GetLicInfo_6; 284 internal delegate *unmanaged [Stdcall]<IClassFactory2*,uint ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> RequestLicKey_7; 286 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; 317 unsafe new winmdroot.Foundation.HRESULT CreateInstance([Optional] winmdroot.System.Com.IUnknown* pUnkOuter, global::System.Guid* riid, void** ppvObject); 320 new winmdroot.Foundation.HRESULT LockServer(winmdroot.Foundation.BOOL fLock); 323 unsafe winmdroot.Foundation.HRESULT GetLicInfo(winmdroot.System.Ole.LICINFO* pLicInfo); 326 unsafe winmdroot.Foundation.HRESULT RequestLicKey(uint dwReserved, winmdroot.Foundation.BSTR* pBstrKey); 329 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);
Windows.Win32.IConnectionPoint.g.cs (46)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IConnectionPoint*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetConnectionInterface(out global::System.Guid pIID) 60 winmdroot.Foundation.HRESULT __result = this.GetConnectionInterface(pIIDLocal); 68 private static winmdroot.Foundation.HRESULT GetConnectionInterface(IConnectionPoint* pThis, global::System.Guid* pIID) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 95 public unsafe winmdroot.Foundation.HRESULT GetConnectionInterface(global::System.Guid* pIID) 97 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IConnectionPoint*)Unsafe.AsPointer(ref this), pIID); 103 private static winmdroot.Foundation.HRESULT GetConnectionPointContainer(IConnectionPoint* pThis, winmdroot.System.Com.IConnectionPointContainer** ppCPC) 107 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 116 return (winmdroot.Foundation.HRESULT)ex.HResult; 130 public unsafe winmdroot.Foundation.HRESULT GetConnectionPointContainer(winmdroot.System.Com.IConnectionPointContainer** ppCPC) 132 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IConnectionPointContainer** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IConnectionPoint*)Unsafe.AsPointer(ref this), ppCPC); 136 internal unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IUnknown* pUnkSink, out uint pdwCookie) 140 winmdroot.Foundation.HRESULT __result = this.Advise(pUnkSink, pdwCookieLocal); 148 private static winmdroot.Foundation.HRESULT Advise(IConnectionPoint* pThis, winmdroot.System.Com.IUnknown* pUnkSink, uint* pdwCookie) 152 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 161 return (winmdroot.Foundation.HRESULT)ex.HResult; 176 public unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IUnknown* pUnkSink, uint* pdwCookie) 178 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IUnknown* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IConnectionPoint*)Unsafe.AsPointer(ref this), pUnkSink, pdwCookie); 184 private static winmdroot.Foundation.HRESULT Unadvise(IConnectionPoint* pThis, uint dwCookie) 188 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 197 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 public winmdroot.Foundation.HRESULT Unadvise(uint dwCookie) 210 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IConnectionPoint*)Unsafe.AsPointer(ref this), dwCookie); 216 private static winmdroot.Foundation.HRESULT EnumConnections(IConnectionPoint* pThis, winmdroot.System.Com.IEnumConnections** ppEnum) 220 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 229 return (winmdroot.Foundation.HRESULT)ex.HResult; 240 public unsafe winmdroot.Foundation.HRESULT EnumConnections(winmdroot.System.Com.IEnumConnections** ppEnum) 242 return ((delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IEnumConnections** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IConnectionPoint*)Unsafe.AsPointer(ref this), ppEnum); 245 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 249 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 266 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 272 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetConnectionInterface_4; 274 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IConnectionPointContainer** ,winmdroot.Foundation.HRESULT> GetConnectionPointContainer_5; 276 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IUnknown* ,uint* ,winmdroot.Foundation.HRESULT> Advise_6; 278 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,uint ,winmdroot.Foundation.HRESULT> Unadvise_7; 280 internal delegate *unmanaged [Stdcall]<IConnectionPoint*,winmdroot.System.Com.IEnumConnections** ,winmdroot.Foundation.HRESULT> EnumConnections_8; 311 unsafe winmdroot.Foundation.HRESULT GetConnectionInterface(global::System.Guid* pIID); 314 unsafe winmdroot.Foundation.HRESULT GetConnectionPointContainer(winmdroot.System.Com.IConnectionPointContainer** ppCPC); 317 unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IUnknown* pUnkSink, uint* pdwCookie); 320winmdroot.Foundation.HRESULT Unadvise(uint dwCookie); 323 unsafe winmdroot.Foundation.HRESULT EnumConnections(winmdroot.System.Com.IEnumConnections** ppEnum);
Windows.Win32.IConnectionPointContainer.g.cs (23)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IConnectionPointContainer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IConnectionPointContainer*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT EnumConnectionPoints(IConnectionPointContainer* pThis, winmdroot.System.Com.IEnumConnectionPoints** ppEnum) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT EnumConnectionPoints(winmdroot.System.Com.IEnumConnectionPoints** ppEnum) 87 return ((delegate *unmanaged [Stdcall]<IConnectionPointContainer*,winmdroot.System.Com.IEnumConnectionPoints** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IConnectionPointContainer*)Unsafe.AsPointer(ref this), ppEnum); 91 internal unsafe winmdroot.Foundation.HRESULT FindConnectionPoint(in global::System.Guid riid, winmdroot.System.Com.IConnectionPoint** ppCP) 95 winmdroot.Foundation.HRESULT __result = this.FindConnectionPoint(riidLocal, ppCP); 103 private static winmdroot.Foundation.HRESULT FindConnectionPoint(IConnectionPointContainer* pThis, global::System.Guid* riid, winmdroot.System.Com.IConnectionPoint** ppCP) 107 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 116 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 public unsafe winmdroot.Foundation.HRESULT FindConnectionPoint(global::System.Guid* riid, winmdroot.System.Com.IConnectionPoint** ppCP) 133 return ((delegate *unmanaged [Stdcall]<IConnectionPointContainer*,global::System.Guid* ,winmdroot.System.Com.IConnectionPoint** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IConnectionPointContainer*)Unsafe.AsPointer(ref this), riid, ppCP); 136 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 140 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 157 internal delegate *unmanaged [Stdcall]<IConnectionPointContainer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 163 internal delegate *unmanaged [Stdcall]<IConnectionPointContainer*,winmdroot.System.Com.IEnumConnectionPoints** ,winmdroot.Foundation.HRESULT> EnumConnectionPoints_4; 165 internal delegate *unmanaged [Stdcall]<IConnectionPointContainer*,global::System.Guid* ,winmdroot.System.Com.IConnectionPoint** ,winmdroot.Foundation.HRESULT> FindConnectionPoint_5; 193 unsafe winmdroot.Foundation.HRESULT EnumConnectionPoints(winmdroot.System.Com.IEnumConnectionPoints** ppEnum); 196 unsafe winmdroot.Foundation.HRESULT FindConnectionPoint(global::System.Guid* riid, winmdroot.System.Com.IConnectionPoint** ppCP);
Windows.Win32.IEnumConnectionPoints.g.cs (34)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumConnectionPoints*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT Next(uint cConnections, winmdroot.System.Com.IConnectionPoint** ppCP, out uint pcFetched) 60 winmdroot.Foundation.HRESULT __result = this.Next(cConnections, ppCP, pcFetchedLocal); 68 private static winmdroot.Foundation.HRESULT Next(IEnumConnectionPoints* pThis, uint cConnections, winmdroot.System.Com.IConnectionPoint** ppCP, uint* pcFetched) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT Next(uint cConnections, winmdroot.System.Com.IConnectionPoint** ppCP, uint* pcFetched) 98 return ((delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,uint ,winmdroot.System.Com.IConnectionPoint** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumConnectionPoints*)Unsafe.AsPointer(ref this), cConnections, ppCP, pcFetched); 104 private static winmdroot.Foundation.HRESULT Skip(IEnumConnectionPoints* pThis, uint cConnections) 108 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 129 ((delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumConnectionPoints*)Unsafe.AsPointer(ref this), cConnections).ThrowOnFailure(); 135 private static winmdroot.Foundation.HRESULT Reset(IEnumConnectionPoints* pThis) 139 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 148 return (winmdroot.Foundation.HRESULT)ex.HResult; 157 ((delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumConnectionPoints*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 163 private static winmdroot.Foundation.HRESULT Clone(IEnumConnectionPoints* pThis, winmdroot.System.Com.IEnumConnectionPoints** ppEnum) 167 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 188 ((delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,winmdroot.System.Com.IEnumConnectionPoints** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumConnectionPoints*)Unsafe.AsPointer(ref this), ppEnum).ThrowOnFailure(); 191 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 195 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 212 internal delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 218 internal delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,uint ,winmdroot.System.Com.IConnectionPoint** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 220 internal delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 222 internal delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,winmdroot.Foundation.HRESULT> Reset_6; 224 internal delegate *unmanaged [Stdcall]<IEnumConnectionPoints*,winmdroot.System.Com.IEnumConnectionPoints** ,winmdroot.Foundation.HRESULT> Clone_7; 254 unsafe winmdroot.Foundation.HRESULT Next(uint cConnections, winmdroot.System.Com.IConnectionPoint** ppCP, uint* pcFetched); 257winmdroot.Foundation.HRESULT Skip(uint cConnections); 260winmdroot.Foundation.HRESULT Reset(); 263 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumConnectionPoints** ppEnum);
Windows.Win32.IEnumConnections.g.cs (34)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumConnections*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumConnections*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Com.CONNECTDATA> rgcd, out uint pcFetched) 62 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgcd.Length, rgcdLocal, pcFetchedLocal); 71 private static winmdroot.Foundation.HRESULT Next(IEnumConnections* pThis, uint cConnections, winmdroot.System.Com.CONNECTDATA* rgcd, uint* pcFetched) 75 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 100 public unsafe winmdroot.Foundation.HRESULT Next(uint cConnections, winmdroot.System.Com.CONNECTDATA* rgcd, uint* pcFetched) 102 return ((delegate *unmanaged [Stdcall]<IEnumConnections*,uint ,winmdroot.System.Com.CONNECTDATA* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumConnections*)Unsafe.AsPointer(ref this), cConnections, rgcd, pcFetched); 108 private static winmdroot.Foundation.HRESULT Skip(IEnumConnections* pThis, uint cConnections) 112 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 121 return (winmdroot.Foundation.HRESULT)ex.HResult; 133 ((delegate *unmanaged [Stdcall]<IEnumConnections*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumConnections*)Unsafe.AsPointer(ref this), cConnections).ThrowOnFailure(); 139 private static winmdroot.Foundation.HRESULT Reset(IEnumConnections* pThis) 143 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IEnumConnections*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumConnections*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 167 private static winmdroot.Foundation.HRESULT Clone(IEnumConnections* pThis, winmdroot.System.Com.IEnumConnections** ppEnum) 171 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IEnumConnections*,winmdroot.System.Com.IEnumConnections** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumConnections*)Unsafe.AsPointer(ref this), ppEnum).ThrowOnFailure(); 195 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 199 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 216 internal delegate *unmanaged [Stdcall]<IEnumConnections*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 222 internal delegate *unmanaged [Stdcall]<IEnumConnections*,uint ,winmdroot.System.Com.CONNECTDATA* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 224 internal delegate *unmanaged [Stdcall]<IEnumConnections*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 226 internal delegate *unmanaged [Stdcall]<IEnumConnections*,winmdroot.Foundation.HRESULT> Reset_6; 228 internal delegate *unmanaged [Stdcall]<IEnumConnections*,winmdroot.System.Com.IEnumConnections** ,winmdroot.Foundation.HRESULT> Clone_7; 258 unsafe winmdroot.Foundation.HRESULT Next(uint cConnections, winmdroot.System.Com.CONNECTDATA* rgcd, uint* pcFetched); 261winmdroot.Foundation.HRESULT Skip(uint cConnections); 264winmdroot.Foundation.HRESULT Reset(); 267 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Com.IEnumConnections** ppEnum);
Windows.Win32.IEnumIDList.g.cs (35)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumIDList*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumIDList*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Next(IEnumIDList* pThis, uint celt, winmdroot.UI.Shell.Common.ITEMIDLIST** rgelt, [Optional] uint* pceltFetched) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 97 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.UI.Shell.Common.ITEMIDLIST** rgelt, [Optional] uint* pceltFetched) 99 return ((delegate *unmanaged [Stdcall]<IEnumIDList*,uint ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumIDList*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 105 private static winmdroot.Foundation.HRESULT Skip(IEnumIDList* pThis, uint celt) 109 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 118 return (winmdroot.Foundation.HRESULT)ex.HResult; 133 public winmdroot.Foundation.HRESULT Skip(uint celt) 135 return ((delegate *unmanaged [Stdcall]<IEnumIDList*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumIDList*)Unsafe.AsPointer(ref this), celt); 141 private static winmdroot.Foundation.HRESULT Reset(IEnumIDList* pThis) 145 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 154 return (winmdroot.Foundation.HRESULT)ex.HResult; 165 public winmdroot.Foundation.HRESULT Reset() 167 return ((delegate *unmanaged [Stdcall]<IEnumIDList*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumIDList*)Unsafe.AsPointer(ref this)); 173 private static winmdroot.Foundation.HRESULT Clone(IEnumIDList* pThis, winmdroot.UI.Shell.IEnumIDList** ppenum) 177 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 186 return (winmdroot.Foundation.HRESULT)ex.HResult; 199 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.UI.Shell.IEnumIDList** ppenum) 201 return ((delegate *unmanaged [Stdcall]<IEnumIDList*,winmdroot.UI.Shell.IEnumIDList** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumIDList*)Unsafe.AsPointer(ref this), ppenum); 204 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 208 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 225 internal delegate *unmanaged [Stdcall]<IEnumIDList*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 231 internal delegate *unmanaged [Stdcall]<IEnumIDList*,uint ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 233 internal delegate *unmanaged [Stdcall]<IEnumIDList*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 235 internal delegate *unmanaged [Stdcall]<IEnumIDList*,winmdroot.Foundation.HRESULT> Reset_6; 237 internal delegate *unmanaged [Stdcall]<IEnumIDList*,winmdroot.UI.Shell.IEnumIDList** ,winmdroot.Foundation.HRESULT> Clone_7; 267 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.UI.Shell.Common.ITEMIDLIST** rgelt, [Optional] uint* pceltFetched); 270winmdroot.Foundation.HRESULT Skip(uint celt); 273winmdroot.Foundation.HRESULT Reset(); 276 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.UI.Shell.IEnumIDList** ppenum);
Windows.Win32.IEnumOleUndoUnits.g.cs (34)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumOleUndoUnits*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT Next(uint cElt, winmdroot.System.Ole.IOleUndoUnit** rgElt, out uint pcEltFetched) 60 winmdroot.Foundation.HRESULT __result = this.Next(cElt, rgElt, pcEltFetchedLocal); 68 private static winmdroot.Foundation.HRESULT Next(IEnumOleUndoUnits* pThis, uint cElt, winmdroot.System.Ole.IOleUndoUnit** rgElt, uint* pcEltFetched) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 98 public unsafe winmdroot.Foundation.HRESULT Next(uint cElt, winmdroot.System.Ole.IOleUndoUnit** rgElt, uint* pcEltFetched) 100 return ((delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,uint ,winmdroot.System.Ole.IOleUndoUnit** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumOleUndoUnits*)Unsafe.AsPointer(ref this), cElt, rgElt, pcEltFetched); 106 private static winmdroot.Foundation.HRESULT Skip(IEnumOleUndoUnits* pThis, uint cElt) 110 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 119 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 ((delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumOleUndoUnits*)Unsafe.AsPointer(ref this), cElt).ThrowOnFailure(); 137 private static winmdroot.Foundation.HRESULT Reset(IEnumOleUndoUnits* pThis) 141 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 150 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 ((delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumOleUndoUnits*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 165 private static winmdroot.Foundation.HRESULT Clone(IEnumOleUndoUnits* pThis, winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum) 169 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 178 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumOleUndoUnits*)Unsafe.AsPointer(ref this), ppEnum).ThrowOnFailure(); 196 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 200 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 217 internal delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 223 internal delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,uint ,winmdroot.System.Ole.IOleUndoUnit** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 225 internal delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 227 internal delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,winmdroot.Foundation.HRESULT> Reset_6; 229 internal delegate *unmanaged [Stdcall]<IEnumOleUndoUnits*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT> Clone_7; 259 unsafe winmdroot.Foundation.HRESULT Next(uint cElt, winmdroot.System.Ole.IOleUndoUnit** rgElt, uint* pcEltFetched); 262winmdroot.Foundation.HRESULT Skip(uint cElt); 265winmdroot.Foundation.HRESULT Reset(); 268 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum);
Windows.Win32.IEnumOLEVERB.g.cs (37)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumOLEVERB*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumOLEVERB*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Ole.OLEVERB> rgelt, uint* pceltFetched) 60 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched); 68 private static winmdroot.Foundation.HRESULT Next(IEnumOLEVERB* pThis, uint celt, winmdroot.System.Ole.OLEVERB* rgelt, [Optional] uint* pceltFetched) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Ole.OLEVERB* rgelt, [Optional] uint* pceltFetched) 98 return ((delegate *unmanaged [Stdcall]<IEnumOLEVERB*,uint ,winmdroot.System.Ole.OLEVERB* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumOLEVERB*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched); 104 private static winmdroot.Foundation.HRESULT Skip(IEnumOLEVERB* pThis, uint celt) 108 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 127 public winmdroot.Foundation.HRESULT Skip(uint celt) 129 return ((delegate *unmanaged [Stdcall]<IEnumOLEVERB*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumOLEVERB*)Unsafe.AsPointer(ref this), celt); 135 private static winmdroot.Foundation.HRESULT Reset(IEnumOLEVERB* pThis) 139 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 148 return (winmdroot.Foundation.HRESULT)ex.HResult; 155 public winmdroot.Foundation.HRESULT Reset() 157 return ((delegate *unmanaged [Stdcall]<IEnumOLEVERB*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumOLEVERB*)Unsafe.AsPointer(ref this)); 163 private static winmdroot.Foundation.HRESULT Clone(IEnumOLEVERB* pThis, winmdroot.System.Ole.IEnumOLEVERB** ppenum) 167 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IEnumOLEVERB** ppenum) 191 return ((delegate *unmanaged [Stdcall]<IEnumOLEVERB*,winmdroot.System.Ole.IEnumOLEVERB** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumOLEVERB*)Unsafe.AsPointer(ref this), ppenum); 194 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 198 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 215 internal delegate *unmanaged [Stdcall]<IEnumOLEVERB*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 221 internal delegate *unmanaged [Stdcall]<IEnumOLEVERB*,uint ,winmdroot.System.Ole.OLEVERB* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 223 internal delegate *unmanaged [Stdcall]<IEnumOLEVERB*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 225 internal delegate *unmanaged [Stdcall]<IEnumOLEVERB*,winmdroot.Foundation.HRESULT> Reset_6; 227 internal delegate *unmanaged [Stdcall]<IEnumOLEVERB*,winmdroot.System.Ole.IEnumOLEVERB** ,winmdroot.Foundation.HRESULT> Clone_7; 257 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Ole.OLEVERB* rgelt, [Optional] uint* pceltFetched); 260winmdroot.Foundation.HRESULT Skip(uint celt); 263winmdroot.Foundation.HRESULT Reset(); 266 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IEnumOLEVERB** ppenum);
Windows.Win32.IEnumShellItems.g.cs (31)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IEnumShellItems*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumShellItems*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Next(IEnumShellItems* pThis, uint celt, winmdroot.UI.Shell.IShellItem** rgelt, [Optional] uint* pceltFetched) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 97 ((delegate *unmanaged [Stdcall]<IEnumShellItems*,uint ,winmdroot.UI.Shell.IShellItem** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumShellItems*)Unsafe.AsPointer(ref this), celt, rgelt, pceltFetched).ThrowOnFailure(); 103 private static winmdroot.Foundation.HRESULT Skip(IEnumShellItems* pThis, uint celt) 107 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 116 return (winmdroot.Foundation.HRESULT)ex.HResult; 133 ((delegate *unmanaged [Stdcall]<IEnumShellItems*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumShellItems*)Unsafe.AsPointer(ref this), celt).ThrowOnFailure(); 139 private static winmdroot.Foundation.HRESULT Reset(IEnumShellItems* pThis) 143 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 165 ((delegate *unmanaged [Stdcall]<IEnumShellItems*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumShellItems*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 171 private static winmdroot.Foundation.HRESULT Clone(IEnumShellItems* pThis, winmdroot.UI.Shell.IEnumShellItems** ppenum) 175 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 201 ((delegate *unmanaged [Stdcall]<IEnumShellItems*,winmdroot.UI.Shell.IEnumShellItems** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumShellItems*)Unsafe.AsPointer(ref this), ppenum).ThrowOnFailure(); 204 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 208 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 225 internal delegate *unmanaged [Stdcall]<IEnumShellItems*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 231 internal delegate *unmanaged [Stdcall]<IEnumShellItems*,uint ,winmdroot.UI.Shell.IShellItem** ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 233 internal delegate *unmanaged [Stdcall]<IEnumShellItems*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 235 internal delegate *unmanaged [Stdcall]<IEnumShellItems*,winmdroot.Foundation.HRESULT> Reset_6; 237 internal delegate *unmanaged [Stdcall]<IEnumShellItems*,winmdroot.UI.Shell.IEnumShellItems** ,winmdroot.Foundation.HRESULT> Clone_7; 267 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.UI.Shell.IShellItem** rgelt, [Optional] uint* pceltFetched); 270winmdroot.Foundation.HRESULT Skip(uint celt); 273winmdroot.Foundation.HRESULT Reset(); 276 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.UI.Shell.IEnumShellItems** ppenum);
Windows.Win32.IEnumVARIANT.g.cs (37)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IEnumVARIANT*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IEnumVARIANT*)Unsafe.AsPointer(ref this), riid, ppvObject); 55 internal unsafe winmdroot.Foundation.HRESULT Next(Span<winmdroot.System.Variant.VARIANT> rgVar, out uint pCeltFetched) 61 winmdroot.Foundation.HRESULT __result = this.Next((uint )rgVar.Length, rgVarLocal, pCeltFetchedLocal); 70 private static winmdroot.Foundation.HRESULT Next(IEnumVARIANT* pThis, uint celt, winmdroot.System.Variant.VARIANT* rgVar, uint* pCeltFetched) 74 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Variant.VARIANT* rgVar, uint* pCeltFetched) 98 return ((delegate *unmanaged [Stdcall]<IEnumVARIANT*,uint ,winmdroot.System.Variant.VARIANT* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IEnumVARIANT*)Unsafe.AsPointer(ref this), celt, rgVar, pCeltFetched); 104 private static winmdroot.Foundation.HRESULT Skip(IEnumVARIANT* pThis, uint celt) 108 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 130 public winmdroot.Foundation.HRESULT Skip(uint celt) 132 return ((delegate *unmanaged [Stdcall]<IEnumVARIANT*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IEnumVARIANT*)Unsafe.AsPointer(ref this), celt); 138 private static winmdroot.Foundation.HRESULT Reset(IEnumVARIANT* pThis) 142 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 151 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 public winmdroot.Foundation.HRESULT Reset() 163 return ((delegate *unmanaged [Stdcall]<IEnumVARIANT*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IEnumVARIANT*)Unsafe.AsPointer(ref this)); 169 private static winmdroot.Foundation.HRESULT Clone(IEnumVARIANT* pThis, winmdroot.System.Ole.IEnumVARIANT** ppEnum) 173 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 182 return (winmdroot.Foundation.HRESULT)ex.HResult; 196 public unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IEnumVARIANT** ppEnum) 198 return ((delegate *unmanaged [Stdcall]<IEnumVARIANT*,winmdroot.System.Ole.IEnumVARIANT** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IEnumVARIANT*)Unsafe.AsPointer(ref this), ppEnum); 201 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 205 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 222 internal delegate *unmanaged [Stdcall]<IEnumVARIANT*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 228 internal delegate *unmanaged [Stdcall]<IEnumVARIANT*,uint ,winmdroot.System.Variant.VARIANT* ,uint* ,winmdroot.Foundation.HRESULT> Next_4; 230 internal delegate *unmanaged [Stdcall]<IEnumVARIANT*,uint ,winmdroot.Foundation.HRESULT> Skip_5; 232 internal delegate *unmanaged [Stdcall]<IEnumVARIANT*,winmdroot.Foundation.HRESULT> Reset_6; 234 internal delegate *unmanaged [Stdcall]<IEnumVARIANT*,winmdroot.System.Ole.IEnumVARIANT** ,winmdroot.Foundation.HRESULT> Clone_7; 263 unsafe winmdroot.Foundation.HRESULT Next(uint celt, winmdroot.System.Variant.VARIANT* rgVar, uint* pCeltFetched); 266winmdroot.Foundation.HRESULT Skip(uint celt); 269winmdroot.Foundation.HRESULT Reset(); 272 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IEnumVARIANT** ppEnum);
Windows.Win32.IErrorInfo.g.cs (38)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IErrorInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IErrorInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 private static winmdroot.Foundation.HRESULT GetGUID(IErrorInfo* pThis, global::System.Guid* pGUID) 70 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 79 return (winmdroot.Foundation.HRESULT)ex.HResult; 93 ((delegate *unmanaged [Stdcall]<IErrorInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IErrorInfo*)Unsafe.AsPointer(ref this), pGUID).ThrowOnFailure(); 99 private static winmdroot.Foundation.HRESULT GetSource(IErrorInfo* pThis, winmdroot.Foundation.BSTR* pBstrSource) 103 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 112 return (winmdroot.Foundation.HRESULT)ex.HResult; 122 ((delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IErrorInfo*)Unsafe.AsPointer(ref this), pBstrSource).ThrowOnFailure(); 128 private static winmdroot.Foundation.HRESULT GetDescription(IErrorInfo* pThis, winmdroot.Foundation.BSTR* pBstrDescription) 132 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 141 return (winmdroot.Foundation.HRESULT)ex.HResult; 149 public unsafe winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstrDescription) 151 return ((delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IErrorInfo*)Unsafe.AsPointer(ref this), pBstrDescription); 157 private static winmdroot.Foundation.HRESULT GetHelpFile(IErrorInfo* pThis, winmdroot.Foundation.BSTR* pBstrHelpFile) 161 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 170 return (winmdroot.Foundation.HRESULT)ex.HResult; 180 ((delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IErrorInfo*)Unsafe.AsPointer(ref this), pBstrHelpFile).ThrowOnFailure(); 195 private static winmdroot.Foundation.HRESULT GetHelpContext(IErrorInfo* pThis, uint* pdwHelpContext) 199 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 208 return (winmdroot.Foundation.HRESULT)ex.HResult; 218 ((delegate *unmanaged [Stdcall]<IErrorInfo*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IErrorInfo*)Unsafe.AsPointer(ref this), pdwHelpContext).ThrowOnFailure(); 221 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 225 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 242 internal delegate *unmanaged [Stdcall]<IErrorInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 248 internal delegate *unmanaged [Stdcall]<IErrorInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetGUID_4; 250 internal delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetSource_5; 252 internal delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDescription_6; 254 internal delegate *unmanaged [Stdcall]<IErrorInfo*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetHelpFile_7; 256 internal delegate *unmanaged [Stdcall]<IErrorInfo*,uint* ,winmdroot.Foundation.HRESULT> GetHelpContext_8; 286 unsafe winmdroot.Foundation.HRESULT GetGUID(global::System.Guid* pGUID); 289 unsafe winmdroot.Foundation.HRESULT GetSource(winmdroot.Foundation.BSTR* pBstrSource); 292 unsafe winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstrDescription); 295 unsafe winmdroot.Foundation.HRESULT GetHelpFile(winmdroot.Foundation.BSTR* pBstrHelpFile); 298 unsafe winmdroot.Foundation.HRESULT GetHelpContext(uint* pdwHelpContext);
Windows.Win32.IErrorLog.g.cs (13)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IErrorLog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IErrorLog*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 private static winmdroot.Foundation.HRESULT AddError(IErrorLog* pThis, winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Com.EXCEPINFO* pExcepInfo) 73 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 82 return (winmdroot.Foundation.HRESULT)ex.HResult; 93 ((delegate *unmanaged [Stdcall]<IErrorLog*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.EXCEPINFO* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IErrorLog*)Unsafe.AsPointer(ref this), pszPropName, pExcepInfo).ThrowOnFailure(); 96 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 100 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 117 internal delegate *unmanaged [Stdcall]<IErrorLog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 123 internal delegate *unmanaged [Stdcall]<IErrorLog*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Com.EXCEPINFO* ,winmdroot.Foundation.HRESULT> AddError_4; 149 unsafe winmdroot.Foundation.HRESULT AddError(winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Com.EXCEPINFO* pExcepInfo);
Windows.Win32.IExpandCollapseProvider.g.cs (28)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IExpandCollapseProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Expand(IExpandCollapseProvider* pThis) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 82 ((delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IExpandCollapseProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 88 private static winmdroot.Foundation.HRESULT Collapse(IExpandCollapseProvider* pThis) 92 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 101 return (winmdroot.Foundation.HRESULT)ex.HResult; 112 ((delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IExpandCollapseProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 116 internal unsafe winmdroot.Foundation.HRESULT get_ExpandCollapseState(out winmdroot.UI.Accessibility.ExpandCollapseState pRetVal) 120 winmdroot.Foundation.HRESULT __result = this.get_ExpandCollapseState(pRetValLocal); 128 private static winmdroot.Foundation.HRESULT get_ExpandCollapseState(IExpandCollapseProvider* pThis, winmdroot.UI.Accessibility.ExpandCollapseState* pRetVal) 132 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 141 return (winmdroot.Foundation.HRESULT)ex.HResult; 149 public unsafe winmdroot.Foundation.HRESULT get_ExpandCollapseState(winmdroot.UI.Accessibility.ExpandCollapseState* pRetVal) 151 return ((delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.UI.Accessibility.ExpandCollapseState* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IExpandCollapseProvider*)Unsafe.AsPointer(ref this), pRetVal); 154 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 158 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 175 internal delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 181 internal delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.Foundation.HRESULT> Expand_4; 183 internal delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.Foundation.HRESULT> Collapse_5; 185 internal delegate *unmanaged [Stdcall]<IExpandCollapseProvider*,winmdroot.UI.Accessibility.ExpandCollapseState* ,winmdroot.Foundation.HRESULT> get_ExpandCollapseState_6; 214winmdroot.Foundation.HRESULT Expand(); 217winmdroot.Foundation.HRESULT Collapse(); 220 unsafe winmdroot.Foundation.HRESULT get_ExpandCollapseState(winmdroot.UI.Accessibility.ExpandCollapseState* pRetVal);
Windows.Win32.IFileDialog.g.cs (158)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IFileDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileDialog*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Show(IFileDialog* pThis, winmdroot.Foundation.HWND hwndOwner) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 75 public winmdroot.Foundation.HRESULT Show(winmdroot.Foundation.HWND hwndOwner) 77 return ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileDialog*)Unsafe.AsPointer(ref this), hwndOwner); 92 private static winmdroot.Foundation.HRESULT SetFileTypes(IFileDialog* pThis, uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 128 ((delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFileDialog*)Unsafe.AsPointer(ref this), cFileTypes, rgFilterSpec).ThrowOnFailure(); 134 private static winmdroot.Foundation.HRESULT SetFileTypeIndex(IFileDialog* pThis, uint iFileType) 138 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 147 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 ((delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFileDialog*)Unsafe.AsPointer(ref this), iFileType).ThrowOnFailure(); 177 private static winmdroot.Foundation.HRESULT GetFileTypeIndex(IFileDialog* pThis, uint* piFileType) 181 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 205 ((delegate *unmanaged [Stdcall]<IFileDialog*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFileDialog*)Unsafe.AsPointer(ref this), piFileType).ThrowOnFailure(); 220 private static winmdroot.Foundation.HRESULT Advise(IFileDialog* pThis, winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie) 224 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 233 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFileDialog*)Unsafe.AsPointer(ref this), pfde, pdwCookie).ThrowOnFailure(); 260 private static winmdroot.Foundation.HRESULT Unadvise(IFileDialog* pThis, uint dwCookie) 264 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 273 return (winmdroot.Foundation.HRESULT)ex.HResult; 290 ((delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFileDialog*)Unsafe.AsPointer(ref this), dwCookie).ThrowOnFailure(); 296 private static winmdroot.Foundation.HRESULT SetOptions(IFileDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos) 300 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 309 return (winmdroot.Foundation.HRESULT)ex.HResult; 324 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFileDialog*)Unsafe.AsPointer(ref this), fos).ThrowOnFailure(); 339 private static winmdroot.Foundation.HRESULT GetOptions(IFileDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos) 343 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 352 return (winmdroot.Foundation.HRESULT)ex.HResult; 369 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IFileDialog*)Unsafe.AsPointer(ref this), pfos).ThrowOnFailure(); 375 private static winmdroot.Foundation.HRESULT SetDefaultFolder(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 379 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 388 return (winmdroot.Foundation.HRESULT)ex.HResult; 405 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFileDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 411 private static winmdroot.Foundation.HRESULT SetFolder(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 415 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 424 return (winmdroot.Foundation.HRESULT)ex.HResult; 442 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IFileDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 448 private static winmdroot.Foundation.HRESULT GetFolder(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 452 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 461 return (winmdroot.Foundation.HRESULT)ex.HResult; 476 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IFileDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 482 private static winmdroot.Foundation.HRESULT GetCurrentSelection(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 486 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 495 return (winmdroot.Foundation.HRESULT)ex.HResult; 510 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IFileDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 525 private static winmdroot.Foundation.HRESULT SetFileName(IFileDialog* pThis, winmdroot.Foundation.PCWSTR pszName) 529 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 538 return (winmdroot.Foundation.HRESULT)ex.HResult; 555 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFileDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 570 private static winmdroot.Foundation.HRESULT GetFileName(IFileDialog* pThis, winmdroot.Foundation.PWSTR* pszName) 574 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 583 return (winmdroot.Foundation.HRESULT)ex.HResult; 601 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFileDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 616 private static winmdroot.Foundation.HRESULT SetTitle(IFileDialog* pThis, winmdroot.Foundation.PCWSTR pszTitle) 620 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 629 return (winmdroot.Foundation.HRESULT)ex.HResult; 646 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFileDialog*)Unsafe.AsPointer(ref this), pszTitle).ThrowOnFailure(); 661 private static winmdroot.Foundation.HRESULT SetOkButtonLabel(IFileDialog* pThis, winmdroot.Foundation.PCWSTR pszText) 665 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 674 return (winmdroot.Foundation.HRESULT)ex.HResult; 691 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFileDialog*)Unsafe.AsPointer(ref this), pszText).ThrowOnFailure(); 706 private static winmdroot.Foundation.HRESULT SetFileNameLabel(IFileDialog* pThis, winmdroot.Foundation.PCWSTR pszLabel) 710 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 719 return (winmdroot.Foundation.HRESULT)ex.HResult; 736 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IFileDialog*)Unsafe.AsPointer(ref this), pszLabel).ThrowOnFailure(); 742 private static winmdroot.Foundation.HRESULT GetResult(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 746 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 755 return (winmdroot.Foundation.HRESULT)ex.HResult; 772 public unsafe winmdroot.Foundation.HRESULT GetResult(winmdroot.UI.Shell.IShellItem** ppsi) 774 return ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IFileDialog*)Unsafe.AsPointer(ref this), ppsi); 780 private static winmdroot.Foundation.HRESULT AddPlace(IFileDialog* pThis, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap) 784 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 793 return (winmdroot.Foundation.HRESULT)ex.HResult; 812 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDAP ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IFileDialog*)Unsafe.AsPointer(ref this), psi, fdap).ThrowOnFailure(); 827 private static winmdroot.Foundation.HRESULT SetDefaultExtension(IFileDialog* pThis, winmdroot.Foundation.PCWSTR pszDefaultExtension) 831 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 840 return (winmdroot.Foundation.HRESULT)ex.HResult; 855 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IFileDialog*)Unsafe.AsPointer(ref this), pszDefaultExtension).ThrowOnFailure(); 861 private static winmdroot.Foundation.HRESULT Close(IFileDialog* pThis, winmdroot.Foundation.HRESULT hr) 865 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 874 return (winmdroot.Foundation.HRESULT)ex.HResult; 890 public void Close(winmdroot.Foundation.HRESULT hr) 892 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IFileDialog*)Unsafe.AsPointer(ref this), hr).ThrowOnFailure(); 907 private static winmdroot.Foundation.HRESULT SetClientGuid(IFileDialog* pThis, global::System.Guid* guid) 911 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 920 return (winmdroot.Foundation.HRESULT)ex.HResult; 939 ((delegate *unmanaged [Stdcall]<IFileDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IFileDialog*)Unsafe.AsPointer(ref this), guid).ThrowOnFailure(); 945 private static winmdroot.Foundation.HRESULT ClearClientData(IFileDialog* pThis) 949 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 958 return (winmdroot.Foundation.HRESULT)ex.HResult; 969 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IFileDialog*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 975 private static winmdroot.Foundation.HRESULT SetFilter(IFileDialog* pThis, winmdroot.UI.Shell.IShellItemFilter* pFilter) 979 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 988 return (winmdroot.Foundation.HRESULT)ex.HResult; 1006 ((delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IFileDialog*)Unsafe.AsPointer(ref this), pFilter).ThrowOnFailure(); 1009 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1013 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 1030 internal delegate *unmanaged [Stdcall]<IFileDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1036 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> Show_4; 1038 internal delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT> SetFileTypes_5; 1040 internal delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.Foundation.HRESULT> SetFileTypeIndex_6; 1042 internal delegate *unmanaged [Stdcall]<IFileDialog*,uint* ,winmdroot.Foundation.HRESULT> GetFileTypeIndex_7; 1044 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT> Advise_8; 1046 internal delegate *unmanaged [Stdcall]<IFileDialog*,uint ,winmdroot.Foundation.HRESULT> Unadvise_9; 1048 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT> SetOptions_10; 1050 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT> GetOptions_11; 1052 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetDefaultFolder_12; 1054 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetFolder_13; 1056 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetFolder_14; 1058 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetCurrentSelection_15; 1060 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileName_16; 1062 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetFileName_17; 1064 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetTitle_18; 1066 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetOkButtonLabel_19; 1068 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileNameLabel_20; 1070 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetResult_21; 1072 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDAP ,winmdroot.Foundation.HRESULT> AddPlace_22; 1074 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetDefaultExtension_23; 1076 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT> Close_24; 1078 internal delegate *unmanaged [Stdcall]<IFileDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT> SetClientGuid_25; 1080 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.Foundation.HRESULT> ClearClientData_26; 1082 internal delegate *unmanaged [Stdcall]<IFileDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT> SetFilter_27; 1132 new winmdroot.Foundation.HRESULT Show(winmdroot.Foundation.HWND hwndOwner); 1135 unsafe winmdroot.Foundation.HRESULT SetFileTypes(uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec); 1138winmdroot.Foundation.HRESULT SetFileTypeIndex(uint iFileType); 1141 unsafe winmdroot.Foundation.HRESULT GetFileTypeIndex(uint* piFileType); 1144 unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie); 1147winmdroot.Foundation.HRESULT Unadvise(uint dwCookie); 1150winmdroot.Foundation.HRESULT SetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos); 1153 unsafe winmdroot.Foundation.HRESULT GetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos); 1156 unsafe winmdroot.Foundation.HRESULT SetDefaultFolder(winmdroot.UI.Shell.IShellItem* psi); 1159 unsafe winmdroot.Foundation.HRESULT SetFolder(winmdroot.UI.Shell.IShellItem* psi); 1162 unsafe winmdroot.Foundation.HRESULT GetFolder(winmdroot.UI.Shell.IShellItem** ppsi); 1165 unsafe winmdroot.Foundation.HRESULT GetCurrentSelection(winmdroot.UI.Shell.IShellItem** ppsi); 1168winmdroot.Foundation.HRESULT SetFileName(winmdroot.Foundation.PCWSTR pszName); 1171 unsafe winmdroot.Foundation.HRESULT GetFileName(winmdroot.Foundation.PWSTR* pszName); 1174winmdroot.Foundation.HRESULT SetTitle(winmdroot.Foundation.PCWSTR pszTitle); 1177winmdroot.Foundation.HRESULT SetOkButtonLabel(winmdroot.Foundation.PCWSTR pszText); 1180winmdroot.Foundation.HRESULT SetFileNameLabel(winmdroot.Foundation.PCWSTR pszLabel); 1183 unsafe winmdroot.Foundation.HRESULT GetResult(winmdroot.UI.Shell.IShellItem** ppsi); 1186 unsafe winmdroot.Foundation.HRESULT AddPlace(winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap); 1189winmdroot.Foundation.HRESULT SetDefaultExtension(winmdroot.Foundation.PCWSTR pszDefaultExtension); 1192winmdroot.Foundation.HRESULT Close(winmdroot.Foundation.HRESULT hr); 1195 unsafe winmdroot.Foundation.HRESULT SetClientGuid(global::System.Guid* guid); 1198winmdroot.Foundation.HRESULT ClearClientData(); 1201 unsafe winmdroot.Foundation.HRESULT SetFilter(winmdroot.UI.Shell.IShellItemFilter* pFilter);
Windows.Win32.IFileDialogCustomize.g.cs (169)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT EnableOpenDropDown(IFileDialogCustomize* pThis, uint dwIDCtl) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 104 private static winmdroot.Foundation.HRESULT AddMenu(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel) 108 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 139 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszLabel).ThrowOnFailure(); 154 private static winmdroot.Foundation.HRESULT AddPushButton(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel) 158 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 167 return (winmdroot.Foundation.HRESULT)ex.HResult; 186 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszLabel).ThrowOnFailure(); 192 private static winmdroot.Foundation.HRESULT AddComboBox(IFileDialogCustomize* pThis, uint dwIDCtl) 196 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return (winmdroot.Foundation.HRESULT)ex.HResult; 220 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 226 private static winmdroot.Foundation.HRESULT AddRadioButtonList(IFileDialogCustomize* pThis, uint dwIDCtl) 230 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 239 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 269 private static winmdroot.Foundation.HRESULT AddCheckButton(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel, winmdroot.Foundation.BOOL bChecked) 273 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 282 return (winmdroot.Foundation.HRESULT)ex.HResult; 305 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszLabel, bChecked).ThrowOnFailure(); 320 private static winmdroot.Foundation.HRESULT AddEditBox(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText) 324 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 333 return (winmdroot.Foundation.HRESULT)ex.HResult; 355 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszText).ThrowOnFailure(); 361 private static winmdroot.Foundation.HRESULT AddSeparator(IFileDialogCustomize* pThis, uint dwIDCtl) 365 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 374 return (winmdroot.Foundation.HRESULT)ex.HResult; 389 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 404 private static winmdroot.Foundation.HRESULT AddText(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText) 408 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 417 return (winmdroot.Foundation.HRESULT)ex.HResult; 436 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszText).ThrowOnFailure(); 451 private static winmdroot.Foundation.HRESULT SetControlLabel(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel) 455 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 464 return (winmdroot.Foundation.HRESULT)ex.HResult; 483 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszLabel).ThrowOnFailure(); 498 private static winmdroot.Foundation.HRESULT GetControlState(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.UI.Shell.CDCONTROLSTATEF* pdwState) 502 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 511 return (winmdroot.Foundation.HRESULT)ex.HResult; 532 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pdwState).ThrowOnFailure(); 538 private static winmdroot.Foundation.HRESULT SetControlState(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.UI.Shell.CDCONTROLSTATEF dwState) 542 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 551 return (winmdroot.Foundation.HRESULT)ex.HResult; 570 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwState).ThrowOnFailure(); 585 private static winmdroot.Foundation.HRESULT GetEditBoxText(IFileDialogCustomize* pThis, uint dwIDCtl, ushort** ppszText) 589 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 598 return (winmdroot.Foundation.HRESULT)ex.HResult; 617 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,ushort** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, ppszText).ThrowOnFailure(); 632 private static winmdroot.Foundation.HRESULT SetEditBoxText(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText) 636 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 645 return (winmdroot.Foundation.HRESULT)ex.HResult; 666 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszText).ThrowOnFailure(); 681 private static winmdroot.Foundation.HRESULT GetCheckButtonState(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.BOOL* pbChecked) 685 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 694 return (winmdroot.Foundation.HRESULT)ex.HResult; 715 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pbChecked).ThrowOnFailure(); 721 private static winmdroot.Foundation.HRESULT SetCheckButtonState(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.BOOL bChecked) 725 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 734 return (winmdroot.Foundation.HRESULT)ex.HResult; 755 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, bChecked).ThrowOnFailure(); 770 private static winmdroot.Foundation.HRESULT AddControlItem(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem, winmdroot.Foundation.PCWSTR pszLabel) 774 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 783 return (winmdroot.Foundation.HRESULT)ex.HResult; 809 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem, pszLabel).ThrowOnFailure(); 815 private static winmdroot.Foundation.HRESULT RemoveControlItem(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem) 819 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 828 return (winmdroot.Foundation.HRESULT)ex.HResult; 847 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem).ThrowOnFailure(); 853 private static winmdroot.Foundation.HRESULT RemoveAllControlItems(IFileDialogCustomize* pThis, uint dwIDCtl) 857 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 866 return (winmdroot.Foundation.HRESULT)ex.HResult; 883 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 898 private static winmdroot.Foundation.HRESULT GetControlItemState(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem, winmdroot.UI.Shell.CDCONTROLSTATEF* pdwState) 902 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 911 return (winmdroot.Foundation.HRESULT)ex.HResult; 937 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem, pdwState).ThrowOnFailure(); 943 private static winmdroot.Foundation.HRESULT SetControlItemState(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem, winmdroot.UI.Shell.CDCONTROLSTATEF dwState) 947 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 956 return (winmdroot.Foundation.HRESULT)ex.HResult; 982 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem, dwState).ThrowOnFailure(); 997 private static winmdroot.Foundation.HRESULT GetSelectedControlItem(IFileDialogCustomize* pThis, uint dwIDCtl, uint* pdwIDItem) 1001 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1010 return (winmdroot.Foundation.HRESULT)ex.HResult; 1032 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pdwIDItem).ThrowOnFailure(); 1038 private static winmdroot.Foundation.HRESULT SetSelectedControlItem(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem) 1042 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1051 return (winmdroot.Foundation.HRESULT)ex.HResult; 1072 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem).ThrowOnFailure(); 1087 private static winmdroot.Foundation.HRESULT StartVisualGroup(IFileDialogCustomize* pThis, uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel) 1091 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1100 return (winmdroot.Foundation.HRESULT)ex.HResult; 1123 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, pszLabel).ThrowOnFailure(); 1129 private static winmdroot.Foundation.HRESULT EndVisualGroup(IFileDialogCustomize* pThis) 1133 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1142 return (winmdroot.Foundation.HRESULT)ex.HResult; 1155 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IFileDialogCustomize*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1161 private static winmdroot.Foundation.HRESULT MakeProminent(IFileDialogCustomize* pThis, uint dwIDCtl) 1165 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1174 return (winmdroot.Foundation.HRESULT)ex.HResult; 1192 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl).ThrowOnFailure(); 1207 private static winmdroot.Foundation.HRESULT SetControlItemText(IFileDialogCustomize* pThis, uint dwIDCtl, uint dwIDItem, winmdroot.Foundation.PCWSTR pszLabel) 1211 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1220 return (winmdroot.Foundation.HRESULT)ex.HResult; 1246 ((delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IFileDialogCustomize*)Unsafe.AsPointer(ref this), dwIDCtl, dwIDItem, pszLabel).ThrowOnFailure(); 1249 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1253 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 1270 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1276 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> EnableOpenDropDown_4; 1278 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> AddMenu_5; 1280 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> AddPushButton_6; 1282 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> AddComboBox_7; 1284 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> AddRadioButtonList_8; 1286 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> AddCheckButton_9; 1288 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> AddEditBox_10; 1290 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> AddSeparator_11; 1292 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> AddText_12; 1294 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetControlLabel_13; 1296 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF* ,winmdroot.Foundation.HRESULT> GetControlState_14; 1298 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF ,winmdroot.Foundation.HRESULT> SetControlState_15; 1300 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,ushort** ,winmdroot.Foundation.HRESULT> GetEditBoxText_16; 1302 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetEditBoxText_17; 1304 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> GetCheckButtonState_18; 1306 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> SetCheckButtonState_19; 1308 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> AddControlItem_20; 1310 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.HRESULT> RemoveControlItem_21; 1312 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> RemoveAllControlItems_22; 1314 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF* ,winmdroot.Foundation.HRESULT> GetControlItemState_23; 1316 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.UI.Shell.CDCONTROLSTATEF ,winmdroot.Foundation.HRESULT> SetControlItemState_24; 1318 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint* ,winmdroot.Foundation.HRESULT> GetSelectedControlItem_25; 1320 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.HRESULT> SetSelectedControlItem_26; 1322 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> StartVisualGroup_27; 1324 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,winmdroot.Foundation.HRESULT> EndVisualGroup_28; 1326 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,winmdroot.Foundation.HRESULT> MakeProminent_29; 1328 internal delegate *unmanaged [Stdcall]<IFileDialogCustomize*,uint ,uint ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetControlItemText_30; 1381winmdroot.Foundation.HRESULT EnableOpenDropDown(uint dwIDCtl); 1384winmdroot.Foundation.HRESULT AddMenu(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel); 1387winmdroot.Foundation.HRESULT AddPushButton(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel); 1390winmdroot.Foundation.HRESULT AddComboBox(uint dwIDCtl); 1393winmdroot.Foundation.HRESULT AddRadioButtonList(uint dwIDCtl); 1396winmdroot.Foundation.HRESULT AddCheckButton(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel, winmdroot.Foundation.BOOL bChecked); 1399winmdroot.Foundation.HRESULT AddEditBox(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText); 1402winmdroot.Foundation.HRESULT AddSeparator(uint dwIDCtl); 1405winmdroot.Foundation.HRESULT AddText(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText); 1408winmdroot.Foundation.HRESULT SetControlLabel(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel); 1411 unsafe winmdroot.Foundation.HRESULT GetControlState(uint dwIDCtl, winmdroot.UI.Shell.CDCONTROLSTATEF* pdwState); 1414winmdroot.Foundation.HRESULT SetControlState(uint dwIDCtl, winmdroot.UI.Shell.CDCONTROLSTATEF dwState); 1417 unsafe winmdroot.Foundation.HRESULT GetEditBoxText(uint dwIDCtl, ushort** ppszText); 1420winmdroot.Foundation.HRESULT SetEditBoxText(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszText); 1423 unsafe winmdroot.Foundation.HRESULT GetCheckButtonState(uint dwIDCtl, winmdroot.Foundation.BOOL* pbChecked); 1426winmdroot.Foundation.HRESULT SetCheckButtonState(uint dwIDCtl, winmdroot.Foundation.BOOL bChecked); 1429winmdroot.Foundation.HRESULT AddControlItem(uint dwIDCtl, uint dwIDItem, winmdroot.Foundation.PCWSTR pszLabel); 1432winmdroot.Foundation.HRESULT RemoveControlItem(uint dwIDCtl, uint dwIDItem); 1435winmdroot.Foundation.HRESULT RemoveAllControlItems(uint dwIDCtl); 1438 unsafe winmdroot.Foundation.HRESULT GetControlItemState(uint dwIDCtl, uint dwIDItem, winmdroot.UI.Shell.CDCONTROLSTATEF* pdwState); 1441winmdroot.Foundation.HRESULT SetControlItemState(uint dwIDCtl, uint dwIDItem, winmdroot.UI.Shell.CDCONTROLSTATEF dwState); 1444 unsafe winmdroot.Foundation.HRESULT GetSelectedControlItem(uint dwIDCtl, uint* pdwIDItem); 1447winmdroot.Foundation.HRESULT SetSelectedControlItem(uint dwIDCtl, uint dwIDItem); 1450winmdroot.Foundation.HRESULT StartVisualGroup(uint dwIDCtl, winmdroot.Foundation.PCWSTR pszLabel); 1453winmdroot.Foundation.HRESULT EndVisualGroup(); 1456winmdroot.Foundation.HRESULT MakeProminent(uint dwIDCtl); 1459winmdroot.Foundation.HRESULT SetControlItemText(uint dwIDCtl, uint dwIDItem, winmdroot.Foundation.PCWSTR pszLabel);
Windows.Win32.IFileDialogEvents.g.cs (49)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileDialogEvents*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT OnFileOk(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileDialogEvents*)Unsafe.AsPointer(ref this), pfd).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT OnFolderChanging(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psiFolder) 99 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 130 ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFileDialogEvents*)Unsafe.AsPointer(ref this), pfd, psiFolder).ThrowOnFailure(); 136 private static winmdroot.Foundation.HRESULT OnFolderChange(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd) 140 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return (winmdroot.Foundation.HRESULT)ex.HResult; 164 ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFileDialogEvents*)Unsafe.AsPointer(ref this), pfd).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT OnSelectionChange(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 183 return (winmdroot.Foundation.HRESULT)ex.HResult; 200 ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFileDialogEvents*)Unsafe.AsPointer(ref this), pfd).ThrowOnFailure(); 215 private static winmdroot.Foundation.HRESULT OnShareViolation(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDE_SHAREVIOLATION_RESPONSE* pResponse) 219 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 228 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDE_SHAREVIOLATION_RESPONSE* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFileDialogEvents*)Unsafe.AsPointer(ref this), pfd, psi, pResponse).ThrowOnFailure(); 260 private static winmdroot.Foundation.HRESULT OnTypeChange(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd) 264 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 273 return (winmdroot.Foundation.HRESULT)ex.HResult; 288 ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFileDialogEvents*)Unsafe.AsPointer(ref this), pfd).ThrowOnFailure(); 303 private static winmdroot.Foundation.HRESULT OnOverwrite(IFileDialogEvents* pThis, winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDE_OVERWRITE_RESPONSE* pResponse) 307 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 316 return (winmdroot.Foundation.HRESULT)ex.HResult; 339 ((delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDE_OVERWRITE_RESPONSE* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFileDialogEvents*)Unsafe.AsPointer(ref this), pfd, psi, pResponse).ThrowOnFailure(); 342 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 346 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 363 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 369 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT> OnFileOk_4; 371 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> OnFolderChanging_5; 373 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT> OnFolderChange_6; 375 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT> OnSelectionChange_7; 377 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDE_SHAREVIOLATION_RESPONSE* ,winmdroot.Foundation.HRESULT> OnShareViolation_8; 379 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.Foundation.HRESULT> OnTypeChange_9; 381 internal delegate *unmanaged [Stdcall]<IFileDialogEvents*,winmdroot.UI.Shell.IFileDialog* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDE_OVERWRITE_RESPONSE* ,winmdroot.Foundation.HRESULT> OnOverwrite_10; 414 unsafe winmdroot.Foundation.HRESULT OnFileOk(winmdroot.UI.Shell.IFileDialog* pfd); 417 unsafe winmdroot.Foundation.HRESULT OnFolderChanging(winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psiFolder); 420 unsafe winmdroot.Foundation.HRESULT OnFolderChange(winmdroot.UI.Shell.IFileDialog* pfd); 423 unsafe winmdroot.Foundation.HRESULT OnSelectionChange(winmdroot.UI.Shell.IFileDialog* pfd); 426 unsafe winmdroot.Foundation.HRESULT OnShareViolation(winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDE_SHAREVIOLATION_RESPONSE* pResponse); 429 unsafe winmdroot.Foundation.HRESULT OnTypeChange(winmdroot.UI.Shell.IFileDialog* pfd); 432 unsafe winmdroot.Foundation.HRESULT OnOverwrite(winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDE_OVERWRITE_RESPONSE* pResponse);
Windows.Win32.IFileOpenDialog.g.cs (170)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileOpenDialog*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Show(IFileOpenDialog* pThis, winmdroot.Foundation.HWND hwndOwner) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 75 public winmdroot.Foundation.HRESULT Show(winmdroot.Foundation.HWND hwndOwner) 77 return ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileOpenDialog*)Unsafe.AsPointer(ref this), hwndOwner); 92 private static winmdroot.Foundation.HRESULT SetFileTypes(IFileOpenDialog* pThis, uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFileOpenDialog*)Unsafe.AsPointer(ref this), cFileTypes, rgFilterSpec).ThrowOnFailure(); 117 private static winmdroot.Foundation.HRESULT SetFileTypeIndex(IFileOpenDialog* pThis, uint iFileType) 121 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 130 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFileOpenDialog*)Unsafe.AsPointer(ref this), iFileType).ThrowOnFailure(); 151 private static winmdroot.Foundation.HRESULT GetFileTypeIndex(IFileOpenDialog* pThis, uint* piFileType) 155 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 164 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFileOpenDialog*)Unsafe.AsPointer(ref this), piFileType).ThrowOnFailure(); 185 private static winmdroot.Foundation.HRESULT Advise(IFileOpenDialog* pThis, winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie) 189 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 198 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pfde, pdwCookie).ThrowOnFailure(); 210 private static winmdroot.Foundation.HRESULT Unadvise(IFileOpenDialog* pThis, uint dwCookie) 214 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 223 return (winmdroot.Foundation.HRESULT)ex.HResult; 229 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFileOpenDialog*)Unsafe.AsPointer(ref this), dwCookie).ThrowOnFailure(); 235 private static winmdroot.Foundation.HRESULT SetOptions(IFileOpenDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos) 239 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 248 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFileOpenDialog*)Unsafe.AsPointer(ref this), fos).ThrowOnFailure(); 269 private static winmdroot.Foundation.HRESULT GetOptions(IFileOpenDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos) 273 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 282 return (winmdroot.Foundation.HRESULT)ex.HResult; 288 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pfos).ThrowOnFailure(); 294 private static winmdroot.Foundation.HRESULT SetDefaultFolder(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 298 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 307 return (winmdroot.Foundation.HRESULT)ex.HResult; 313 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFileOpenDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 319 private static winmdroot.Foundation.HRESULT SetFolder(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 323 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 332 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IFileOpenDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 344 private static winmdroot.Foundation.HRESULT GetFolder(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 348 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 357 return (winmdroot.Foundation.HRESULT)ex.HResult; 363 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IFileOpenDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 369 private static winmdroot.Foundation.HRESULT GetCurrentSelection(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 373 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 382 return (winmdroot.Foundation.HRESULT)ex.HResult; 388 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IFileOpenDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 403 private static winmdroot.Foundation.HRESULT SetFileName(IFileOpenDialog* pThis, winmdroot.Foundation.PCWSTR pszName) 407 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 416 return (winmdroot.Foundation.HRESULT)ex.HResult; 422 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 437 private static winmdroot.Foundation.HRESULT GetFileName(IFileOpenDialog* pThis, winmdroot.Foundation.PWSTR* pszName) 441 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 450 return (winmdroot.Foundation.HRESULT)ex.HResult; 456 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 471 private static winmdroot.Foundation.HRESULT SetTitle(IFileOpenDialog* pThis, winmdroot.Foundation.PCWSTR pszTitle) 475 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 484 return (winmdroot.Foundation.HRESULT)ex.HResult; 490 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszTitle).ThrowOnFailure(); 505 private static winmdroot.Foundation.HRESULT SetOkButtonLabel(IFileOpenDialog* pThis, winmdroot.Foundation.PCWSTR pszText) 509 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 518 return (winmdroot.Foundation.HRESULT)ex.HResult; 524 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszText).ThrowOnFailure(); 539 private static winmdroot.Foundation.HRESULT SetFileNameLabel(IFileOpenDialog* pThis, winmdroot.Foundation.PCWSTR pszLabel) 543 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 552 return (winmdroot.Foundation.HRESULT)ex.HResult; 558 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszLabel).ThrowOnFailure(); 564 private static winmdroot.Foundation.HRESULT GetResult(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 568 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 577 return (winmdroot.Foundation.HRESULT)ex.HResult; 583 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IFileOpenDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 589 private static winmdroot.Foundation.HRESULT AddPlace(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap) 593 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 602 return (winmdroot.Foundation.HRESULT)ex.HResult; 608 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDAP ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IFileOpenDialog*)Unsafe.AsPointer(ref this), psi, fdap).ThrowOnFailure(); 623 private static winmdroot.Foundation.HRESULT SetDefaultExtension(IFileOpenDialog* pThis, winmdroot.Foundation.PCWSTR pszDefaultExtension) 627 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 636 return (winmdroot.Foundation.HRESULT)ex.HResult; 642 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pszDefaultExtension).ThrowOnFailure(); 648 private static winmdroot.Foundation.HRESULT Close(IFileOpenDialog* pThis, winmdroot.Foundation.HRESULT hr) 652 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 661 return (winmdroot.Foundation.HRESULT)ex.HResult; 665 public void Close(winmdroot.Foundation.HRESULT hr) 667 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IFileOpenDialog*)Unsafe.AsPointer(ref this), hr).ThrowOnFailure(); 682 private static winmdroot.Foundation.HRESULT SetClientGuid(IFileOpenDialog* pThis, global::System.Guid* guid) 686 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 695 return (winmdroot.Foundation.HRESULT)ex.HResult; 701 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IFileOpenDialog*)Unsafe.AsPointer(ref this), guid).ThrowOnFailure(); 707 private static winmdroot.Foundation.HRESULT ClearClientData(IFileOpenDialog* pThis) 711 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 720 return (winmdroot.Foundation.HRESULT)ex.HResult; 726 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IFileOpenDialog*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 732 private static winmdroot.Foundation.HRESULT SetFilter(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItemFilter* pFilter) 736 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 745 return (winmdroot.Foundation.HRESULT)ex.HResult; 751 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IFileOpenDialog*)Unsafe.AsPointer(ref this), pFilter).ThrowOnFailure(); 757 private static winmdroot.Foundation.HRESULT GetResults(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItemArray** ppenum) 761 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 770 return (winmdroot.Foundation.HRESULT)ex.HResult; 787 public unsafe winmdroot.Foundation.HRESULT GetResults(winmdroot.UI.Shell.IShellItemArray** ppenum) 789 return ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IFileOpenDialog*)Unsafe.AsPointer(ref this), ppenum); 795 private static winmdroot.Foundation.HRESULT GetSelectedItems(IFileOpenDialog* pThis, winmdroot.UI.Shell.IShellItemArray** ppsai) 799 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 808 return (winmdroot.Foundation.HRESULT)ex.HResult; 823 ((delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IFileOpenDialog*)Unsafe.AsPointer(ref this), ppsai).ThrowOnFailure(); 826 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 830 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 847 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 853 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> Show_4; 855 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT> SetFileTypes_5; 857 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.Foundation.HRESULT> SetFileTypeIndex_6; 859 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint* ,winmdroot.Foundation.HRESULT> GetFileTypeIndex_7; 861 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT> Advise_8; 863 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,uint ,winmdroot.Foundation.HRESULT> Unadvise_9; 865 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT> SetOptions_10; 867 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT> GetOptions_11; 869 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetDefaultFolder_12; 871 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetFolder_13; 873 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetFolder_14; 875 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetCurrentSelection_15; 877 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileName_16; 879 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetFileName_17; 881 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetTitle_18; 883 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetOkButtonLabel_19; 885 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileNameLabel_20; 887 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetResult_21; 889 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDAP ,winmdroot.Foundation.HRESULT> AddPlace_22; 891 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetDefaultExtension_23; 893 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT> Close_24; 895 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT> SetClientGuid_25; 897 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.Foundation.HRESULT> ClearClientData_26; 899 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT> SetFilter_27; 901 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemArray** ,winmdroot.Foundation.HRESULT> GetResults_28; 903 internal delegate *unmanaged [Stdcall]<IFileOpenDialog*,winmdroot.UI.Shell.IShellItemArray** ,winmdroot.Foundation.HRESULT> GetSelectedItems_29; 955 new winmdroot.Foundation.HRESULT Show(winmdroot.Foundation.HWND hwndOwner); 958 unsafe new winmdroot.Foundation.HRESULT SetFileTypes(uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec); 961 new winmdroot.Foundation.HRESULT SetFileTypeIndex(uint iFileType); 964 unsafe new winmdroot.Foundation.HRESULT GetFileTypeIndex(uint* piFileType); 967 unsafe new winmdroot.Foundation.HRESULT Advise(winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie); 970 new winmdroot.Foundation.HRESULT Unadvise(uint dwCookie); 973 new winmdroot.Foundation.HRESULT SetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos); 976 unsafe new winmdroot.Foundation.HRESULT GetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos); 979 unsafe new winmdroot.Foundation.HRESULT SetDefaultFolder(winmdroot.UI.Shell.IShellItem* psi); 982 unsafe new winmdroot.Foundation.HRESULT SetFolder(winmdroot.UI.Shell.IShellItem* psi); 985 unsafe new winmdroot.Foundation.HRESULT GetFolder(winmdroot.UI.Shell.IShellItem** ppsi); 988 unsafe new winmdroot.Foundation.HRESULT GetCurrentSelection(winmdroot.UI.Shell.IShellItem** ppsi); 991 new winmdroot.Foundation.HRESULT SetFileName(winmdroot.Foundation.PCWSTR pszName); 994 unsafe new winmdroot.Foundation.HRESULT GetFileName(winmdroot.Foundation.PWSTR* pszName); 997 new winmdroot.Foundation.HRESULT SetTitle(winmdroot.Foundation.PCWSTR pszTitle); 1000 new winmdroot.Foundation.HRESULT SetOkButtonLabel(winmdroot.Foundation.PCWSTR pszText); 1003 new winmdroot.Foundation.HRESULT SetFileNameLabel(winmdroot.Foundation.PCWSTR pszLabel); 1006 unsafe new winmdroot.Foundation.HRESULT GetResult(winmdroot.UI.Shell.IShellItem** ppsi); 1009 unsafe new winmdroot.Foundation.HRESULT AddPlace(winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap); 1012 new winmdroot.Foundation.HRESULT SetDefaultExtension(winmdroot.Foundation.PCWSTR pszDefaultExtension); 1015 new winmdroot.Foundation.HRESULT Close(winmdroot.Foundation.HRESULT hr); 1018 unsafe new winmdroot.Foundation.HRESULT SetClientGuid(global::System.Guid* guid); 1021 new winmdroot.Foundation.HRESULT ClearClientData(); 1024 unsafe new winmdroot.Foundation.HRESULT SetFilter(winmdroot.UI.Shell.IShellItemFilter* pFilter); 1027 unsafe winmdroot.Foundation.HRESULT GetResults(winmdroot.UI.Shell.IShellItemArray** ppenum); 1030 unsafe winmdroot.Foundation.HRESULT GetSelectedItems(winmdroot.UI.Shell.IShellItemArray** ppsai);
Windows.Win32.IFileOperationProgressSink.g.cs (141)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT StartOperations(IFileOperationProgressSink* pThis) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 82 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 88 private static winmdroot.Foundation.HRESULT FinishOperations(IFileOperationProgressSink* pThis, winmdroot.Foundation.HRESULT hrResult) 92 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 101 return (winmdroot.Foundation.HRESULT)ex.HResult; 116 public void FinishOperations(winmdroot.Foundation.HRESULT hrResult) 118 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), hrResult).ThrowOnFailure(); 133 private static winmdroot.Foundation.HRESULT PreRenameItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.PCWSTR pszNewName) 137 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 146 return (winmdroot.Foundation.HRESULT)ex.HResult; 171 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), dwFlags, psiItem, pszNewName).ThrowOnFailure(); 174 /// <inheritdoc cref="PostRenameItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 175 internal unsafe void PostRenameItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, string pszNewName, winmdroot.Foundation.HRESULT hrRename, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 186 private static winmdroot.Foundation.HRESULT PostRenameItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.HRESULT hrRename, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 190 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 199 return (winmdroot.Foundation.HRESULT)ex.HResult; 230 public unsafe void PostRenameItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.HRESULT hrRename, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 232 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), dwFlags, psiItem, pszNewName, hrRename, psiNewlyCreated).ThrowOnFailure(); 247 private static winmdroot.Foundation.HRESULT PreMoveItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName) 251 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 260 return (winmdroot.Foundation.HRESULT)ex.HResult; 289 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), dwFlags, psiItem, psiDestinationFolder, pszNewName).ThrowOnFailure(); 292 /// <inheritdoc cref="PostMoveItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 293 internal unsafe void PostMoveItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, string pszNewName, winmdroot.Foundation.HRESULT hrMove, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 304 private static winmdroot.Foundation.HRESULT PostMoveItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.HRESULT hrMove, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 308 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return (winmdroot.Foundation.HRESULT)ex.HResult; 352 public unsafe void PostMoveItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.HRESULT hrMove, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 354 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), dwFlags, psiItem, psiDestinationFolder, pszNewName, hrMove, psiNewlyCreated).ThrowOnFailure(); 369 private static winmdroot.Foundation.HRESULT PreCopyItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName) 373 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 382 return (winmdroot.Foundation.HRESULT)ex.HResult; 411 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), dwFlags, psiItem, psiDestinationFolder, pszNewName).ThrowOnFailure(); 414 /// <inheritdoc cref="PostCopyItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 415 internal unsafe void PostCopyItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, string pszNewName, winmdroot.Foundation.HRESULT hrCopy, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 426 private static winmdroot.Foundation.HRESULT PostCopyItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.HRESULT hrCopy, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 430 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 439 return (winmdroot.Foundation.HRESULT)ex.HResult; 474 public unsafe void PostCopyItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.HRESULT hrCopy, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 476 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), dwFlags, psiItem, psiDestinationFolder, pszNewName, hrCopy, psiNewlyCreated).ThrowOnFailure(); 482 private static winmdroot.Foundation.HRESULT PreDeleteItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem) 486 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 495 return (winmdroot.Foundation.HRESULT)ex.HResult; 516 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), dwFlags, psiItem).ThrowOnFailure(); 522 private static winmdroot.Foundation.HRESULT PostDeleteItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.HRESULT hrDelete, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 526 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 535 return (winmdroot.Foundation.HRESULT)ex.HResult; 562 public unsafe void PostDeleteItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.HRESULT hrDelete, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 564 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), dwFlags, psiItem, hrDelete, psiNewlyCreated).ThrowOnFailure(); 579 private static winmdroot.Foundation.HRESULT PreNewItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName) 583 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 592 return (winmdroot.Foundation.HRESULT)ex.HResult; 617 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), dwFlags, psiDestinationFolder, pszNewName).ThrowOnFailure(); 620 /// <inheritdoc cref="PostNewItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.PCWSTR, uint, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 621 internal unsafe void PostNewItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, string pszNewName, string pszTemplateName, uint dwFileAttributes, winmdroot.Foundation.HRESULT hrNew, winmdroot.UI.Shell.IShellItem* psiNewItem) 635 private static winmdroot.Foundation.HRESULT PostNewItem(IFileOperationProgressSink* pThis, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.PCWSTR pszTemplateName, uint dwFileAttributes, winmdroot.Foundation.HRESULT hrNew, winmdroot.UI.Shell.IShellItem* psiNewItem) 639 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 648 return (winmdroot.Foundation.HRESULT)ex.HResult; 689 public unsafe void PostNewItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.PCWSTR pszTemplateName, uint dwFileAttributes, winmdroot.Foundation.HRESULT hrNew, winmdroot.UI.Shell.IShellItem* psiNewItem) 691 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,uint ,winmdroot.Foundation.HRESULT ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), dwFlags, psiDestinationFolder, pszNewName, pszTemplateName, dwFileAttributes, hrNew, psiNewItem).ThrowOnFailure(); 697 private static winmdroot.Foundation.HRESULT UpdateProgress(IFileOperationProgressSink* pThis, uint iWorkTotal, uint iWorkSoFar) 701 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 710 return (winmdroot.Foundation.HRESULT)ex.HResult; 729 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this), iWorkTotal, iWorkSoFar).ThrowOnFailure(); 735 private static winmdroot.Foundation.HRESULT ResetTimer(IFileOperationProgressSink* pThis) 739 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 748 return (winmdroot.Foundation.HRESULT)ex.HResult; 759 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 765 private static winmdroot.Foundation.HRESULT PauseTimer(IFileOperationProgressSink* pThis) 769 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 778 return (winmdroot.Foundation.HRESULT)ex.HResult; 789 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 795 private static winmdroot.Foundation.HRESULT ResumeTimer(IFileOperationProgressSink* pThis) 799 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 808 return (winmdroot.Foundation.HRESULT)ex.HResult; 819 ((delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFileOperationProgressSink*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 822 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 826 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 843 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 849 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT> StartOperations_4; 851 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT> FinishOperations_5; 853 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> PreRenameItem_6; 855 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> PostRenameItem_7; 857 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> PreMoveItem_8; 859 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> PostMoveItem_9; 861 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> PreCopyItem_10; 863 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> PostCopyItem_11; 865 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> PreDeleteItem_12; 867 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> PostDeleteItem_13; 869 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> PreNewItem_14; 871 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,uint ,winmdroot.Foundation.HRESULT ,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> PostNewItem_15; 873 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,uint ,uint ,winmdroot.Foundation.HRESULT> UpdateProgress_16; 875 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT> ResetTimer_17; 877 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT> PauseTimer_18; 879 internal delegate *unmanaged [Stdcall]<IFileOperationProgressSink*,winmdroot.Foundation.HRESULT> ResumeTimer_19; 921winmdroot.Foundation.HRESULT StartOperations(); 924winmdroot.Foundation.HRESULT FinishOperations(winmdroot.Foundation.HRESULT hrResult); 927 unsafe winmdroot.Foundation.HRESULT PreRenameItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.PCWSTR pszNewName); 930 unsafe winmdroot.Foundation.HRESULT PostRenameItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.HRESULT hrRename, winmdroot.UI.Shell.IShellItem* psiNewlyCreated); 933 unsafe winmdroot.Foundation.HRESULT PreMoveItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName); 936 unsafe winmdroot.Foundation.HRESULT PostMoveItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.HRESULT hrMove, winmdroot.UI.Shell.IShellItem* psiNewlyCreated); 939 unsafe winmdroot.Foundation.HRESULT PreCopyItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName); 942 unsafe winmdroot.Foundation.HRESULT PostCopyItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.HRESULT hrCopy, winmdroot.UI.Shell.IShellItem* psiNewlyCreated); 945 unsafe winmdroot.Foundation.HRESULT PreDeleteItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem); 948 unsafe winmdroot.Foundation.HRESULT PostDeleteItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.Foundation.HRESULT hrDelete, winmdroot.UI.Shell.IShellItem* psiNewlyCreated); 951 unsafe winmdroot.Foundation.HRESULT PreNewItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName); 954 unsafe winmdroot.Foundation.HRESULT PostNewItem(uint dwFlags, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, winmdroot.Foundation.PCWSTR pszNewName, winmdroot.Foundation.PCWSTR pszTemplateName, uint dwFileAttributes, winmdroot.Foundation.HRESULT hrNew, winmdroot.UI.Shell.IShellItem* psiNewItem); 957winmdroot.Foundation.HRESULT UpdateProgress(uint iWorkTotal, uint iWorkSoFar); 960winmdroot.Foundation.HRESULT ResetTimer(); 963winmdroot.Foundation.HRESULT PauseTimer(); 966winmdroot.Foundation.HRESULT ResumeTimer();
Windows.Win32.IFileSaveDialog.g.cs (186)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFileSaveDialog*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Show(IFileSaveDialog* pThis, winmdroot.Foundation.HWND hwndOwner) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 77 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFileSaveDialog*)Unsafe.AsPointer(ref this), hwndOwner).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT SetFileTypes(IFileSaveDialog* pThis, uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFileSaveDialog*)Unsafe.AsPointer(ref this), cFileTypes, rgFilterSpec).ThrowOnFailure(); 117 private static winmdroot.Foundation.HRESULT SetFileTypeIndex(IFileSaveDialog* pThis, uint iFileType) 121 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 130 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFileSaveDialog*)Unsafe.AsPointer(ref this), iFileType).ThrowOnFailure(); 151 private static winmdroot.Foundation.HRESULT GetFileTypeIndex(IFileSaveDialog* pThis, uint* piFileType) 155 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 164 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFileSaveDialog*)Unsafe.AsPointer(ref this), piFileType).ThrowOnFailure(); 185 private static winmdroot.Foundation.HRESULT Advise(IFileSaveDialog* pThis, winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie) 189 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 198 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pfde, pdwCookie).ThrowOnFailure(); 210 private static winmdroot.Foundation.HRESULT Unadvise(IFileSaveDialog* pThis, uint dwCookie) 214 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 223 return (winmdroot.Foundation.HRESULT)ex.HResult; 229 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFileSaveDialog*)Unsafe.AsPointer(ref this), dwCookie).ThrowOnFailure(); 235 private static winmdroot.Foundation.HRESULT SetOptions(IFileSaveDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos) 239 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 248 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFileSaveDialog*)Unsafe.AsPointer(ref this), fos).ThrowOnFailure(); 269 private static winmdroot.Foundation.HRESULT GetOptions(IFileSaveDialog* pThis, winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos) 273 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 282 return (winmdroot.Foundation.HRESULT)ex.HResult; 288 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pfos).ThrowOnFailure(); 294 private static winmdroot.Foundation.HRESULT SetDefaultFolder(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 298 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 307 return (winmdroot.Foundation.HRESULT)ex.HResult; 313 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFileSaveDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 319 private static winmdroot.Foundation.HRESULT SetFolder(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 323 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 332 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IFileSaveDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 344 private static winmdroot.Foundation.HRESULT GetFolder(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 348 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 357 return (winmdroot.Foundation.HRESULT)ex.HResult; 363 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IFileSaveDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 369 private static winmdroot.Foundation.HRESULT GetCurrentSelection(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 373 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 382 return (winmdroot.Foundation.HRESULT)ex.HResult; 388 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IFileSaveDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 403 private static winmdroot.Foundation.HRESULT SetFileName(IFileSaveDialog* pThis, winmdroot.Foundation.PCWSTR pszName) 407 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 416 return (winmdroot.Foundation.HRESULT)ex.HResult; 422 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 437 private static winmdroot.Foundation.HRESULT GetFileName(IFileSaveDialog* pThis, winmdroot.Foundation.PWSTR* pszName) 441 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 450 return (winmdroot.Foundation.HRESULT)ex.HResult; 456 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszName).ThrowOnFailure(); 471 private static winmdroot.Foundation.HRESULT SetTitle(IFileSaveDialog* pThis, winmdroot.Foundation.PCWSTR pszTitle) 475 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 484 return (winmdroot.Foundation.HRESULT)ex.HResult; 490 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszTitle).ThrowOnFailure(); 505 private static winmdroot.Foundation.HRESULT SetOkButtonLabel(IFileSaveDialog* pThis, winmdroot.Foundation.PCWSTR pszText) 509 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 518 return (winmdroot.Foundation.HRESULT)ex.HResult; 524 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszText).ThrowOnFailure(); 539 private static winmdroot.Foundation.HRESULT SetFileNameLabel(IFileSaveDialog* pThis, winmdroot.Foundation.PCWSTR pszLabel) 543 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 552 return (winmdroot.Foundation.HRESULT)ex.HResult; 558 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszLabel).ThrowOnFailure(); 564 private static winmdroot.Foundation.HRESULT GetResult(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 568 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 577 return (winmdroot.Foundation.HRESULT)ex.HResult; 583 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IFileSaveDialog*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 589 private static winmdroot.Foundation.HRESULT AddPlace(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap) 593 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 602 return (winmdroot.Foundation.HRESULT)ex.HResult; 608 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDAP ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IFileSaveDialog*)Unsafe.AsPointer(ref this), psi, fdap).ThrowOnFailure(); 623 private static winmdroot.Foundation.HRESULT SetDefaultExtension(IFileSaveDialog* pThis, winmdroot.Foundation.PCWSTR pszDefaultExtension) 627 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 636 return (winmdroot.Foundation.HRESULT)ex.HResult; 642 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pszDefaultExtension).ThrowOnFailure(); 648 private static winmdroot.Foundation.HRESULT Close(IFileSaveDialog* pThis, winmdroot.Foundation.HRESULT hr) 652 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 661 return (winmdroot.Foundation.HRESULT)ex.HResult; 665 public void Close(winmdroot.Foundation.HRESULT hr) 667 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IFileSaveDialog*)Unsafe.AsPointer(ref this), hr).ThrowOnFailure(); 682 private static winmdroot.Foundation.HRESULT SetClientGuid(IFileSaveDialog* pThis, global::System.Guid* guid) 686 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 695 return (winmdroot.Foundation.HRESULT)ex.HResult; 701 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IFileSaveDialog*)Unsafe.AsPointer(ref this), guid).ThrowOnFailure(); 707 private static winmdroot.Foundation.HRESULT ClearClientData(IFileSaveDialog* pThis) 711 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 720 return (winmdroot.Foundation.HRESULT)ex.HResult; 726 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IFileSaveDialog*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 732 private static winmdroot.Foundation.HRESULT SetFilter(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItemFilter* pFilter) 736 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 745 return (winmdroot.Foundation.HRESULT)ex.HResult; 751 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pFilter).ThrowOnFailure(); 757 private static winmdroot.Foundation.HRESULT SetSaveAsItem(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem* psi) 761 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 770 return (winmdroot.Foundation.HRESULT)ex.HResult; 785 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IFileSaveDialog*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 791 private static winmdroot.Foundation.HRESULT SetProperties(IFileSaveDialog* pThis, winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* pStore) 795 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 804 return (winmdroot.Foundation.HRESULT)ex.HResult; 822 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pStore).ThrowOnFailure(); 828 private static winmdroot.Foundation.HRESULT SetCollectedProperties(IFileSaveDialog* pThis, winmdroot.UI.Shell.PropertiesSystem.IPropertyDescriptionList* pList, winmdroot.Foundation.BOOL fAppendDefault) 832 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 841 return (winmdroot.Foundation.HRESULT)ex.HResult; 863 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.PropertiesSystem.IPropertyDescriptionList* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IFileSaveDialog*)Unsafe.AsPointer(ref this), pList, fAppendDefault).ThrowOnFailure(); 869 private static winmdroot.Foundation.HRESULT GetProperties(IFileSaveDialog* pThis, winmdroot.UI.Shell.PropertiesSystem.IPropertyStore** ppStore) 873 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 882 return (winmdroot.Foundation.HRESULT)ex.HResult; 900 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.PropertiesSystem.IPropertyStore** ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IFileSaveDialog*)Unsafe.AsPointer(ref this), ppStore).ThrowOnFailure(); 906 private static winmdroot.Foundation.HRESULT ApplyProperties(IFileSaveDialog* pThis, winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* pStore, winmdroot.Foundation.HWND hwnd, winmdroot.UI.Shell.IFileOperationProgressSink* pSink) 910 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 919 return (winmdroot.Foundation.HRESULT)ex.HResult; 949 ((delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* ,winmdroot.Foundation.HWND ,winmdroot.UI.Shell.IFileOperationProgressSink* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IFileSaveDialog*)Unsafe.AsPointer(ref this), psi, pStore, hwnd, pSink).ThrowOnFailure(); 952 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 956 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 973 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 979 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> Show_4; 981 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* ,winmdroot.Foundation.HRESULT> SetFileTypes_5; 983 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.Foundation.HRESULT> SetFileTypeIndex_6; 985 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint* ,winmdroot.Foundation.HRESULT> GetFileTypeIndex_7; 987 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IFileDialogEvents* ,uint* ,winmdroot.Foundation.HRESULT> Advise_8; 989 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,uint ,winmdroot.Foundation.HRESULT> Unadvise_9; 991 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS ,winmdroot.Foundation.HRESULT> SetOptions_10; 993 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* ,winmdroot.Foundation.HRESULT> GetOptions_11; 995 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetDefaultFolder_12; 997 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetFolder_13; 999 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetFolder_14; 1001 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetCurrentSelection_15; 1003 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileName_16; 1005 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetFileName_17; 1007 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetTitle_18; 1009 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetOkButtonLabel_19; 1011 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetFileNameLabel_20; 1013 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetResult_21; 1015 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.FDAP ,winmdroot.Foundation.HRESULT> AddPlace_22; 1017 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetDefaultExtension_23; 1019 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HRESULT ,winmdroot.Foundation.HRESULT> Close_24; 1021 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,global::System.Guid* ,winmdroot.Foundation.HRESULT> SetClientGuid_25; 1023 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.Foundation.HRESULT> ClearClientData_26; 1025 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItemFilter* ,winmdroot.Foundation.HRESULT> SetFilter_27; 1027 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> SetSaveAsItem_28; 1029 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* ,winmdroot.Foundation.HRESULT> SetProperties_29; 1031 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.PropertiesSystem.IPropertyDescriptionList* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> SetCollectedProperties_30; 1033 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.PropertiesSystem.IPropertyStore** ,winmdroot.Foundation.HRESULT> GetProperties_31; 1035 internal delegate *unmanaged [Stdcall]<IFileSaveDialog*,winmdroot.UI.Shell.IShellItem* ,winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* ,winmdroot.Foundation.HWND ,winmdroot.UI.Shell.IFileOperationProgressSink* ,winmdroot.Foundation.HRESULT> ApplyProperties_32; 1090 new winmdroot.Foundation.HRESULT Show(winmdroot.Foundation.HWND hwndOwner); 1093 unsafe new winmdroot.Foundation.HRESULT SetFileTypes(uint cFileTypes, winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC* rgFilterSpec); 1096 new winmdroot.Foundation.HRESULT SetFileTypeIndex(uint iFileType); 1099 unsafe new winmdroot.Foundation.HRESULT GetFileTypeIndex(uint* piFileType); 1102 unsafe new winmdroot.Foundation.HRESULT Advise(winmdroot.UI.Shell.IFileDialogEvents* pfde, uint* pdwCookie); 1105 new winmdroot.Foundation.HRESULT Unadvise(uint dwCookie); 1108 new winmdroot.Foundation.HRESULT SetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS fos); 1111 unsafe new winmdroot.Foundation.HRESULT GetOptions(winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS* pfos); 1114 unsafe new winmdroot.Foundation.HRESULT SetDefaultFolder(winmdroot.UI.Shell.IShellItem* psi); 1117 unsafe new winmdroot.Foundation.HRESULT SetFolder(winmdroot.UI.Shell.IShellItem* psi); 1120 unsafe new winmdroot.Foundation.HRESULT GetFolder(winmdroot.UI.Shell.IShellItem** ppsi); 1123 unsafe new winmdroot.Foundation.HRESULT GetCurrentSelection(winmdroot.UI.Shell.IShellItem** ppsi); 1126 new winmdroot.Foundation.HRESULT SetFileName(winmdroot.Foundation.PCWSTR pszName); 1129 unsafe new winmdroot.Foundation.HRESULT GetFileName(winmdroot.Foundation.PWSTR* pszName); 1132 new winmdroot.Foundation.HRESULT SetTitle(winmdroot.Foundation.PCWSTR pszTitle); 1135 new winmdroot.Foundation.HRESULT SetOkButtonLabel(winmdroot.Foundation.PCWSTR pszText); 1138 new winmdroot.Foundation.HRESULT SetFileNameLabel(winmdroot.Foundation.PCWSTR pszLabel); 1141 unsafe new winmdroot.Foundation.HRESULT GetResult(winmdroot.UI.Shell.IShellItem** ppsi); 1144 unsafe new winmdroot.Foundation.HRESULT AddPlace(winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.FDAP fdap); 1147 new winmdroot.Foundation.HRESULT SetDefaultExtension(winmdroot.Foundation.PCWSTR pszDefaultExtension); 1150 new winmdroot.Foundation.HRESULT Close(winmdroot.Foundation.HRESULT hr); 1153 unsafe new winmdroot.Foundation.HRESULT SetClientGuid(global::System.Guid* guid); 1156 new winmdroot.Foundation.HRESULT ClearClientData(); 1159 unsafe new winmdroot.Foundation.HRESULT SetFilter(winmdroot.UI.Shell.IShellItemFilter* pFilter); 1162 unsafe winmdroot.Foundation.HRESULT SetSaveAsItem(winmdroot.UI.Shell.IShellItem* psi); 1165 unsafe winmdroot.Foundation.HRESULT SetProperties(winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* pStore); 1168 unsafe winmdroot.Foundation.HRESULT SetCollectedProperties(winmdroot.UI.Shell.PropertiesSystem.IPropertyDescriptionList* pList, winmdroot.Foundation.BOOL fAppendDefault); 1171 unsafe winmdroot.Foundation.HRESULT GetProperties(winmdroot.UI.Shell.PropertiesSystem.IPropertyStore** ppStore); 1174 unsafe winmdroot.Foundation.HRESULT ApplyProperties(winmdroot.UI.Shell.IShellItem* psi, winmdroot.UI.Shell.PropertiesSystem.IPropertyStore* pStore, winmdroot.Foundation.HWND hwnd, winmdroot.UI.Shell.IFileOperationProgressSink* pSink);
Windows.Win32.IFont.g.cs (151)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IFont*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFont*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT get_Name(IFont* pThis, winmdroot.Foundation.BSTR* pName) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 68 return winmdroot.Foundation.HRESULT.S_OK; 72 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 94 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 101 private static winmdroot.Foundation.HRESULT put_Name(IFont* pThis, winmdroot.Foundation.BSTR name) 105 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 111 return winmdroot.Foundation.HRESULT.S_OK; 115 return (winmdroot.Foundation.HRESULT)ex.HResult; 122 private static winmdroot.Foundation.HRESULT get_Size(IFont* pThis, winmdroot.System.Com.CY* pSize) 126 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return winmdroot.Foundation.HRESULT.S_OK; 136 return (winmdroot.Foundation.HRESULT)ex.HResult; 153 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Com.CY* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 158 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Com.CY ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 165 private static winmdroot.Foundation.HRESULT put_Size(IFont* pThis, winmdroot.System.Com.CY size) 169 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 175 return winmdroot.Foundation.HRESULT.S_OK; 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 186 private static winmdroot.Foundation.HRESULT get_Bold(IFont* pThis, winmdroot.Foundation.BOOL* pBold) 190 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 196 return winmdroot.Foundation.HRESULT.S_OK; 200 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 222 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 229 private static winmdroot.Foundation.HRESULT put_Bold(IFont* pThis, winmdroot.Foundation.BOOL bold) 233 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 239 return winmdroot.Foundation.HRESULT.S_OK; 243 return (winmdroot.Foundation.HRESULT)ex.HResult; 250 private static winmdroot.Foundation.HRESULT get_Italic(IFont* pThis, winmdroot.Foundation.BOOL* pItalic) 254 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 260 return winmdroot.Foundation.HRESULT.S_OK; 264 return (winmdroot.Foundation.HRESULT)ex.HResult; 281 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 286 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 293 private static winmdroot.Foundation.HRESULT put_Italic(IFont* pThis, winmdroot.Foundation.BOOL italic) 297 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 303 return winmdroot.Foundation.HRESULT.S_OK; 307 return (winmdroot.Foundation.HRESULT)ex.HResult; 314 private static winmdroot.Foundation.HRESULT get_Underline(IFont* pThis, winmdroot.Foundation.BOOL* pUnderline) 318 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 324 return winmdroot.Foundation.HRESULT.S_OK; 328 return (winmdroot.Foundation.HRESULT)ex.HResult; 345 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 350 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 357 private static winmdroot.Foundation.HRESULT put_Underline(IFont* pThis, winmdroot.Foundation.BOOL underline) 361 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 367 return winmdroot.Foundation.HRESULT.S_OK; 371 return (winmdroot.Foundation.HRESULT)ex.HResult; 378 private static winmdroot.Foundation.HRESULT get_Strikethrough(IFont* pThis, winmdroot.Foundation.BOOL* pStrikethrough) 382 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 388 return winmdroot.Foundation.HRESULT.S_OK; 392 return (winmdroot.Foundation.HRESULT)ex.HResult; 409 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 414 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 421 private static winmdroot.Foundation.HRESULT put_Strikethrough(IFont* pThis, winmdroot.Foundation.BOOL strikethrough) 425 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 431 return winmdroot.Foundation.HRESULT.S_OK; 435 return (winmdroot.Foundation.HRESULT)ex.HResult; 442 private static winmdroot.Foundation.HRESULT get_Weight(IFont* pThis, short* pWeight) 446 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 452 return winmdroot.Foundation.HRESULT.S_OK; 456 return (winmdroot.Foundation.HRESULT)ex.HResult; 473 ((delegate *unmanaged [Stdcall]<IFont*,short* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 478 ((delegate *unmanaged [Stdcall]<IFont*,short ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 485 private static winmdroot.Foundation.HRESULT put_Weight(IFont* pThis, short weight) 489 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 495 return winmdroot.Foundation.HRESULT.S_OK; 499 return (winmdroot.Foundation.HRESULT)ex.HResult; 506 private static winmdroot.Foundation.HRESULT get_Charset(IFont* pThis, short* pCharset) 510 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 516 return winmdroot.Foundation.HRESULT.S_OK; 520 return (winmdroot.Foundation.HRESULT)ex.HResult; 537 ((delegate *unmanaged [Stdcall]<IFont*,short* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 542 ((delegate *unmanaged [Stdcall]<IFont*,short ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IFont*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 549 private static winmdroot.Foundation.HRESULT put_Charset(IFont* pThis, short charset) 553 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 559 return winmdroot.Foundation.HRESULT.S_OK; 563 return (winmdroot.Foundation.HRESULT)ex.HResult; 570 private static winmdroot.Foundation.HRESULT get_hFont(IFont* pThis, winmdroot.Graphics.Gdi.HFONT* phFont) 574 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 580 return winmdroot.Foundation.HRESULT.S_OK; 584 return (winmdroot.Foundation.HRESULT)ex.HResult; 602 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IFont*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 610 private static winmdroot.Foundation.HRESULT Clone(IFont* pThis, winmdroot.System.Ole.IFont** ppFont) 614 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 623 return (winmdroot.Foundation.HRESULT)ex.HResult; 642 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Ole.IFont** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IFont*)Unsafe.AsPointer(ref this), ppFont).ThrowOnFailure(); 648 private static winmdroot.Foundation.HRESULT IsEqual(IFont* pThis, winmdroot.System.Ole.IFont* pFontOther) 652 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 661 return (winmdroot.Foundation.HRESULT)ex.HResult; 676 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Ole.IFont* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IFont*)Unsafe.AsPointer(ref this), pFontOther).ThrowOnFailure(); 682 private static winmdroot.Foundation.HRESULT SetRatio(IFont* pThis, int cyLogical, int cyHimetric) 686 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 695 return (winmdroot.Foundation.HRESULT)ex.HResult; 708 ((delegate *unmanaged [Stdcall]<IFont*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IFont*)Unsafe.AsPointer(ref this), cyLogical, cyHimetric).ThrowOnFailure(); 723 private static winmdroot.Foundation.HRESULT QueryTextMetrics(IFont* pThis, winmdroot.Graphics.Gdi.TEXTMETRICW* pTM) 727 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 736 return (winmdroot.Foundation.HRESULT)ex.HResult; 755 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.TEXTMETRICW* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IFont*)Unsafe.AsPointer(ref this), pTM).ThrowOnFailure(); 761 private static winmdroot.Foundation.HRESULT AddRefHfont(IFont* pThis, winmdroot.Graphics.Gdi.HFONT hFont) 765 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 774 return (winmdroot.Foundation.HRESULT)ex.HResult; 789 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IFont*)Unsafe.AsPointer(ref this), hFont).ThrowOnFailure(); 795 private static winmdroot.Foundation.HRESULT ReleaseHfont(IFont* pThis, winmdroot.Graphics.Gdi.HFONT hFont) 799 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 808 return (winmdroot.Foundation.HRESULT)ex.HResult; 826 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IFont*)Unsafe.AsPointer(ref this), hFont).ThrowOnFailure(); 832 private static winmdroot.Foundation.HRESULT SetHdc(IFont* pThis, winmdroot.Graphics.Gdi.HDC hDC) 836 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 845 return (winmdroot.Foundation.HRESULT)ex.HResult; 861 ((delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HDC ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IFont*)Unsafe.AsPointer(ref this), hDC).ThrowOnFailure(); 864 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 868 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 885 internal delegate *unmanaged [Stdcall]<IFont*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 891 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_4; 893 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_Name_5; 895 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Com.CY* ,winmdroot.Foundation.HRESULT> get_Size_6; 897 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Com.CY ,winmdroot.Foundation.HRESULT> put_Size_7; 899 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_Bold_8; 901 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_Bold_9; 903 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_Italic_10; 905 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_Italic_11; 907 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_Underline_12; 909 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_Underline_13; 911 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_Strikethrough_14; 913 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_Strikethrough_15; 915 internal delegate *unmanaged [Stdcall]<IFont*,short* ,winmdroot.Foundation.HRESULT> get_Weight_16; 917 internal delegate *unmanaged [Stdcall]<IFont*,short ,winmdroot.Foundation.HRESULT> put_Weight_17; 919 internal delegate *unmanaged [Stdcall]<IFont*,short* ,winmdroot.Foundation.HRESULT> get_Charset_18; 921 internal delegate *unmanaged [Stdcall]<IFont*,short ,winmdroot.Foundation.HRESULT> put_Charset_19; 923 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT* ,winmdroot.Foundation.HRESULT> get_hFont_20; 925 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Ole.IFont** ,winmdroot.Foundation.HRESULT> Clone_21; 927 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.System.Ole.IFont* ,winmdroot.Foundation.HRESULT> IsEqual_22; 929 internal delegate *unmanaged [Stdcall]<IFont*,int ,int ,winmdroot.Foundation.HRESULT> SetRatio_23; 931 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.TEXTMETRICW* ,winmdroot.Foundation.HRESULT> QueryTextMetrics_24; 933 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT ,winmdroot.Foundation.HRESULT> AddRefHfont_25; 935 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HFONT ,winmdroot.Foundation.HRESULT> ReleaseHfont_26; 937 internal delegate *unmanaged [Stdcall]<IFont*,winmdroot.Graphics.Gdi.HDC ,winmdroot.Foundation.HRESULT> SetHdc_27; 1040 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.System.Ole.IFont** ppFont); 1043 unsafe winmdroot.Foundation.HRESULT IsEqual(winmdroot.System.Ole.IFont* pFontOther); 1046winmdroot.Foundation.HRESULT SetRatio(int cyLogical, int cyHimetric); 1049 unsafe winmdroot.Foundation.HRESULT QueryTextMetrics(winmdroot.Graphics.Gdi.TEXTMETRICW* pTM); 1052winmdroot.Foundation.HRESULT AddRefHfont(winmdroot.Graphics.Gdi.HFONT hFont); 1055winmdroot.Foundation.HRESULT ReleaseHfont(winmdroot.Graphics.Gdi.HFONT hFont); 1058winmdroot.Foundation.HRESULT SetHdc(winmdroot.Graphics.Gdi.HDC hDC);
Windows.Win32.IFontDisp.g.cs (15)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IFontDisp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IFontDisp*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 ((delegate *unmanaged [Stdcall]<IFontDisp*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IFontDisp*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 71 ((delegate *unmanaged [Stdcall]<IFontDisp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IFontDisp*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 92 ((delegate *unmanaged [Stdcall]<IFontDisp*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IFontDisp*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 109 ((delegate *unmanaged [Stdcall]<IFontDisp*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IFontDisp*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 112 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 116 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 133 internal delegate *unmanaged [Stdcall]<IFontDisp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 139 internal delegate *unmanaged [Stdcall]<IFontDisp*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 141 internal delegate *unmanaged [Stdcall]<IFontDisp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 143 internal delegate *unmanaged [Stdcall]<IFontDisp*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 145 internal delegate *unmanaged [Stdcall]<IFontDisp*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7;
Windows.Win32.IGetOleObject.g.cs (16)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IGetOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IGetOleObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 55 internal unsafe winmdroot.Foundation.HRESULT GetOleObject(in global::System.Guid riid, ref void* ppvObj) 61 winmdroot.Foundation.HRESULT __result = this.GetOleObject(riidLocal, ppvObjLocal); 70 private static winmdroot.Foundation.HRESULT GetOleObject(IGetOleObject* pThis, global::System.Guid* riid, void** ppvObj) 74 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 99 public unsafe winmdroot.Foundation.HRESULT GetOleObject(global::System.Guid* riid, void** ppvObj) 101 return ((delegate *unmanaged [Stdcall]<IGetOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IGetOleObject*)Unsafe.AsPointer(ref this), riid, ppvObj); 104 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 108 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 125 internal delegate *unmanaged [Stdcall]<IGetOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 131 internal delegate *unmanaged [Stdcall]<IGetOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetOleObject_4; 157 unsafe winmdroot.Foundation.HRESULT GetOleObject(global::System.Guid* riid, void** ppvObj);
Windows.Win32.IGetVBAObject.g.cs (13)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IGetVBAObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IGetVBAObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 private static winmdroot.Foundation.HRESULT GetObject(IGetVBAObject* pThis, global::System.Guid* riid, void** ppvObj, uint dwReserved) 73 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 82 return (winmdroot.Foundation.HRESULT)ex.HResult; 101 ((delegate *unmanaged [Stdcall]<IGetVBAObject*,global::System.Guid* ,void** ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IGetVBAObject*)Unsafe.AsPointer(ref this), riid, ppvObj, dwReserved).ThrowOnFailure(); 104 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 108 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 125 internal delegate *unmanaged [Stdcall]<IGetVBAObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 131 internal delegate *unmanaged [Stdcall]<IGetVBAObject*,global::System.Guid* ,void** ,uint ,winmdroot.Foundation.HRESULT> GetObject_4; 157 unsafe winmdroot.Foundation.HRESULT GetObject(global::System.Guid* riid, void** ppvObj, uint dwReserved);
Windows.Win32.IGridItemProvider.g.cs (50)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IGridItemProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT get_Row(out int pRetVal) 60 winmdroot.Foundation.HRESULT __result = this.get_Row(pRetValLocal); 68 private static winmdroot.Foundation.HRESULT get_Row(IGridItemProvider* pThis, int* pRetVal) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 public unsafe winmdroot.Foundation.HRESULT get_Row(int* pRetVal) 91 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IGridItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 95 internal unsafe winmdroot.Foundation.HRESULT get_Column(out int pRetVal) 99 winmdroot.Foundation.HRESULT __result = this.get_Column(pRetValLocal); 107 private static winmdroot.Foundation.HRESULT get_Column(IGridItemProvider* pThis, int* pRetVal) 111 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 120 return (winmdroot.Foundation.HRESULT)ex.HResult; 128 public unsafe winmdroot.Foundation.HRESULT get_Column(int* pRetVal) 130 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IGridItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 134 internal unsafe winmdroot.Foundation.HRESULT get_RowSpan(out int pRetVal) 138 winmdroot.Foundation.HRESULT __result = this.get_RowSpan(pRetValLocal); 146 private static winmdroot.Foundation.HRESULT get_RowSpan(IGridItemProvider* pThis, int* pRetVal) 150 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 167 public unsafe winmdroot.Foundation.HRESULT get_RowSpan(int* pRetVal) 169 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IGridItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 173 internal unsafe winmdroot.Foundation.HRESULT get_ColumnSpan(out int pRetVal) 177 winmdroot.Foundation.HRESULT __result = this.get_ColumnSpan(pRetValLocal); 185 private static winmdroot.Foundation.HRESULT get_ColumnSpan(IGridItemProvider* pThis, int* pRetVal) 189 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 198 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 public unsafe winmdroot.Foundation.HRESULT get_ColumnSpan(int* pRetVal) 208 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IGridItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 214 private static winmdroot.Foundation.HRESULT get_ContainingGrid(IGridItemProvider* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 218 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 227 return (winmdroot.Foundation.HRESULT)ex.HResult; 235 public unsafe winmdroot.Foundation.HRESULT get_ContainingGrid(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 237 return ((delegate *unmanaged [Stdcall]<IGridItemProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IGridItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 240 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 244 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 261 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 267 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT> get_Row_4; 269 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT> get_Column_5; 271 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT> get_RowSpan_6; 273 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,int* ,winmdroot.Foundation.HRESULT> get_ColumnSpan_7; 275 internal delegate *unmanaged [Stdcall]<IGridItemProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> get_ContainingGrid_8; 306 unsafe winmdroot.Foundation.HRESULT get_Row(int* pRetVal); 309 unsafe winmdroot.Foundation.HRESULT get_Column(int* pRetVal); 312 unsafe winmdroot.Foundation.HRESULT get_RowSpan(int* pRetVal); 315 unsafe winmdroot.Foundation.HRESULT get_ColumnSpan(int* pRetVal); 318 unsafe winmdroot.Foundation.HRESULT get_ContainingGrid(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal);
Windows.Win32.IGridProvider.g.cs (31)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IGridProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IGridProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetItem(IGridProvider* pThis, int row, int column, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 ((delegate *unmanaged [Stdcall]<IGridProvider*,int ,int ,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IGridProvider*)Unsafe.AsPointer(ref this), row, column, &__retVal).ThrowOnFailure(); 101 internal unsafe winmdroot.Foundation.HRESULT get_RowCount(out int pRetVal) 105 winmdroot.Foundation.HRESULT __result = this.get_RowCount(pRetValLocal); 113 private static winmdroot.Foundation.HRESULT get_RowCount(IGridProvider* pThis, int* pRetVal) 117 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 126 return (winmdroot.Foundation.HRESULT)ex.HResult; 135 public unsafe winmdroot.Foundation.HRESULT get_RowCount(int* pRetVal) 137 return ((delegate *unmanaged [Stdcall]<IGridProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IGridProvider*)Unsafe.AsPointer(ref this), pRetVal); 141 internal unsafe winmdroot.Foundation.HRESULT get_ColumnCount(out int pRetVal) 145 winmdroot.Foundation.HRESULT __result = this.get_ColumnCount(pRetValLocal); 153 private static winmdroot.Foundation.HRESULT get_ColumnCount(IGridProvider* pThis, int* pRetVal) 157 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 166 return (winmdroot.Foundation.HRESULT)ex.HResult; 175 public unsafe winmdroot.Foundation.HRESULT get_ColumnCount(int* pRetVal) 177 return ((delegate *unmanaged [Stdcall]<IGridProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IGridProvider*)Unsafe.AsPointer(ref this), pRetVal); 180 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 184 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 201 internal delegate *unmanaged [Stdcall]<IGridProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 207 internal delegate *unmanaged [Stdcall]<IGridProvider*,int ,int ,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> GetItem_4; 209 internal delegate *unmanaged [Stdcall]<IGridProvider*,int* ,winmdroot.Foundation.HRESULT> get_RowCount_5; 211 internal delegate *unmanaged [Stdcall]<IGridProvider*,int* ,winmdroot.Foundation.HRESULT> get_ColumnCount_6; 240 unsafe winmdroot.Foundation.HRESULT GetItem(int row, int column, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal); 243 unsafe winmdroot.Foundation.HRESULT get_RowCount(int* pRetVal); 246 unsafe winmdroot.Foundation.HRESULT get_ColumnCount(int* pRetVal);
Windows.Win32.IHTMLCurrentStyle.g.cs (561)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_position(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT get_styleFloat(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return winmdroot.Foundation.HRESULT.S_OK; 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 176 private static winmdroot.Foundation.HRESULT get_color(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 180 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 186 return winmdroot.Foundation.HRESULT.S_OK; 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 199 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 207 private static winmdroot.Foundation.HRESULT get_backgroundColor(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 211 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 217 return winmdroot.Foundation.HRESULT.S_OK; 221 return (winmdroot.Foundation.HRESULT)ex.HResult; 230 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 238 private static winmdroot.Foundation.HRESULT get_fontFamily(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 242 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 248 return winmdroot.Foundation.HRESULT.S_OK; 252 return (winmdroot.Foundation.HRESULT)ex.HResult; 261 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 269 private static winmdroot.Foundation.HRESULT get_fontStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 273 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 279 return winmdroot.Foundation.HRESULT.S_OK; 283 return (winmdroot.Foundation.HRESULT)ex.HResult; 292 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 300 private static winmdroot.Foundation.HRESULT get_fontVariant(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 304 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 310 return winmdroot.Foundation.HRESULT.S_OK; 314 return (winmdroot.Foundation.HRESULT)ex.HResult; 323 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 331 private static winmdroot.Foundation.HRESULT get_fontWeight(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 335 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 341 return winmdroot.Foundation.HRESULT.S_OK; 345 return (winmdroot.Foundation.HRESULT)ex.HResult; 354 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 362 private static winmdroot.Foundation.HRESULT get_fontSize(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 366 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 372 return winmdroot.Foundation.HRESULT.S_OK; 376 return (winmdroot.Foundation.HRESULT)ex.HResult; 385 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 393 private static winmdroot.Foundation.HRESULT get_backgroundImage(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 397 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 403 return winmdroot.Foundation.HRESULT.S_OK; 407 return (winmdroot.Foundation.HRESULT)ex.HResult; 416 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 424 private static winmdroot.Foundation.HRESULT get_backgroundPositionX(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 428 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 434 return winmdroot.Foundation.HRESULT.S_OK; 438 return (winmdroot.Foundation.HRESULT)ex.HResult; 447 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 455 private static winmdroot.Foundation.HRESULT get_backgroundPositionY(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 459 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 465 return winmdroot.Foundation.HRESULT.S_OK; 469 return (winmdroot.Foundation.HRESULT)ex.HResult; 478 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 486 private static winmdroot.Foundation.HRESULT get_backgroundRepeat(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 490 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 496 return winmdroot.Foundation.HRESULT.S_OK; 500 return (winmdroot.Foundation.HRESULT)ex.HResult; 509 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 517 private static winmdroot.Foundation.HRESULT get_borderLeftColor(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 521 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 527 return winmdroot.Foundation.HRESULT.S_OK; 531 return (winmdroot.Foundation.HRESULT)ex.HResult; 540 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 548 private static winmdroot.Foundation.HRESULT get_borderTopColor(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 552 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 558 return winmdroot.Foundation.HRESULT.S_OK; 562 return (winmdroot.Foundation.HRESULT)ex.HResult; 571 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 579 private static winmdroot.Foundation.HRESULT get_borderRightColor(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 583 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 589 return winmdroot.Foundation.HRESULT.S_OK; 593 return (winmdroot.Foundation.HRESULT)ex.HResult; 602 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 610 private static winmdroot.Foundation.HRESULT get_borderBottomColor(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 614 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 620 return winmdroot.Foundation.HRESULT.S_OK; 624 return (winmdroot.Foundation.HRESULT)ex.HResult; 633 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 641 private static winmdroot.Foundation.HRESULT get_borderTopStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 645 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 651 return winmdroot.Foundation.HRESULT.S_OK; 655 return (winmdroot.Foundation.HRESULT)ex.HResult; 664 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 672 private static winmdroot.Foundation.HRESULT get_borderRightStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 676 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 682 return winmdroot.Foundation.HRESULT.S_OK; 686 return (winmdroot.Foundation.HRESULT)ex.HResult; 695 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 703 private static winmdroot.Foundation.HRESULT get_borderBottomStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 707 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 713 return winmdroot.Foundation.HRESULT.S_OK; 717 return (winmdroot.Foundation.HRESULT)ex.HResult; 726 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 734 private static winmdroot.Foundation.HRESULT get_borderLeftStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 738 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 744 return winmdroot.Foundation.HRESULT.S_OK; 748 return (winmdroot.Foundation.HRESULT)ex.HResult; 757 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 765 private static winmdroot.Foundation.HRESULT get_borderTopWidth(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 769 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 775 return winmdroot.Foundation.HRESULT.S_OK; 779 return (winmdroot.Foundation.HRESULT)ex.HResult; 788 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 796 private static winmdroot.Foundation.HRESULT get_borderRightWidth(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 800 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 806 return winmdroot.Foundation.HRESULT.S_OK; 810 return (winmdroot.Foundation.HRESULT)ex.HResult; 819 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 827 private static winmdroot.Foundation.HRESULT get_borderBottomWidth(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 831 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 837 return winmdroot.Foundation.HRESULT.S_OK; 841 return (winmdroot.Foundation.HRESULT)ex.HResult; 850 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 858 private static winmdroot.Foundation.HRESULT get_borderLeftWidth(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 862 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 868 return winmdroot.Foundation.HRESULT.S_OK; 872 return (winmdroot.Foundation.HRESULT)ex.HResult; 881 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 889 private static winmdroot.Foundation.HRESULT get_left(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 893 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 899 return winmdroot.Foundation.HRESULT.S_OK; 903 return (winmdroot.Foundation.HRESULT)ex.HResult; 912 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 920 private static winmdroot.Foundation.HRESULT get_top(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 924 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 930 return winmdroot.Foundation.HRESULT.S_OK; 934 return (winmdroot.Foundation.HRESULT)ex.HResult; 943 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 951 private static winmdroot.Foundation.HRESULT get_width(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 955 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 961 return winmdroot.Foundation.HRESULT.S_OK; 965 return (winmdroot.Foundation.HRESULT)ex.HResult; 974 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 982 private static winmdroot.Foundation.HRESULT get_height(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 986 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 992 return winmdroot.Foundation.HRESULT.S_OK; 996 return (winmdroot.Foundation.HRESULT)ex.HResult; 1005 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1013 private static winmdroot.Foundation.HRESULT get_paddingLeft(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1017 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1023 return winmdroot.Foundation.HRESULT.S_OK; 1027 return (winmdroot.Foundation.HRESULT)ex.HResult; 1036 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1044 private static winmdroot.Foundation.HRESULT get_paddingTop(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1048 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1054 return winmdroot.Foundation.HRESULT.S_OK; 1058 return (winmdroot.Foundation.HRESULT)ex.HResult; 1067 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1075 private static winmdroot.Foundation.HRESULT get_paddingRight(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1079 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1085 return winmdroot.Foundation.HRESULT.S_OK; 1089 return (winmdroot.Foundation.HRESULT)ex.HResult; 1098 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1106 private static winmdroot.Foundation.HRESULT get_paddingBottom(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1110 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1116 return winmdroot.Foundation.HRESULT.S_OK; 1120 return (winmdroot.Foundation.HRESULT)ex.HResult; 1129 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1137 private static winmdroot.Foundation.HRESULT get_textAlign(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1141 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1147 return winmdroot.Foundation.HRESULT.S_OK; 1151 return (winmdroot.Foundation.HRESULT)ex.HResult; 1160 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1168 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1172 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1178 return winmdroot.Foundation.HRESULT.S_OK; 1182 return (winmdroot.Foundation.HRESULT)ex.HResult; 1191 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1199 private static winmdroot.Foundation.HRESULT get_display(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1203 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1209 return winmdroot.Foundation.HRESULT.S_OK; 1213 return (winmdroot.Foundation.HRESULT)ex.HResult; 1222 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1230 private static winmdroot.Foundation.HRESULT get_visibility(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1234 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1240 return winmdroot.Foundation.HRESULT.S_OK; 1244 return (winmdroot.Foundation.HRESULT)ex.HResult; 1253 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1261 private static winmdroot.Foundation.HRESULT get_zIndex(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1271 return winmdroot.Foundation.HRESULT.S_OK; 1275 return (winmdroot.Foundation.HRESULT)ex.HResult; 1284 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1292 private static winmdroot.Foundation.HRESULT get_letterSpacing(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1296 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1302 return winmdroot.Foundation.HRESULT.S_OK; 1306 return (winmdroot.Foundation.HRESULT)ex.HResult; 1315 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1323 private static winmdroot.Foundation.HRESULT get_lineHeight(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1327 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1333 return winmdroot.Foundation.HRESULT.S_OK; 1337 return (winmdroot.Foundation.HRESULT)ex.HResult; 1346 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1354 private static winmdroot.Foundation.HRESULT get_textIndent(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1358 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1364 return winmdroot.Foundation.HRESULT.S_OK; 1368 return (winmdroot.Foundation.HRESULT)ex.HResult; 1377 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1385 private static winmdroot.Foundation.HRESULT get_verticalAlign(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1389 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1395 return winmdroot.Foundation.HRESULT.S_OK; 1399 return (winmdroot.Foundation.HRESULT)ex.HResult; 1408 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1416 private static winmdroot.Foundation.HRESULT get_backgroundAttachment(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1420 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1426 return winmdroot.Foundation.HRESULT.S_OK; 1430 return (winmdroot.Foundation.HRESULT)ex.HResult; 1439 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1447 private static winmdroot.Foundation.HRESULT get_marginTop(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1451 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1457 return winmdroot.Foundation.HRESULT.S_OK; 1461 return (winmdroot.Foundation.HRESULT)ex.HResult; 1470 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1478 private static winmdroot.Foundation.HRESULT get_marginRight(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1482 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1488 return winmdroot.Foundation.HRESULT.S_OK; 1492 return (winmdroot.Foundation.HRESULT)ex.HResult; 1501 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1509 private static winmdroot.Foundation.HRESULT get_marginBottom(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1513 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1519 return winmdroot.Foundation.HRESULT.S_OK; 1523 return (winmdroot.Foundation.HRESULT)ex.HResult; 1532 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1540 private static winmdroot.Foundation.HRESULT get_marginLeft(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1544 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1550 return winmdroot.Foundation.HRESULT.S_OK; 1554 return (winmdroot.Foundation.HRESULT)ex.HResult; 1563 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1571 private static winmdroot.Foundation.HRESULT get_clear(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1575 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1581 return winmdroot.Foundation.HRESULT.S_OK; 1585 return (winmdroot.Foundation.HRESULT)ex.HResult; 1594 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1602 private static winmdroot.Foundation.HRESULT get_listStyleType(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1606 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1612 return winmdroot.Foundation.HRESULT.S_OK; 1616 return (winmdroot.Foundation.HRESULT)ex.HResult; 1625 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1633 private static winmdroot.Foundation.HRESULT get_listStylePosition(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1637 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1643 return winmdroot.Foundation.HRESULT.S_OK; 1647 return (winmdroot.Foundation.HRESULT)ex.HResult; 1656 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1664 private static winmdroot.Foundation.HRESULT get_listStyleImage(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1668 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1674 return winmdroot.Foundation.HRESULT.S_OK; 1678 return (winmdroot.Foundation.HRESULT)ex.HResult; 1687 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1695 private static winmdroot.Foundation.HRESULT get_clipTop(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1699 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1705 return winmdroot.Foundation.HRESULT.S_OK; 1709 return (winmdroot.Foundation.HRESULT)ex.HResult; 1718 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1726 private static winmdroot.Foundation.HRESULT get_clipRight(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1730 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1736 return winmdroot.Foundation.HRESULT.S_OK; 1740 return (winmdroot.Foundation.HRESULT)ex.HResult; 1749 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1757 private static winmdroot.Foundation.HRESULT get_clipBottom(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1761 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1767 return winmdroot.Foundation.HRESULT.S_OK; 1771 return (winmdroot.Foundation.HRESULT)ex.HResult; 1780 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1788 private static winmdroot.Foundation.HRESULT get_clipLeft(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1792 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1798 return winmdroot.Foundation.HRESULT.S_OK; 1802 return (winmdroot.Foundation.HRESULT)ex.HResult; 1811 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1819 private static winmdroot.Foundation.HRESULT get_overflow(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1823 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1829 return winmdroot.Foundation.HRESULT.S_OK; 1833 return (winmdroot.Foundation.HRESULT)ex.HResult; 1842 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1850 private static winmdroot.Foundation.HRESULT get_pageBreakBefore(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1854 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1860 return winmdroot.Foundation.HRESULT.S_OK; 1864 return (winmdroot.Foundation.HRESULT)ex.HResult; 1873 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1881 private static winmdroot.Foundation.HRESULT get_pageBreakAfter(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1885 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1891 return winmdroot.Foundation.HRESULT.S_OK; 1895 return (winmdroot.Foundation.HRESULT)ex.HResult; 1904 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1912 private static winmdroot.Foundation.HRESULT get_cursor(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1916 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1922 return winmdroot.Foundation.HRESULT.S_OK; 1926 return (winmdroot.Foundation.HRESULT)ex.HResult; 1935 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1943 private static winmdroot.Foundation.HRESULT get_tableLayout(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1947 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1953 return winmdroot.Foundation.HRESULT.S_OK; 1957 return (winmdroot.Foundation.HRESULT)ex.HResult; 1966 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1974 private static winmdroot.Foundation.HRESULT get_borderCollapse(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 1978 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1984 return winmdroot.Foundation.HRESULT.S_OK; 1988 return (winmdroot.Foundation.HRESULT)ex.HResult; 1997 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2005 private static winmdroot.Foundation.HRESULT get_direction(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2009 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2015 return winmdroot.Foundation.HRESULT.S_OK; 2019 return (winmdroot.Foundation.HRESULT)ex.HResult; 2028 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2036 private static winmdroot.Foundation.HRESULT get_behavior(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2040 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2046 return winmdroot.Foundation.HRESULT.S_OK; 2050 return (winmdroot.Foundation.HRESULT)ex.HResult; 2059 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2067 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 2071 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2080 return (winmdroot.Foundation.HRESULT)ex.HResult; 2087 ((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(); 2094 private static winmdroot.Foundation.HRESULT get_unicodeBidi(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2098 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2104 return winmdroot.Foundation.HRESULT.S_OK; 2108 return (winmdroot.Foundation.HRESULT)ex.HResult; 2117 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2125 private static winmdroot.Foundation.HRESULT get_right(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2129 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2135 return winmdroot.Foundation.HRESULT.S_OK; 2139 return (winmdroot.Foundation.HRESULT)ex.HResult; 2148 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2156 private static winmdroot.Foundation.HRESULT get_bottom(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2160 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2166 return winmdroot.Foundation.HRESULT.S_OK; 2170 return (winmdroot.Foundation.HRESULT)ex.HResult; 2179 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2187 private static winmdroot.Foundation.HRESULT get_imeMode(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2191 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2197 return winmdroot.Foundation.HRESULT.S_OK; 2201 return (winmdroot.Foundation.HRESULT)ex.HResult; 2210 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2218 private static winmdroot.Foundation.HRESULT get_rubyAlign(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2222 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2228 return winmdroot.Foundation.HRESULT.S_OK; 2232 return (winmdroot.Foundation.HRESULT)ex.HResult; 2241 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2249 private static winmdroot.Foundation.HRESULT get_rubyPosition(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2253 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2259 return winmdroot.Foundation.HRESULT.S_OK; 2263 return (winmdroot.Foundation.HRESULT)ex.HResult; 2272 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2280 private static winmdroot.Foundation.HRESULT get_rubyOverhang(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2284 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2290 return winmdroot.Foundation.HRESULT.S_OK; 2294 return (winmdroot.Foundation.HRESULT)ex.HResult; 2303 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2311 private static winmdroot.Foundation.HRESULT get_textAutospace(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2315 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2321 return winmdroot.Foundation.HRESULT.S_OK; 2325 return (winmdroot.Foundation.HRESULT)ex.HResult; 2334 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2342 private static winmdroot.Foundation.HRESULT get_lineBreak(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2346 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2352 return winmdroot.Foundation.HRESULT.S_OK; 2356 return (winmdroot.Foundation.HRESULT)ex.HResult; 2365 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2373 private static winmdroot.Foundation.HRESULT get_wordBreak(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2377 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2383 return winmdroot.Foundation.HRESULT.S_OK; 2387 return (winmdroot.Foundation.HRESULT)ex.HResult; 2396 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2404 private static winmdroot.Foundation.HRESULT get_textJustify(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2408 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2414 return winmdroot.Foundation.HRESULT.S_OK; 2418 return (winmdroot.Foundation.HRESULT)ex.HResult; 2427 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2435 private static winmdroot.Foundation.HRESULT get_textJustifyTrim(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2439 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2445 return winmdroot.Foundation.HRESULT.S_OK; 2449 return (winmdroot.Foundation.HRESULT)ex.HResult; 2458 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2466 private static winmdroot.Foundation.HRESULT get_textKashida(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2470 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2476 return winmdroot.Foundation.HRESULT.S_OK; 2480 return (winmdroot.Foundation.HRESULT)ex.HResult; 2489 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2497 private static winmdroot.Foundation.HRESULT get_blockDirection(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2501 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2507 return winmdroot.Foundation.HRESULT.S_OK; 2511 return (winmdroot.Foundation.HRESULT)ex.HResult; 2520 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2528 private static winmdroot.Foundation.HRESULT get_layoutGridChar(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2532 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2538 return winmdroot.Foundation.HRESULT.S_OK; 2542 return (winmdroot.Foundation.HRESULT)ex.HResult; 2551 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2559 private static winmdroot.Foundation.HRESULT get_layoutGridLine(IHTMLCurrentStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2563 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2569 return winmdroot.Foundation.HRESULT.S_OK; 2573 return (winmdroot.Foundation.HRESULT)ex.HResult; 2582 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2590 private static winmdroot.Foundation.HRESULT get_layoutGridMode(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2594 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2600 return winmdroot.Foundation.HRESULT.S_OK; 2604 return (winmdroot.Foundation.HRESULT)ex.HResult; 2613 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2621 private static winmdroot.Foundation.HRESULT get_layoutGridType(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2625 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2631 return winmdroot.Foundation.HRESULT.S_OK; 2635 return (winmdroot.Foundation.HRESULT)ex.HResult; 2644 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2652 private static winmdroot.Foundation.HRESULT get_borderStyle(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2656 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2662 return winmdroot.Foundation.HRESULT.S_OK; 2666 return (winmdroot.Foundation.HRESULT)ex.HResult; 2675 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2683 private static winmdroot.Foundation.HRESULT get_borderColor(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2687 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2693 return winmdroot.Foundation.HRESULT.S_OK; 2697 return (winmdroot.Foundation.HRESULT)ex.HResult; 2706 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2714 private static winmdroot.Foundation.HRESULT get_borderWidth(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2718 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2724 return winmdroot.Foundation.HRESULT.S_OK; 2728 return (winmdroot.Foundation.HRESULT)ex.HResult; 2737 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2745 private static winmdroot.Foundation.HRESULT get_padding(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2749 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2755 return winmdroot.Foundation.HRESULT.S_OK; 2759 return (winmdroot.Foundation.HRESULT)ex.HResult; 2768 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2776 private static winmdroot.Foundation.HRESULT get_margin(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2780 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2786 return winmdroot.Foundation.HRESULT.S_OK; 2790 return (winmdroot.Foundation.HRESULT)ex.HResult; 2799 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2807 private static winmdroot.Foundation.HRESULT get_accelerator(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2811 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2817 return winmdroot.Foundation.HRESULT.S_OK; 2821 return (winmdroot.Foundation.HRESULT)ex.HResult; 2830 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2838 private static winmdroot.Foundation.HRESULT get_overflowX(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2842 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2848 return winmdroot.Foundation.HRESULT.S_OK; 2852 return (winmdroot.Foundation.HRESULT)ex.HResult; 2861 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[95])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2869 private static winmdroot.Foundation.HRESULT get_overflowY(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2873 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2879 return winmdroot.Foundation.HRESULT.S_OK; 2883 return (winmdroot.Foundation.HRESULT)ex.HResult; 2892 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[96])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2900 private static winmdroot.Foundation.HRESULT get_textTransform(IHTMLCurrentStyle* pThis, winmdroot.Foundation.BSTR* p) 2904 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2910 return winmdroot.Foundation.HRESULT.S_OK; 2914 return (winmdroot.Foundation.HRESULT)ex.HResult; 2923 ((delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[97])((IHTMLCurrentStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2928 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2932 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 2949 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2955 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2957 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2959 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2961 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 2963 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_position_8; 2965 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_styleFloat_9; 2967 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_color_10; 2969 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundColor_11; 2971 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontFamily_12; 2973 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontStyle_13; 2975 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontVariant_14; 2977 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_fontWeight_15; 2979 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_fontSize_16; 2981 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundImage_17; 2983 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionX_18; 2985 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionY_19; 2987 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundRepeat_20; 2989 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftColor_21; 2991 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopColor_22; 2993 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightColor_23; 2995 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomColor_24; 2997 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTopStyle_25; 2999 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRightStyle_26; 3001 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottomStyle_27; 3003 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeftStyle_28; 3005 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopWidth_29; 3007 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightWidth_30; 3009 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomWidth_31; 3011 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftWidth_32; 3013 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_left_33; 3015 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_top_34; 3017 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_width_35; 3019 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_height_36; 3021 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingLeft_37; 3023 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingTop_38; 3025 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingRight_39; 3027 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingBottom_40; 3029 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAlign_41; 3031 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_42; 3033 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_display_43; 3035 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_visibility_44; 3037 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_zIndex_45; 3039 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_letterSpacing_46; 3041 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_lineHeight_47; 3043 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textIndent_48; 3045 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_verticalAlign_49; 3047 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundAttachment_50; 3049 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginTop_51; 3051 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginRight_52; 3053 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginBottom_53; 3055 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginLeft_54; 3057 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clear_55; 3059 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleType_56; 3061 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStylePosition_57; 3063 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleImage_58; 3065 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_clipTop_59; 3067 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_clipRight_60; 3069 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_clipBottom_61; 3071 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_clipLeft_62; 3073 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflow_63; 3075 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakBefore_64; 3077 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakAfter_65; 3079 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cursor_66; 3081 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_tableLayout_67; 3083 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderCollapse_68; 3085 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_direction_69; 3087 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_behavior_70; 3089 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_71; 3091 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_unicodeBidi_72; 3093 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_right_73; 3095 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_bottom_74; 3097 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_imeMode_75; 3099 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_rubyAlign_76; 3101 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_rubyPosition_77; 3103 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_rubyOverhang_78; 3105 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAutospace_79; 3107 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lineBreak_80; 3109 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_wordBreak_81; 3111 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textJustify_82; 3113 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textJustifyTrim_83; 3115 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textKashida_84; 3117 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_blockDirection_85; 3119 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_layoutGridChar_86; 3121 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_layoutGridLine_87; 3123 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_layoutGridMode_88; 3125 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_layoutGridType_89; 3127 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderStyle_90; 3129 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderColor_91; 3131 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderWidth_92; 3133 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_padding_93; 3135 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_margin_94; 3137 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accelerator_95; 3139 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflowX_96; 3141 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflowY_97; 3143 internal delegate *unmanaged [Stdcall]<IHTMLCurrentStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textTransform_98; 3574 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue);
Windows.Win32.IHTMLDataTransfer.g.cs (57)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 124 private static winmdroot.Foundation.HRESULT setData(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* data, winmdroot.Foundation.VARIANT_BOOL* pret) 128 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 137 return (winmdroot.Foundation.HRESULT)ex.HResult; 144 ((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(); 151 private static winmdroot.Foundation.HRESULT getData(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* pvarRet) 155 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 164 return (winmdroot.Foundation.HRESULT)ex.HResult; 171 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), format, &__retVal).ThrowOnFailure(); 178 private static winmdroot.Foundation.HRESULT clearData(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR format, winmdroot.Foundation.VARIANT_BOOL* pret) 182 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 191 return (winmdroot.Foundation.HRESULT)ex.HResult; 198 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), format, &__retVal).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT put_dropEffect(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR v) 209 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return winmdroot.Foundation.HRESULT.S_OK; 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 227 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 232 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 240 private static winmdroot.Foundation.HRESULT get_dropEffect(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR* p) 244 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 250 return winmdroot.Foundation.HRESULT.S_OK; 254 return (winmdroot.Foundation.HRESULT)ex.HResult; 261 private static winmdroot.Foundation.HRESULT put_effectAllowed(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR v) 265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 271 return winmdroot.Foundation.HRESULT.S_OK; 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 283 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 288 ((delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDataTransfer*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 296 private static winmdroot.Foundation.HRESULT get_effectAllowed(IHTMLDataTransfer* pThis, winmdroot.Foundation.BSTR* p) 300 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 306 return winmdroot.Foundation.HRESULT.S_OK; 310 return (winmdroot.Foundation.HRESULT)ex.HResult; 314 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 318 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 335 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 341 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 343 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 345 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 347 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 349 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> setData_8; 351 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getData_9; 353 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> clearData_10; 355 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dropEffect_11; 357 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dropEffect_12; 359 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_effectAllowed_13; 361 internal delegate *unmanaged [Stdcall]<IHTMLDataTransfer*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_effectAllowed_14; 393 unsafe winmdroot.Foundation.HRESULT setData(winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* data, winmdroot.Foundation.VARIANT_BOOL* pret); 396 unsafe winmdroot.Foundation.HRESULT getData(winmdroot.Foundation.BSTR format, winmdroot.System.Variant.VARIANT* pvarRet); 399 unsafe winmdroot.Foundation.HRESULT clearData(winmdroot.Foundation.BSTR format, winmdroot.Foundation.VARIANT_BOOL* pret);
Windows.Win32.IHTMLDocument.g.cs (22)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLDocument*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDocument*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLDocument*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDocument*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLDocument*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDocument*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLDocument*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLDocument*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLDocument*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLDocument*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_Script(IHTMLDocument* pThis, winmdroot.System.Com.IDispatch** p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 public unsafe winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p) 133 return ((delegate *unmanaged [Stdcall]<IHTMLDocument*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDocument*)Unsafe.AsPointer(ref this), p); 136 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 140 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 157 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 163 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 165 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 167 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 169 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 171 internal delegate *unmanaged [Stdcall]<IHTMLDocument*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Script_8; 197 unsafe winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p);
Windows.Win32.IHTMLDocument2.g.cs (716)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDocument2*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDocument2*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDocument2*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLDocument2*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLDocument2*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_Script(IHTMLDocument2* pThis, winmdroot.System.Com.IDispatch** p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 public unsafe winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p) 133 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 139 private static winmdroot.Foundation.HRESULT get_all(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 143 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 156 public unsafe winmdroot.Foundation.HRESULT get_all(winmdroot.Web.MsHtml.IHTMLElementCollection** p) 158 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 164 private static winmdroot.Foundation.HRESULT get_body(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 168 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 181 public unsafe winmdroot.Foundation.HRESULT get_body(winmdroot.Web.MsHtml.IHTMLElement** p) 183 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 189 private static winmdroot.Foundation.HRESULT get_activeElement(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 193 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 public unsafe winmdroot.Foundation.HRESULT get_activeElement(winmdroot.Web.MsHtml.IHTMLElement** p) 208 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 214 private static winmdroot.Foundation.HRESULT get_images(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 218 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 227 return (winmdroot.Foundation.HRESULT)ex.HResult; 231 public unsafe winmdroot.Foundation.HRESULT get_images(winmdroot.Web.MsHtml.IHTMLElementCollection** p) 233 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 239 private static winmdroot.Foundation.HRESULT get_applets(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 243 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 249 return winmdroot.Foundation.HRESULT.S_OK; 253 return (winmdroot.Foundation.HRESULT)ex.HResult; 262 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 270 private static winmdroot.Foundation.HRESULT get_links(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 274 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 283 return (winmdroot.Foundation.HRESULT)ex.HResult; 287 public unsafe winmdroot.Foundation.HRESULT get_links(winmdroot.Web.MsHtml.IHTMLElementCollection** p) 289 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 295 private static winmdroot.Foundation.HRESULT get_forms(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 299 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 308 return (winmdroot.Foundation.HRESULT)ex.HResult; 312 public unsafe winmdroot.Foundation.HRESULT get_forms(winmdroot.Web.MsHtml.IHTMLElementCollection** p) 314 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 320 private static winmdroot.Foundation.HRESULT get_anchors(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 324 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 330 return winmdroot.Foundation.HRESULT.S_OK; 334 return (winmdroot.Foundation.HRESULT)ex.HResult; 343 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 351 private static winmdroot.Foundation.HRESULT put_title(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 355 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 364 return (winmdroot.Foundation.HRESULT)ex.HResult; 368 public winmdroot.Foundation.HRESULT put_title(winmdroot.Foundation.BSTR v) 370 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 376 private static winmdroot.Foundation.HRESULT get_title(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 380 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 389 return (winmdroot.Foundation.HRESULT)ex.HResult; 393 public unsafe winmdroot.Foundation.HRESULT get_title(winmdroot.Foundation.BSTR* p) 395 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 401 private static winmdroot.Foundation.HRESULT get_scripts(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 405 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 411 return winmdroot.Foundation.HRESULT.S_OK; 415 return (winmdroot.Foundation.HRESULT)ex.HResult; 424 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 432 private static winmdroot.Foundation.HRESULT put_designMode(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 436 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 442 return winmdroot.Foundation.HRESULT.S_OK; 446 return (winmdroot.Foundation.HRESULT)ex.HResult; 454 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 459 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 467 private static winmdroot.Foundation.HRESULT get_designMode(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 471 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 477 return winmdroot.Foundation.HRESULT.S_OK; 481 return (winmdroot.Foundation.HRESULT)ex.HResult; 488 private static winmdroot.Foundation.HRESULT get_selection(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLSelectionObject** p) 492 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 498 return winmdroot.Foundation.HRESULT.S_OK; 502 return (winmdroot.Foundation.HRESULT)ex.HResult; 511 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLSelectionObject** ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 519 private static winmdroot.Foundation.HRESULT get_readyState(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 523 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 529 return winmdroot.Foundation.HRESULT.S_OK; 533 return (winmdroot.Foundation.HRESULT)ex.HResult; 542 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 550 private static winmdroot.Foundation.HRESULT get_frames(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLFramesCollection2** p) 554 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 560 return winmdroot.Foundation.HRESULT.S_OK; 564 return (winmdroot.Foundation.HRESULT)ex.HResult; 573 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLFramesCollection2** ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 581 private static winmdroot.Foundation.HRESULT get_embeds(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 585 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 591 return winmdroot.Foundation.HRESULT.S_OK; 595 return (winmdroot.Foundation.HRESULT)ex.HResult; 604 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 612 private static winmdroot.Foundation.HRESULT get_plugins(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLElementCollection** p) 616 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 622 return winmdroot.Foundation.HRESULT.S_OK; 626 return (winmdroot.Foundation.HRESULT)ex.HResult; 635 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 643 private static winmdroot.Foundation.HRESULT put_alinkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 647 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 656 return (winmdroot.Foundation.HRESULT)ex.HResult; 660 public winmdroot.Foundation.HRESULT put_alinkColor(winmdroot.System.Variant.VARIANT v) 662 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 666 internal unsafe winmdroot.Foundation.HRESULT get_alinkColor(out winmdroot.System.Variant.VARIANT p) 670 winmdroot.Foundation.HRESULT __result = this.get_alinkColor(pLocal); 678 private static winmdroot.Foundation.HRESULT get_alinkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 682 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 691 return (winmdroot.Foundation.HRESULT)ex.HResult; 695 public unsafe winmdroot.Foundation.HRESULT get_alinkColor(winmdroot.System.Variant.VARIANT* p) 697 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 703 private static winmdroot.Foundation.HRESULT put_bgColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 707 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 716 return (winmdroot.Foundation.HRESULT)ex.HResult; 720 public winmdroot.Foundation.HRESULT put_bgColor(winmdroot.System.Variant.VARIANT v) 722 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 726 internal unsafe winmdroot.Foundation.HRESULT get_bgColor(out winmdroot.System.Variant.VARIANT p) 730 winmdroot.Foundation.HRESULT __result = this.get_bgColor(pLocal); 738 private static winmdroot.Foundation.HRESULT get_bgColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 742 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 751 return (winmdroot.Foundation.HRESULT)ex.HResult; 755 public unsafe winmdroot.Foundation.HRESULT get_bgColor(winmdroot.System.Variant.VARIANT* p) 757 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 763 private static winmdroot.Foundation.HRESULT put_fgColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 767 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 776 return (winmdroot.Foundation.HRESULT)ex.HResult; 780 public winmdroot.Foundation.HRESULT put_fgColor(winmdroot.System.Variant.VARIANT v) 782 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 786 internal unsafe winmdroot.Foundation.HRESULT get_fgColor(out winmdroot.System.Variant.VARIANT p) 790 winmdroot.Foundation.HRESULT __result = this.get_fgColor(pLocal); 798 private static winmdroot.Foundation.HRESULT get_fgColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 802 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 811 return (winmdroot.Foundation.HRESULT)ex.HResult; 815 public unsafe winmdroot.Foundation.HRESULT get_fgColor(winmdroot.System.Variant.VARIANT* p) 817 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 823 private static winmdroot.Foundation.HRESULT put_linkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 827 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 836 return (winmdroot.Foundation.HRESULT)ex.HResult; 840 public winmdroot.Foundation.HRESULT put_linkColor(winmdroot.System.Variant.VARIANT v) 842 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 846 internal unsafe winmdroot.Foundation.HRESULT get_linkColor(out winmdroot.System.Variant.VARIANT p) 850 winmdroot.Foundation.HRESULT __result = this.get_linkColor(pLocal); 858 private static winmdroot.Foundation.HRESULT get_linkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 862 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 871 return (winmdroot.Foundation.HRESULT)ex.HResult; 875 public unsafe winmdroot.Foundation.HRESULT get_linkColor(winmdroot.System.Variant.VARIANT* p) 877 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 883 private static winmdroot.Foundation.HRESULT put_vlinkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 887 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 896 return (winmdroot.Foundation.HRESULT)ex.HResult; 900 public winmdroot.Foundation.HRESULT put_vlinkColor(winmdroot.System.Variant.VARIANT v) 902 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 906 internal unsafe winmdroot.Foundation.HRESULT get_vlinkColor(out winmdroot.System.Variant.VARIANT p) 910 winmdroot.Foundation.HRESULT __result = this.get_vlinkColor(pLocal); 918 private static winmdroot.Foundation.HRESULT get_vlinkColor(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 922 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 931 return (winmdroot.Foundation.HRESULT)ex.HResult; 935 public unsafe winmdroot.Foundation.HRESULT get_vlinkColor(winmdroot.System.Variant.VARIANT* p) 937 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 943 private static winmdroot.Foundation.HRESULT get_referrer(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 947 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 953 return winmdroot.Foundation.HRESULT.S_OK; 957 return (winmdroot.Foundation.HRESULT)ex.HResult; 966 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 974 private static winmdroot.Foundation.HRESULT get_location(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLLocation** p) 978 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 987 return (winmdroot.Foundation.HRESULT)ex.HResult; 991 public unsafe winmdroot.Foundation.HRESULT get_location(winmdroot.Web.MsHtml.IHTMLLocation** p) 993 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLLocation** ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 999 private static winmdroot.Foundation.HRESULT get_lastModified(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1003 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1009 return winmdroot.Foundation.HRESULT.S_OK; 1013 return (winmdroot.Foundation.HRESULT)ex.HResult; 1022 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1030 private static winmdroot.Foundation.HRESULT put_URL(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1034 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1040 return winmdroot.Foundation.HRESULT.S_OK; 1044 return (winmdroot.Foundation.HRESULT)ex.HResult; 1052 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1057 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1065 private static winmdroot.Foundation.HRESULT get_URL(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1069 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1075 return winmdroot.Foundation.HRESULT.S_OK; 1079 return (winmdroot.Foundation.HRESULT)ex.HResult; 1086 private static winmdroot.Foundation.HRESULT put_domain(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1090 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1099 return (winmdroot.Foundation.HRESULT)ex.HResult; 1103 public winmdroot.Foundation.HRESULT put_domain(winmdroot.Foundation.BSTR v) 1105 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1111 private static winmdroot.Foundation.HRESULT get_domain(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1115 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1124 return (winmdroot.Foundation.HRESULT)ex.HResult; 1128 public unsafe winmdroot.Foundation.HRESULT get_domain(winmdroot.Foundation.BSTR* p) 1130 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1136 private static winmdroot.Foundation.HRESULT put_cookie(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1140 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1149 return (winmdroot.Foundation.HRESULT)ex.HResult; 1153 public winmdroot.Foundation.HRESULT put_cookie(winmdroot.Foundation.BSTR v) 1155 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1161 private static winmdroot.Foundation.HRESULT get_cookie(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1165 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1174 return (winmdroot.Foundation.HRESULT)ex.HResult; 1178 public unsafe winmdroot.Foundation.HRESULT get_cookie(winmdroot.Foundation.BSTR* p) 1180 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1186 private static winmdroot.Foundation.HRESULT put_expando(IHTMLDocument2* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1190 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1196 return winmdroot.Foundation.HRESULT.S_OK; 1200 return (winmdroot.Foundation.HRESULT)ex.HResult; 1208 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1213 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1221 private static winmdroot.Foundation.HRESULT get_expando(IHTMLDocument2* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1225 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1231 return winmdroot.Foundation.HRESULT.S_OK; 1235 return (winmdroot.Foundation.HRESULT)ex.HResult; 1242 private static winmdroot.Foundation.HRESULT put_charset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1246 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1255 return (winmdroot.Foundation.HRESULT)ex.HResult; 1259 public winmdroot.Foundation.HRESULT put_charset(winmdroot.Foundation.BSTR v) 1261 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1267 private static winmdroot.Foundation.HRESULT get_charset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1271 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1280 return (winmdroot.Foundation.HRESULT)ex.HResult; 1284 public unsafe winmdroot.Foundation.HRESULT get_charset(winmdroot.Foundation.BSTR* p) 1286 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1292 private static winmdroot.Foundation.HRESULT put_defaultCharset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR v) 1296 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1305 return (winmdroot.Foundation.HRESULT)ex.HResult; 1309 public winmdroot.Foundation.HRESULT put_defaultCharset(winmdroot.Foundation.BSTR v) 1311 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLDocument2*)Unsafe.AsPointer(ref this), v); 1317 private static winmdroot.Foundation.HRESULT get_defaultCharset(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1321 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1330 return (winmdroot.Foundation.HRESULT)ex.HResult; 1334 public unsafe winmdroot.Foundation.HRESULT get_defaultCharset(winmdroot.Foundation.BSTR* p) 1336 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1342 private static winmdroot.Foundation.HRESULT get_mimeType(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1346 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1355 return (winmdroot.Foundation.HRESULT)ex.HResult; 1359 public unsafe winmdroot.Foundation.HRESULT get_mimeType(winmdroot.Foundation.BSTR* p) 1361 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 1367 private static winmdroot.Foundation.HRESULT get_fileSize(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1371 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1377 return winmdroot.Foundation.HRESULT.S_OK; 1381 return (winmdroot.Foundation.HRESULT)ex.HResult; 1390 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1398 private static winmdroot.Foundation.HRESULT get_fileCreatedDate(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1402 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1408 return winmdroot.Foundation.HRESULT.S_OK; 1412 return (winmdroot.Foundation.HRESULT)ex.HResult; 1421 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1429 private static winmdroot.Foundation.HRESULT get_fileModifiedDate(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1433 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1439 return winmdroot.Foundation.HRESULT.S_OK; 1443 return (winmdroot.Foundation.HRESULT)ex.HResult; 1452 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1460 private static winmdroot.Foundation.HRESULT get_fileUpdatedDate(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1464 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1470 return winmdroot.Foundation.HRESULT.S_OK; 1474 return (winmdroot.Foundation.HRESULT)ex.HResult; 1483 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1491 private static winmdroot.Foundation.HRESULT get_security(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1495 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1501 return winmdroot.Foundation.HRESULT.S_OK; 1505 return (winmdroot.Foundation.HRESULT)ex.HResult; 1514 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1522 private static winmdroot.Foundation.HRESULT get_protocol(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1526 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1532 return winmdroot.Foundation.HRESULT.S_OK; 1536 return (winmdroot.Foundation.HRESULT)ex.HResult; 1545 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1553 private static winmdroot.Foundation.HRESULT get_nameProp(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* p) 1557 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1563 return winmdroot.Foundation.HRESULT.S_OK; 1567 return (winmdroot.Foundation.HRESULT)ex.HResult; 1576 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1584 private static winmdroot.Foundation.HRESULT write(IHTMLDocument2* pThis, winmdroot.System.Com.SAFEARRAY* psarray) 1588 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1597 return (winmdroot.Foundation.HRESULT)ex.HResult; 1601 public unsafe winmdroot.Foundation.HRESULT write(winmdroot.System.Com.SAFEARRAY* psarray) 1603 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLDocument2*)Unsafe.AsPointer(ref this), psarray); 1609 private static winmdroot.Foundation.HRESULT writeln(IHTMLDocument2* pThis, winmdroot.System.Com.SAFEARRAY* psarray) 1613 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1622 return (winmdroot.Foundation.HRESULT)ex.HResult; 1628 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLDocument2*)Unsafe.AsPointer(ref this), psarray).ThrowOnFailure(); 1634 private static winmdroot.Foundation.HRESULT open(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT features, winmdroot.System.Variant.VARIANT replace, winmdroot.System.Com.IDispatch** pomWindowResult) 1638 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1647 return (winmdroot.Foundation.HRESULT)ex.HResult; 1651 public unsafe winmdroot.Foundation.HRESULT open(winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT features, winmdroot.System.Variant.VARIANT replace, winmdroot.System.Com.IDispatch** pomWindowResult) 1653 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLDocument2*)Unsafe.AsPointer(ref this), url, name, features, replace, pomWindowResult); 1659 private static winmdroot.Foundation.HRESULT close(IHTMLDocument2* pThis) 1663 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1672 return (winmdroot.Foundation.HRESULT)ex.HResult; 1678 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLDocument2*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1684 private static winmdroot.Foundation.HRESULT clear(IHTMLDocument2* pThis) 1688 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1697 return (winmdroot.Foundation.HRESULT)ex.HResult; 1703 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLDocument2*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1709 private static winmdroot.Foundation.HRESULT queryCommandSupported(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1713 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1722 return (winmdroot.Foundation.HRESULT)ex.HResult; 1729 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1736 private static winmdroot.Foundation.HRESULT queryCommandEnabled(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1740 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1749 return (winmdroot.Foundation.HRESULT)ex.HResult; 1756 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1763 private static winmdroot.Foundation.HRESULT queryCommandState(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1767 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1776 return (winmdroot.Foundation.HRESULT)ex.HResult; 1783 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1790 private static winmdroot.Foundation.HRESULT queryCommandIndeterm(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1794 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1803 return (winmdroot.Foundation.HRESULT)ex.HResult; 1810 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1817 private static winmdroot.Foundation.HRESULT queryCommandText(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.BSTR* pcmdText) 1821 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1830 return (winmdroot.Foundation.HRESULT)ex.HResult; 1837 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1844 private static winmdroot.Foundation.HRESULT queryCommandValue(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.System.Variant.VARIANT* pcmdValue) 1848 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1857 return (winmdroot.Foundation.HRESULT)ex.HResult; 1864 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1869 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) 1873 winmdroot.Foundation.HRESULT __result = this.execCommand(cmdID, showUI, value, pfRetLocal); 1881 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) 1885 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1894 return (winmdroot.Foundation.HRESULT)ex.HResult; 1898 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) 1900 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); 1906 private static winmdroot.Foundation.HRESULT execCommandShowHelp(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1910 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1919 return (winmdroot.Foundation.HRESULT)ex.HResult; 1926 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLDocument2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1933 private static winmdroot.Foundation.HRESULT createElement(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR eTag, winmdroot.Web.MsHtml.IHTMLElement** newElem) 1937 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1946 return (winmdroot.Foundation.HRESULT)ex.HResult; 1950 public unsafe winmdroot.Foundation.HRESULT createElement(winmdroot.Foundation.BSTR eTag, winmdroot.Web.MsHtml.IHTMLElement** newElem) 1952 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLDocument2*)Unsafe.AsPointer(ref this), eTag, newElem); 1958 private static winmdroot.Foundation.HRESULT put_onhelp(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 1962 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1968 return winmdroot.Foundation.HRESULT.S_OK; 1972 return (winmdroot.Foundation.HRESULT)ex.HResult; 1980 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1985 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1993 private static winmdroot.Foundation.HRESULT get_onhelp(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 1997 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2003 return winmdroot.Foundation.HRESULT.S_OK; 2007 return (winmdroot.Foundation.HRESULT)ex.HResult; 2014 private static winmdroot.Foundation.HRESULT put_onclick(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2018 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2024 return winmdroot.Foundation.HRESULT.S_OK; 2028 return (winmdroot.Foundation.HRESULT)ex.HResult; 2036 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2041 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2049 private static winmdroot.Foundation.HRESULT get_onclick(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2053 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2059 return winmdroot.Foundation.HRESULT.S_OK; 2063 return (winmdroot.Foundation.HRESULT)ex.HResult; 2070 private static winmdroot.Foundation.HRESULT put_ondblclick(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2074 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2080 return winmdroot.Foundation.HRESULT.S_OK; 2084 return (winmdroot.Foundation.HRESULT)ex.HResult; 2092 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2097 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2105 private static winmdroot.Foundation.HRESULT get_ondblclick(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2109 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2115 return winmdroot.Foundation.HRESULT.S_OK; 2119 return (winmdroot.Foundation.HRESULT)ex.HResult; 2126 private static winmdroot.Foundation.HRESULT put_onkeyup(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2130 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2136 return winmdroot.Foundation.HRESULT.S_OK; 2140 return (winmdroot.Foundation.HRESULT)ex.HResult; 2148 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2153 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2161 private static winmdroot.Foundation.HRESULT get_onkeyup(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2165 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2171 return winmdroot.Foundation.HRESULT.S_OK; 2175 return (winmdroot.Foundation.HRESULT)ex.HResult; 2182 private static winmdroot.Foundation.HRESULT put_onkeydown(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2186 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2192 return winmdroot.Foundation.HRESULT.S_OK; 2196 return (winmdroot.Foundation.HRESULT)ex.HResult; 2204 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2209 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2217 private static winmdroot.Foundation.HRESULT get_onkeydown(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2221 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2227 return winmdroot.Foundation.HRESULT.S_OK; 2231 return (winmdroot.Foundation.HRESULT)ex.HResult; 2238 private static winmdroot.Foundation.HRESULT put_onkeypress(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2242 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2248 return winmdroot.Foundation.HRESULT.S_OK; 2252 return (winmdroot.Foundation.HRESULT)ex.HResult; 2260 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2265 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2273 private static winmdroot.Foundation.HRESULT get_onkeypress(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2277 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2283 return winmdroot.Foundation.HRESULT.S_OK; 2287 return (winmdroot.Foundation.HRESULT)ex.HResult; 2294 private static winmdroot.Foundation.HRESULT put_onmouseup(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2298 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2304 return winmdroot.Foundation.HRESULT.S_OK; 2308 return (winmdroot.Foundation.HRESULT)ex.HResult; 2316 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2321 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2329 private static winmdroot.Foundation.HRESULT get_onmouseup(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2333 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2339 return winmdroot.Foundation.HRESULT.S_OK; 2343 return (winmdroot.Foundation.HRESULT)ex.HResult; 2350 private static winmdroot.Foundation.HRESULT put_onmousedown(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2354 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2360 return winmdroot.Foundation.HRESULT.S_OK; 2364 return (winmdroot.Foundation.HRESULT)ex.HResult; 2372 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2377 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2385 private static winmdroot.Foundation.HRESULT get_onmousedown(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2389 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2395 return winmdroot.Foundation.HRESULT.S_OK; 2399 return (winmdroot.Foundation.HRESULT)ex.HResult; 2406 private static winmdroot.Foundation.HRESULT put_onmousemove(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2410 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2416 return winmdroot.Foundation.HRESULT.S_OK; 2420 return (winmdroot.Foundation.HRESULT)ex.HResult; 2428 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2433 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2441 private static winmdroot.Foundation.HRESULT get_onmousemove(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2445 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2451 return winmdroot.Foundation.HRESULT.S_OK; 2455 return (winmdroot.Foundation.HRESULT)ex.HResult; 2462 private static winmdroot.Foundation.HRESULT put_onmouseout(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2466 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2472 return winmdroot.Foundation.HRESULT.S_OK; 2476 return (winmdroot.Foundation.HRESULT)ex.HResult; 2484 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2489 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2497 private static winmdroot.Foundation.HRESULT get_onmouseout(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2501 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2507 return winmdroot.Foundation.HRESULT.S_OK; 2511 return (winmdroot.Foundation.HRESULT)ex.HResult; 2518 private static winmdroot.Foundation.HRESULT put_onmouseover(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2522 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2528 return winmdroot.Foundation.HRESULT.S_OK; 2532 return (winmdroot.Foundation.HRESULT)ex.HResult; 2540 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2545 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2553 private static winmdroot.Foundation.HRESULT get_onmouseover(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2557 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2563 return winmdroot.Foundation.HRESULT.S_OK; 2567 return (winmdroot.Foundation.HRESULT)ex.HResult; 2574 private static winmdroot.Foundation.HRESULT put_onreadystatechange(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2578 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2584 return winmdroot.Foundation.HRESULT.S_OK; 2588 return (winmdroot.Foundation.HRESULT)ex.HResult; 2596 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[95])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2601 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[96])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2609 private static winmdroot.Foundation.HRESULT get_onreadystatechange(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2613 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2619 return winmdroot.Foundation.HRESULT.S_OK; 2623 return (winmdroot.Foundation.HRESULT)ex.HResult; 2630 private static winmdroot.Foundation.HRESULT put_onafterupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2634 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2640 return winmdroot.Foundation.HRESULT.S_OK; 2644 return (winmdroot.Foundation.HRESULT)ex.HResult; 2652 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[97])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2657 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[98])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2665 private static winmdroot.Foundation.HRESULT get_onafterupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2669 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2675 return winmdroot.Foundation.HRESULT.S_OK; 2679 return (winmdroot.Foundation.HRESULT)ex.HResult; 2686 private static winmdroot.Foundation.HRESULT put_onrowexit(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2690 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2696 return winmdroot.Foundation.HRESULT.S_OK; 2700 return (winmdroot.Foundation.HRESULT)ex.HResult; 2708 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[99])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2713 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[100])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2721 private static winmdroot.Foundation.HRESULT get_onrowexit(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2725 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2731 return winmdroot.Foundation.HRESULT.S_OK; 2735 return (winmdroot.Foundation.HRESULT)ex.HResult; 2742 private static winmdroot.Foundation.HRESULT put_onrowenter(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2746 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2752 return winmdroot.Foundation.HRESULT.S_OK; 2756 return (winmdroot.Foundation.HRESULT)ex.HResult; 2764 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[101])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2769 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[102])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2777 private static winmdroot.Foundation.HRESULT get_onrowenter(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2781 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2787 return winmdroot.Foundation.HRESULT.S_OK; 2791 return (winmdroot.Foundation.HRESULT)ex.HResult; 2798 private static winmdroot.Foundation.HRESULT put_ondragstart(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2802 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2808 return winmdroot.Foundation.HRESULT.S_OK; 2812 return (winmdroot.Foundation.HRESULT)ex.HResult; 2820 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[103])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2825 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[104])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2833 private static winmdroot.Foundation.HRESULT get_ondragstart(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2837 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2843 return winmdroot.Foundation.HRESULT.S_OK; 2847 return (winmdroot.Foundation.HRESULT)ex.HResult; 2854 private static winmdroot.Foundation.HRESULT put_onselectstart(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2858 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2864 return winmdroot.Foundation.HRESULT.S_OK; 2868 return (winmdroot.Foundation.HRESULT)ex.HResult; 2876 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[105])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2881 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[106])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2889 private static winmdroot.Foundation.HRESULT get_onselectstart(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 2893 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2899 return winmdroot.Foundation.HRESULT.S_OK; 2903 return (winmdroot.Foundation.HRESULT)ex.HResult; 2910 private static winmdroot.Foundation.HRESULT elementFromPoint(IHTMLDocument2* pThis, int x, int y, winmdroot.Web.MsHtml.IHTMLElement** elementHit) 2914 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2923 return (winmdroot.Foundation.HRESULT)ex.HResult; 2927 public unsafe winmdroot.Foundation.HRESULT elementFromPoint(int x, int y, winmdroot.Web.MsHtml.IHTMLElement** elementHit) 2929 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,int ,int ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[107])((IHTMLDocument2*)Unsafe.AsPointer(ref this), x, y, elementHit); 2935 private static winmdroot.Foundation.HRESULT get_parentWindow(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLWindow2** p) 2939 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2948 return (winmdroot.Foundation.HRESULT)ex.HResult; 2952 public unsafe winmdroot.Foundation.HRESULT get_parentWindow(winmdroot.Web.MsHtml.IHTMLWindow2** p) 2954 return ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[108])((IHTMLDocument2*)Unsafe.AsPointer(ref this), p); 2960 private static winmdroot.Foundation.HRESULT get_styleSheets(IHTMLDocument2* pThis, winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** p) 2964 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2970 return winmdroot.Foundation.HRESULT.S_OK; 2974 return (winmdroot.Foundation.HRESULT)ex.HResult; 2983 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[109])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2991 private static winmdroot.Foundation.HRESULT put_onbeforeupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 2995 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3001 return winmdroot.Foundation.HRESULT.S_OK; 3005 return (winmdroot.Foundation.HRESULT)ex.HResult; 3013 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[110])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3018 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[111])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3026 private static winmdroot.Foundation.HRESULT get_onbeforeupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 3030 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3036 return winmdroot.Foundation.HRESULT.S_OK; 3040 return (winmdroot.Foundation.HRESULT)ex.HResult; 3047 private static winmdroot.Foundation.HRESULT put_onerrorupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT v) 3051 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3057 return winmdroot.Foundation.HRESULT.S_OK; 3061 return (winmdroot.Foundation.HRESULT)ex.HResult; 3069 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[112])((IHTMLDocument2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3074 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[113])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3082 private static winmdroot.Foundation.HRESULT get_onerrorupdate(IHTMLDocument2* pThis, winmdroot.System.Variant.VARIANT* p) 3086 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3092 return winmdroot.Foundation.HRESULT.S_OK; 3096 return (winmdroot.Foundation.HRESULT)ex.HResult; 3103 private static winmdroot.Foundation.HRESULT toString(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR* String) 3107 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3116 return (winmdroot.Foundation.HRESULT)ex.HResult; 3123 ((delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[114])((IHTMLDocument2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 3130 private static winmdroot.Foundation.HRESULT createStyleSheet(IHTMLDocument2* pThis, winmdroot.Foundation.BSTR bstrHref, int lIndex, winmdroot.Web.MsHtml.IHTMLStyleSheet** ppnewStyleSheet) 3134 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3143 return (winmdroot.Foundation.HRESULT)ex.HResult; 3150 ((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(); 3154 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 3158 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 3175 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 3181 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 3183 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 3185 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 3187 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 3189 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Script_8; 3191 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_all_9; 3193 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_body_10; 3195 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_activeElement_11; 3197 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_images_12; 3199 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_applets_13; 3201 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_links_14; 3203 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_forms_15; 3205 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_anchors_16; 3207 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_title_17; 3209 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_title_18; 3211 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_scripts_19; 3213 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_designMode_20; 3215 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_designMode_21; 3217 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLSelectionObject** ,winmdroot.Foundation.HRESULT> get_selection_22; 3219 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_readyState_23; 3221 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLFramesCollection2** ,winmdroot.Foundation.HRESULT> get_frames_24; 3223 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_embeds_25; 3225 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> get_plugins_26; 3227 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_alinkColor_27; 3229 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_alinkColor_28; 3231 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_bgColor_29; 3233 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_bgColor_30; 3235 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_fgColor_31; 3237 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_fgColor_32; 3239 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_linkColor_33; 3241 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_linkColor_34; 3243 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_vlinkColor_35; 3245 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_vlinkColor_36; 3247 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_referrer_37; 3249 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLLocation** ,winmdroot.Foundation.HRESULT> get_location_38; 3251 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lastModified_39; 3253 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_URL_40; 3255 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_URL_41; 3257 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_domain_42; 3259 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_domain_43; 3261 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cookie_44; 3263 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cookie_45; 3265 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_expando_46; 3267 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_expando_47; 3269 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_charset_48; 3271 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_charset_49; 3273 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_defaultCharset_50; 3275 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_defaultCharset_51; 3277 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_mimeType_52; 3279 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileSize_53; 3281 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileCreatedDate_54; 3283 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileModifiedDate_55; 3285 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileUpdatedDate_56; 3287 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_security_57; 3289 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_protocol_58; 3291 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_nameProp_59; 3293 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> write_60; 3295 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> writeln_61; 3297 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> open_62; 3299 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.HRESULT> close_63; 3301 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.HRESULT> clear_64; 3303 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandSupported_65; 3305 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandEnabled_66; 3307 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandState_67; 3309 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> queryCommandIndeterm_68; 3311 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> queryCommandText_69; 3313 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> queryCommandValue_70; 3315 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; 3317 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> execCommandShowHelp_72; 3319 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> createElement_73; 3321 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onhelp_74; 3323 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onhelp_75; 3325 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onclick_76; 3327 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onclick_77; 3329 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondblclick_78; 3331 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondblclick_79; 3333 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeyup_80; 3335 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeyup_81; 3337 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeydown_82; 3339 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeydown_83; 3341 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeypress_84; 3343 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeypress_85; 3345 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseup_86; 3347 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseup_87; 3349 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmousedown_88; 3351 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmousedown_89; 3353 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmousemove_90; 3355 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmousemove_91; 3357 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseout_92; 3359 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseout_93; 3361 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseover_94; 3363 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseover_95; 3365 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onreadystatechange_96; 3367 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onreadystatechange_97; 3369 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onafterupdate_98; 3371 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onafterupdate_99; 3373 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowexit_100; 3375 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowexit_101; 3377 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowenter_102; 3379 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowenter_103; 3381 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragstart_104; 3383 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragstart_105; 3385 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onselectstart_106; 3387 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onselectstart_107; 3389 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,int ,int ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> elementFromPoint_108; 3391 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> get_parentWindow_109; 3393 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** ,winmdroot.Foundation.HRESULT> get_styleSheets_110; 3395 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeupdate_111; 3397 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeupdate_112; 3399 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onerrorupdate_113; 3401 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onerrorupdate_114; 3403 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_115; 3405 internal delegate *unmanaged [Stdcall]<IHTMLDocument2*,winmdroot.Foundation.BSTR ,int ,winmdroot.Web.MsHtml.IHTMLStyleSheet** ,winmdroot.Foundation.HRESULT> createStyleSheet_116; 3539 unsafe new winmdroot.Foundation.HRESULT get_Script(winmdroot.System.Com.IDispatch** p); 3542 unsafe winmdroot.Foundation.HRESULT get_all(winmdroot.Web.MsHtml.IHTMLElementCollection** p); 3545 unsafe winmdroot.Foundation.HRESULT get_body(winmdroot.Web.MsHtml.IHTMLElement** p); 3548 unsafe winmdroot.Foundation.HRESULT get_activeElement(winmdroot.Web.MsHtml.IHTMLElement** p); 3551 unsafe winmdroot.Foundation.HRESULT get_images(winmdroot.Web.MsHtml.IHTMLElementCollection** p); 3559 unsafe winmdroot.Foundation.HRESULT get_links(winmdroot.Web.MsHtml.IHTMLElementCollection** p); 3562 unsafe winmdroot.Foundation.HRESULT get_forms(winmdroot.Web.MsHtml.IHTMLElementCollection** p); 3570winmdroot.Foundation.HRESULT put_title(winmdroot.Foundation.BSTR v); 3573 unsafe winmdroot.Foundation.HRESULT get_title(winmdroot.Foundation.BSTR* p); 3612winmdroot.Foundation.HRESULT put_alinkColor(winmdroot.System.Variant.VARIANT v); 3615 unsafe winmdroot.Foundation.HRESULT get_alinkColor(winmdroot.System.Variant.VARIANT* p); 3618winmdroot.Foundation.HRESULT put_bgColor(winmdroot.System.Variant.VARIANT v); 3621 unsafe winmdroot.Foundation.HRESULT get_bgColor(winmdroot.System.Variant.VARIANT* p); 3624winmdroot.Foundation.HRESULT put_fgColor(winmdroot.System.Variant.VARIANT v); 3627 unsafe winmdroot.Foundation.HRESULT get_fgColor(winmdroot.System.Variant.VARIANT* p); 3630winmdroot.Foundation.HRESULT put_linkColor(winmdroot.System.Variant.VARIANT v); 3633 unsafe winmdroot.Foundation.HRESULT get_linkColor(winmdroot.System.Variant.VARIANT* p); 3636winmdroot.Foundation.HRESULT put_vlinkColor(winmdroot.System.Variant.VARIANT v); 3639 unsafe winmdroot.Foundation.HRESULT get_vlinkColor(winmdroot.System.Variant.VARIANT* p); 3647 unsafe winmdroot.Foundation.HRESULT get_location(winmdroot.Web.MsHtml.IHTMLLocation** p); 3661winmdroot.Foundation.HRESULT put_domain(winmdroot.Foundation.BSTR v); 3664 unsafe winmdroot.Foundation.HRESULT get_domain(winmdroot.Foundation.BSTR* p); 3667winmdroot.Foundation.HRESULT put_cookie(winmdroot.Foundation.BSTR v); 3670 unsafe winmdroot.Foundation.HRESULT get_cookie(winmdroot.Foundation.BSTR* p); 3679winmdroot.Foundation.HRESULT put_charset(winmdroot.Foundation.BSTR v); 3682 unsafe winmdroot.Foundation.HRESULT get_charset(winmdroot.Foundation.BSTR* p); 3685winmdroot.Foundation.HRESULT put_defaultCharset(winmdroot.Foundation.BSTR v); 3688 unsafe winmdroot.Foundation.HRESULT get_defaultCharset(winmdroot.Foundation.BSTR* p); 3691 unsafe winmdroot.Foundation.HRESULT get_mimeType(winmdroot.Foundation.BSTR* p); 3729 unsafe winmdroot.Foundation.HRESULT write(winmdroot.System.Com.SAFEARRAY* psarray); 3732 unsafe winmdroot.Foundation.HRESULT writeln(winmdroot.System.Com.SAFEARRAY* psarray); 3735 unsafe winmdroot.Foundation.HRESULT open(winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT features, winmdroot.System.Variant.VARIANT replace, winmdroot.System.Com.IDispatch** pomWindowResult); 3738winmdroot.Foundation.HRESULT close(); 3741winmdroot.Foundation.HRESULT clear(); 3744 unsafe winmdroot.Foundation.HRESULT queryCommandSupported(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3747 unsafe winmdroot.Foundation.HRESULT queryCommandEnabled(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3750 unsafe winmdroot.Foundation.HRESULT queryCommandState(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3753 unsafe winmdroot.Foundation.HRESULT queryCommandIndeterm(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3756 unsafe winmdroot.Foundation.HRESULT queryCommandText(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.BSTR* pcmdText); 3759 unsafe winmdroot.Foundation.HRESULT queryCommandValue(winmdroot.Foundation.BSTR cmdID, winmdroot.System.Variant.VARIANT* pcmdValue); 3762 unsafe winmdroot.Foundation.HRESULT execCommand(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL showUI, winmdroot.System.Variant.VARIANT value, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3765 unsafe winmdroot.Foundation.HRESULT execCommandShowHelp(winmdroot.Foundation.BSTR cmdID, winmdroot.Foundation.VARIANT_BOOL* pfRet); 3768 unsafe winmdroot.Foundation.HRESULT createElement(winmdroot.Foundation.BSTR eTag, winmdroot.Web.MsHtml.IHTMLElement** newElem); 3873 unsafe winmdroot.Foundation.HRESULT elementFromPoint(int x, int y, winmdroot.Web.MsHtml.IHTMLElement** elementHit); 3876 unsafe winmdroot.Foundation.HRESULT get_parentWindow(winmdroot.Web.MsHtml.IHTMLWindow2** p); 3896 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String); 3899 unsafe winmdroot.Foundation.HRESULT createStyleSheet(winmdroot.Foundation.BSTR bstrHref, int lIndex, winmdroot.Web.MsHtml.IHTMLStyleSheet** ppnewStyleSheet);
Windows.Win32.IHTMLDocument3.g.cs (269)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDocument3*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDocument3*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDocument3*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLDocument3*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLDocument3*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT releaseCapture(IHTMLDocument3* pThis) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 133 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDocument3*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 139 private static winmdroot.Foundation.HRESULT recalc(IHTMLDocument3* pThis, winmdroot.Foundation.VARIANT_BOOL fForce) 143 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLDocument3*)Unsafe.AsPointer(ref this), fForce).ThrowOnFailure(); 164 private static winmdroot.Foundation.HRESULT createTextNode(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR text, winmdroot.Web.MsHtml.IHTMLDOMNode** newTextNode) 168 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 184 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDocument3*)Unsafe.AsPointer(ref this), text, &__retVal).ThrowOnFailure(); 191 private static winmdroot.Foundation.HRESULT get_documentElement(IHTMLDocument3* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 195 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 201 return winmdroot.Foundation.HRESULT.S_OK; 205 return (winmdroot.Foundation.HRESULT)ex.HResult; 214 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 222 private static winmdroot.Foundation.HRESULT get_uniqueID(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR* p) 226 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 232 return winmdroot.Foundation.HRESULT.S_OK; 236 return (winmdroot.Foundation.HRESULT)ex.HResult; 245 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 251 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 255 winmdroot.Foundation.HRESULT __result = this.attachEvent(@event, pDisp, pfResultLocal); 263 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 267 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 276 return (winmdroot.Foundation.HRESULT)ex.HResult; 280 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 282 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLDocument3*)Unsafe.AsPointer(ref this), @event, pDisp, pfResult); 288 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 292 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 301 return (winmdroot.Foundation.HRESULT)ex.HResult; 305 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 307 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDocument3*)Unsafe.AsPointer(ref this), @event, pDisp); 313 private static winmdroot.Foundation.HRESULT put_onrowsdelete(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 317 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 323 return winmdroot.Foundation.HRESULT.S_OK; 327 return (winmdroot.Foundation.HRESULT)ex.HResult; 335 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 340 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 348 private static winmdroot.Foundation.HRESULT get_onrowsdelete(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 352 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 358 return winmdroot.Foundation.HRESULT.S_OK; 362 return (winmdroot.Foundation.HRESULT)ex.HResult; 369 private static winmdroot.Foundation.HRESULT put_onrowsinserted(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 373 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 379 return winmdroot.Foundation.HRESULT.S_OK; 383 return (winmdroot.Foundation.HRESULT)ex.HResult; 391 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 396 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 404 private static winmdroot.Foundation.HRESULT get_onrowsinserted(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 408 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 414 return winmdroot.Foundation.HRESULT.S_OK; 418 return (winmdroot.Foundation.HRESULT)ex.HResult; 425 private static winmdroot.Foundation.HRESULT put_oncellchange(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 429 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 435 return winmdroot.Foundation.HRESULT.S_OK; 439 return (winmdroot.Foundation.HRESULT)ex.HResult; 447 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 452 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 460 private static winmdroot.Foundation.HRESULT get_oncellchange(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 464 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 470 return winmdroot.Foundation.HRESULT.S_OK; 474 return (winmdroot.Foundation.HRESULT)ex.HResult; 481 private static winmdroot.Foundation.HRESULT put_ondatasetchanged(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 485 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 491 return winmdroot.Foundation.HRESULT.S_OK; 495 return (winmdroot.Foundation.HRESULT)ex.HResult; 503 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 508 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 516 private static winmdroot.Foundation.HRESULT get_ondatasetchanged(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 520 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 526 return winmdroot.Foundation.HRESULT.S_OK; 530 return (winmdroot.Foundation.HRESULT)ex.HResult; 537 private static winmdroot.Foundation.HRESULT put_ondataavailable(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 541 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 547 return winmdroot.Foundation.HRESULT.S_OK; 551 return (winmdroot.Foundation.HRESULT)ex.HResult; 559 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 564 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 572 private static winmdroot.Foundation.HRESULT get_ondataavailable(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 576 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 582 return winmdroot.Foundation.HRESULT.S_OK; 586 return (winmdroot.Foundation.HRESULT)ex.HResult; 593 private static winmdroot.Foundation.HRESULT put_ondatasetcomplete(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 597 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 603 return winmdroot.Foundation.HRESULT.S_OK; 607 return (winmdroot.Foundation.HRESULT)ex.HResult; 615 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 620 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 628 private static winmdroot.Foundation.HRESULT get_ondatasetcomplete(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 632 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 638 return winmdroot.Foundation.HRESULT.S_OK; 642 return (winmdroot.Foundation.HRESULT)ex.HResult; 649 private static winmdroot.Foundation.HRESULT put_onpropertychange(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 653 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 659 return winmdroot.Foundation.HRESULT.S_OK; 663 return (winmdroot.Foundation.HRESULT)ex.HResult; 671 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 676 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 684 private static winmdroot.Foundation.HRESULT get_onpropertychange(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 688 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 694 return winmdroot.Foundation.HRESULT.S_OK; 698 return (winmdroot.Foundation.HRESULT)ex.HResult; 705 private static winmdroot.Foundation.HRESULT put_dir(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v) 709 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 718 return (winmdroot.Foundation.HRESULT)ex.HResult; 722 public winmdroot.Foundation.HRESULT put_dir(winmdroot.Foundation.BSTR v) 724 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v); 730 private static winmdroot.Foundation.HRESULT get_dir(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR* p) 734 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 743 return (winmdroot.Foundation.HRESULT)ex.HResult; 747 public unsafe winmdroot.Foundation.HRESULT get_dir(winmdroot.Foundation.BSTR* p) 749 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLDocument3*)Unsafe.AsPointer(ref this), p); 755 private static winmdroot.Foundation.HRESULT put_oncontextmenu(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 759 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 765 return winmdroot.Foundation.HRESULT.S_OK; 769 return (winmdroot.Foundation.HRESULT)ex.HResult; 777 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 782 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 790 private static winmdroot.Foundation.HRESULT get_oncontextmenu(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 794 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 800 return winmdroot.Foundation.HRESULT.S_OK; 804 return (winmdroot.Foundation.HRESULT)ex.HResult; 811 private static winmdroot.Foundation.HRESULT put_onstop(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 815 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 821 return winmdroot.Foundation.HRESULT.S_OK; 825 return (winmdroot.Foundation.HRESULT)ex.HResult; 833 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 838 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 846 private static winmdroot.Foundation.HRESULT get_onstop(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 850 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 856 return winmdroot.Foundation.HRESULT.S_OK; 860 return (winmdroot.Foundation.HRESULT)ex.HResult; 867 private static winmdroot.Foundation.HRESULT createDocumentFragment(IHTMLDocument3* pThis, winmdroot.Web.MsHtml.IHTMLDocument2** pNewDoc) 871 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 880 return (winmdroot.Foundation.HRESULT)ex.HResult; 887 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 894 private static winmdroot.Foundation.HRESULT get_parentDocument(IHTMLDocument3* pThis, winmdroot.Web.MsHtml.IHTMLDocument2** p) 898 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 904 return winmdroot.Foundation.HRESULT.S_OK; 908 return (winmdroot.Foundation.HRESULT)ex.HResult; 917 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 925 private static winmdroot.Foundation.HRESULT put_enableDownload(IHTMLDocument3* pThis, winmdroot.Foundation.VARIANT_BOOL v) 929 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 935 return winmdroot.Foundation.HRESULT.S_OK; 939 return (winmdroot.Foundation.HRESULT)ex.HResult; 947 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 952 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 960 private static winmdroot.Foundation.HRESULT get_enableDownload(IHTMLDocument3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 964 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 970 return winmdroot.Foundation.HRESULT.S_OK; 974 return (winmdroot.Foundation.HRESULT)ex.HResult; 981 private static winmdroot.Foundation.HRESULT put_baseUrl(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v) 985 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 991 return winmdroot.Foundation.HRESULT.S_OK; 995 return (winmdroot.Foundation.HRESULT)ex.HResult; 1003 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1008 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1016 private static winmdroot.Foundation.HRESULT get_baseUrl(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR* p) 1020 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1026 return winmdroot.Foundation.HRESULT.S_OK; 1030 return (winmdroot.Foundation.HRESULT)ex.HResult; 1037 private static winmdroot.Foundation.HRESULT get_childNodes(IHTMLDocument3* pThis, winmdroot.System.Com.IDispatch** p) 1041 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1047 return winmdroot.Foundation.HRESULT.S_OK; 1051 return (winmdroot.Foundation.HRESULT)ex.HResult; 1060 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1068 private static winmdroot.Foundation.HRESULT put_inheritStyleSheets(IHTMLDocument3* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1072 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1078 return winmdroot.Foundation.HRESULT.S_OK; 1082 return (winmdroot.Foundation.HRESULT)ex.HResult; 1090 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1095 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1103 private static winmdroot.Foundation.HRESULT get_inheritStyleSheets(IHTMLDocument3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1107 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1113 return winmdroot.Foundation.HRESULT.S_OK; 1117 return (winmdroot.Foundation.HRESULT)ex.HResult; 1124 private static winmdroot.Foundation.HRESULT put_onbeforeeditfocus(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT v) 1128 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1134 return winmdroot.Foundation.HRESULT.S_OK; 1138 return (winmdroot.Foundation.HRESULT)ex.HResult; 1146 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLDocument3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1151 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLDocument3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1159 private static winmdroot.Foundation.HRESULT get_onbeforeeditfocus(IHTMLDocument3* pThis, winmdroot.System.Variant.VARIANT* p) 1163 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1169 return winmdroot.Foundation.HRESULT.S_OK; 1173 return (winmdroot.Foundation.HRESULT)ex.HResult; 1180 private static winmdroot.Foundation.HRESULT getElementsByName(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 1184 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1193 return (winmdroot.Foundation.HRESULT)ex.HResult; 1200 ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v, &__retVal).ThrowOnFailure(); 1207 private static winmdroot.Foundation.HRESULT getElementById(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElement** pel) 1211 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1220 return (winmdroot.Foundation.HRESULT)ex.HResult; 1224 public unsafe winmdroot.Foundation.HRESULT getElementById(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElement** pel) 1226 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v, pel); 1232 private static winmdroot.Foundation.HRESULT getElementsByTagName(IHTMLDocument3* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 1236 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1245 return (winmdroot.Foundation.HRESULT)ex.HResult; 1249 public unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 1251 return ((delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLDocument3*)Unsafe.AsPointer(ref this), v, pelColl); 1254 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1258 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 1275 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1281 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 1283 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 1285 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 1287 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 1289 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.HRESULT> releaseCapture_8; 1291 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> recalc_9; 1293 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> createTextNode_10; 1295 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_documentElement_11; 1297 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_uniqueID_12; 1299 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_13; 1301 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_14; 1303 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowsdelete_15; 1305 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowsdelete_16; 1307 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowsinserted_17; 1309 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowsinserted_18; 1311 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncellchange_19; 1313 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncellchange_20; 1315 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondatasetchanged_21; 1317 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondatasetchanged_22; 1319 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondataavailable_23; 1321 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondataavailable_24; 1323 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondatasetcomplete_25; 1325 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondatasetcomplete_26; 1327 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onpropertychange_27; 1329 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onpropertychange_28; 1331 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dir_29; 1333 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dir_30; 1335 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncontextmenu_31; 1337 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncontextmenu_32; 1339 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onstop_33; 1341 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onstop_34; 1343 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT> createDocumentFragment_35; 1345 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT> get_parentDocument_36; 1347 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_enableDownload_37; 1349 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_enableDownload_38; 1351 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_baseUrl_39; 1353 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_baseUrl_40; 1355 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_childNodes_41; 1357 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_inheritStyleSheets_42; 1359 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_inheritStyleSheets_43; 1361 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeeditfocus_44; 1363 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeeditfocus_45; 1365 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> getElementsByName_46; 1367 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> getElementById_47; 1369 internal delegate *unmanaged [Stdcall]<IHTMLDocument3*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> getElementsByTagName_48; 1435winmdroot.Foundation.HRESULT releaseCapture(); 1438winmdroot.Foundation.HRESULT recalc(winmdroot.Foundation.VARIANT_BOOL fForce); 1441 unsafe winmdroot.Foundation.HRESULT createTextNode(winmdroot.Foundation.BSTR text, winmdroot.Web.MsHtml.IHTMLDOMNode** newTextNode); 1454 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 1457 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp); 1502winmdroot.Foundation.HRESULT put_dir(winmdroot.Foundation.BSTR v); 1505 unsafe winmdroot.Foundation.HRESULT get_dir(winmdroot.Foundation.BSTR* p); 1520 unsafe winmdroot.Foundation.HRESULT createDocumentFragment(winmdroot.Web.MsHtml.IHTMLDocument2** pNewDoc); 1557 unsafe winmdroot.Foundation.HRESULT getElementsByName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl); 1560 unsafe winmdroot.Foundation.HRESULT getElementById(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElement** pel); 1563 unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl);
Windows.Win32.IHTMLDocument4.g.cs (106)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDocument4*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDocument4*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDocument4*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLDocument4*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLDocument4*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT focus(IHTMLDocument4* pThis) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 public winmdroot.Foundation.HRESULT focus() 133 return ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDocument4*)Unsafe.AsPointer(ref this)); 137 internal unsafe winmdroot.Foundation.HRESULT hasFocus(out winmdroot.Foundation.VARIANT_BOOL pfFocus) 141 winmdroot.Foundation.HRESULT __result = this.hasFocus(pfFocusLocal); 149 private static winmdroot.Foundation.HRESULT hasFocus(IHTMLDocument4* pThis, winmdroot.Foundation.VARIANT_BOOL* pfFocus) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 162 return (winmdroot.Foundation.HRESULT)ex.HResult; 166 public unsafe winmdroot.Foundation.HRESULT hasFocus(winmdroot.Foundation.VARIANT_BOOL* pfFocus) 168 return ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLDocument4*)Unsafe.AsPointer(ref this), pfFocus); 174 private static winmdroot.Foundation.HRESULT put_onselectionchange(IHTMLDocument4* pThis, winmdroot.System.Variant.VARIANT v) 178 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return winmdroot.Foundation.HRESULT.S_OK; 188 return (winmdroot.Foundation.HRESULT)ex.HResult; 196 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDocument4*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 201 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 209 private static winmdroot.Foundation.HRESULT get_onselectionchange(IHTMLDocument4* pThis, winmdroot.System.Variant.VARIANT* p) 213 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 219 return winmdroot.Foundation.HRESULT.S_OK; 223 return (winmdroot.Foundation.HRESULT)ex.HResult; 230 private static winmdroot.Foundation.HRESULT get_namespaces(IHTMLDocument4* pThis, winmdroot.System.Com.IDispatch** p) 234 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 240 return winmdroot.Foundation.HRESULT.S_OK; 244 return (winmdroot.Foundation.HRESULT)ex.HResult; 253 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 261 private static winmdroot.Foundation.HRESULT createDocumentFromUrl(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR bstrUrl, winmdroot.Foundation.BSTR bstrOptions, winmdroot.Web.MsHtml.IHTMLDocument2** newDoc) 265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 274 return (winmdroot.Foundation.HRESULT)ex.HResult; 281 ((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(); 288 private static winmdroot.Foundation.HRESULT put_media(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR v) 292 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 298 return winmdroot.Foundation.HRESULT.S_OK; 302 return (winmdroot.Foundation.HRESULT)ex.HResult; 310 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDocument4*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 315 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 323 private static winmdroot.Foundation.HRESULT get_media(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR* p) 327 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 333 return winmdroot.Foundation.HRESULT.S_OK; 337 return (winmdroot.Foundation.HRESULT)ex.HResult; 354 private static winmdroot.Foundation.HRESULT createEventObject(IHTMLDocument4* pThis, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Web.MsHtml.IHTMLEventObj** ppEventObj) 358 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 367 return (winmdroot.Foundation.HRESULT)ex.HResult; 374 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT* ,winmdroot.Web.MsHtml.IHTMLEventObj** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLDocument4*)Unsafe.AsPointer(ref this), pvarEventObject, &__retVal).ThrowOnFailure(); 379 internal unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, in winmdroot.System.Variant.VARIANT pvarEventObject, out winmdroot.Foundation.VARIANT_BOOL pfCancelled) 385 winmdroot.Foundation.HRESULT __result = this.fireEvent(bstrEventName, pvarEventObjectLocal, pfCancelledLocal); 394 private static winmdroot.Foundation.HRESULT fireEvent(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 398 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 407 return (winmdroot.Foundation.HRESULT)ex.HResult; 411 public unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 413 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); 419 private static winmdroot.Foundation.HRESULT createRenderStyle(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLRenderStyle** ppIHTMLRenderStyle) 423 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 432 return (winmdroot.Foundation.HRESULT)ex.HResult; 439 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLRenderStyle** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLDocument4*)Unsafe.AsPointer(ref this), v, &__retVal).ThrowOnFailure(); 446 private static winmdroot.Foundation.HRESULT put_oncontrolselect(IHTMLDocument4* pThis, winmdroot.System.Variant.VARIANT v) 450 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 456 return winmdroot.Foundation.HRESULT.S_OK; 460 return (winmdroot.Foundation.HRESULT)ex.HResult; 468 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLDocument4*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 473 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 481 private static winmdroot.Foundation.HRESULT get_oncontrolselect(IHTMLDocument4* pThis, winmdroot.System.Variant.VARIANT* p) 485 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 491 return winmdroot.Foundation.HRESULT.S_OK; 495 return (winmdroot.Foundation.HRESULT)ex.HResult; 502 private static winmdroot.Foundation.HRESULT get_URLUnencoded(IHTMLDocument4* pThis, winmdroot.Foundation.BSTR* p) 506 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 512 return winmdroot.Foundation.HRESULT.S_OK; 516 return (winmdroot.Foundation.HRESULT)ex.HResult; 525 ((delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLDocument4*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 530 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 534 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 551 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 557 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 559 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 561 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 563 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 565 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.HRESULT> focus_8; 567 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> hasFocus_9; 569 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onselectionchange_10; 571 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onselectionchange_11; 573 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_namespaces_12; 575 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT> createDocumentFromUrl_13; 577 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_media_14; 579 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_media_15; 581 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT* ,winmdroot.Web.MsHtml.IHTMLEventObj** ,winmdroot.Foundation.HRESULT> createEventObject_16; 583 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> fireEvent_17; 585 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLRenderStyle** ,winmdroot.Foundation.HRESULT> createRenderStyle_18; 587 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncontrolselect_19; 589 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncontrolselect_20; 591 internal delegate *unmanaged [Stdcall]<IHTMLDocument4*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_URLUnencoded_21; 630winmdroot.Foundation.HRESULT focus(); 633 unsafe winmdroot.Foundation.HRESULT hasFocus(winmdroot.Foundation.VARIANT_BOOL* pfFocus); 647 unsafe winmdroot.Foundation.HRESULT createDocumentFromUrl(winmdroot.Foundation.BSTR bstrUrl, winmdroot.Foundation.BSTR bstrOptions, winmdroot.Web.MsHtml.IHTMLDocument2** newDoc); 656 unsafe winmdroot.Foundation.HRESULT createEventObject(winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Web.MsHtml.IHTMLEventObj** ppEventObj); 659 unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled); 662 unsafe winmdroot.Foundation.HRESULT createRenderStyle(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLRenderStyle** ppIHTMLRenderStyle);
Windows.Win32.IHTMLDOMNode.g.cs (138)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_nodeType(IHTMLDOMNode* pThis, int* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT get_parentNode(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode** p) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return winmdroot.Foundation.HRESULT.S_OK; 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 176 private static winmdroot.Foundation.HRESULT hasChildNodes(IHTMLDOMNode* pThis, winmdroot.Foundation.VARIANT_BOOL* fChildren) 180 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 189 return (winmdroot.Foundation.HRESULT)ex.HResult; 196 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 203 private static winmdroot.Foundation.HRESULT get_childNodes(IHTMLDOMNode* pThis, winmdroot.System.Com.IDispatch** p) 207 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 213 return winmdroot.Foundation.HRESULT.S_OK; 217 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 234 private static winmdroot.Foundation.HRESULT get_attributes(IHTMLDOMNode* pThis, winmdroot.System.Com.IDispatch** p) 238 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 244 return winmdroot.Foundation.HRESULT.S_OK; 248 return (winmdroot.Foundation.HRESULT)ex.HResult; 257 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 265 private static winmdroot.Foundation.HRESULT insertBefore(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.System.Variant.VARIANT refChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node) 269 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 278 return (winmdroot.Foundation.HRESULT)ex.HResult; 285 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.System.Variant.VARIANT ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), newChild, refChild, &__retVal).ThrowOnFailure(); 292 private static winmdroot.Foundation.HRESULT removeChild(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* oldChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node) 296 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 305 return (winmdroot.Foundation.HRESULT)ex.HResult; 309 public unsafe winmdroot.Foundation.HRESULT removeChild(winmdroot.Web.MsHtml.IHTMLDOMNode* oldChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node) 311 return ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), oldChild, node); 317 private static winmdroot.Foundation.HRESULT replaceChild(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.Web.MsHtml.IHTMLDOMNode* oldChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node) 321 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 330 return (winmdroot.Foundation.HRESULT)ex.HResult; 337 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), newChild, oldChild, &__retVal).ThrowOnFailure(); 344 private static winmdroot.Foundation.HRESULT cloneNode(IHTMLDOMNode* pThis, winmdroot.Foundation.VARIANT_BOOL fDeep, winmdroot.Web.MsHtml.IHTMLDOMNode** clonedNode) 348 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 357 return (winmdroot.Foundation.HRESULT)ex.HResult; 364 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), fDeep, &__retVal).ThrowOnFailure(); 371 private static winmdroot.Foundation.HRESULT removeNode(IHTMLDOMNode* pThis, winmdroot.Foundation.VARIANT_BOOL fDeep, winmdroot.Web.MsHtml.IHTMLDOMNode** removed) 375 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 384 return (winmdroot.Foundation.HRESULT)ex.HResult; 391 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), fDeep, &__retVal).ThrowOnFailure(); 398 private static winmdroot.Foundation.HRESULT swapNode(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* otherNode, winmdroot.Web.MsHtml.IHTMLDOMNode** swappedNode) 402 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 411 return (winmdroot.Foundation.HRESULT)ex.HResult; 418 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), otherNode, &__retVal).ThrowOnFailure(); 425 private static winmdroot.Foundation.HRESULT replaceNode(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* replacement, winmdroot.Web.MsHtml.IHTMLDOMNode** replaced) 429 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 438 return (winmdroot.Foundation.HRESULT)ex.HResult; 445 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), replacement, &__retVal).ThrowOnFailure(); 452 private static winmdroot.Foundation.HRESULT appendChild(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node) 456 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 465 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), newChild, &__retVal).ThrowOnFailure(); 479 private static winmdroot.Foundation.HRESULT get_nodeName(IHTMLDOMNode* pThis, winmdroot.Foundation.BSTR* p) 483 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 489 return winmdroot.Foundation.HRESULT.S_OK; 493 return (winmdroot.Foundation.HRESULT)ex.HResult; 502 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 510 private static winmdroot.Foundation.HRESULT put_nodeValue(IHTMLDOMNode* pThis, winmdroot.System.Variant.VARIANT v) 514 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 520 return winmdroot.Foundation.HRESULT.S_OK; 524 return (winmdroot.Foundation.HRESULT)ex.HResult; 532 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 537 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 545 private static winmdroot.Foundation.HRESULT get_nodeValue(IHTMLDOMNode* pThis, winmdroot.System.Variant.VARIANT* p) 549 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 555 return winmdroot.Foundation.HRESULT.S_OK; 559 return (winmdroot.Foundation.HRESULT)ex.HResult; 566 private static winmdroot.Foundation.HRESULT get_firstChild(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode** p) 570 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 579 return (winmdroot.Foundation.HRESULT)ex.HResult; 583 public unsafe winmdroot.Foundation.HRESULT get_firstChild(winmdroot.Web.MsHtml.IHTMLDOMNode** p) 585 return ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), p); 591 private static winmdroot.Foundation.HRESULT get_lastChild(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode** p) 595 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 601 return winmdroot.Foundation.HRESULT.S_OK; 605 return (winmdroot.Foundation.HRESULT)ex.HResult; 614 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 622 private static winmdroot.Foundation.HRESULT get_previousSibling(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode** p) 626 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 632 return winmdroot.Foundation.HRESULT.S_OK; 636 return (winmdroot.Foundation.HRESULT)ex.HResult; 645 ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 653 private static winmdroot.Foundation.HRESULT get_nextSibling(IHTMLDOMNode* pThis, winmdroot.Web.MsHtml.IHTMLDOMNode** p) 657 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 666 return (winmdroot.Foundation.HRESULT)ex.HResult; 670 public unsafe winmdroot.Foundation.HRESULT get_nextSibling(winmdroot.Web.MsHtml.IHTMLDOMNode** p) 672 return ((delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLDOMNode*)Unsafe.AsPointer(ref this), p); 675 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 679 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 696 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 702 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 704 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 706 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 708 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 710 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,int* ,winmdroot.Foundation.HRESULT> get_nodeType_8; 712 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> get_parentNode_9; 714 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> hasChildNodes_10; 716 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_childNodes_11; 718 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_attributes_12; 720 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.System.Variant.VARIANT ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> insertBefore_13; 722 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> removeChild_14; 724 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> replaceChild_15; 726 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> cloneNode_16; 728 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> removeNode_17; 730 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> swapNode_18; 732 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> replaceNode_19; 734 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode* ,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> appendChild_20; 736 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_nodeName_21; 738 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_nodeValue_22; 740 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_nodeValue_23; 742 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> get_firstChild_24; 744 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> get_lastChild_25; 746 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> get_previousSibling_26; 748 internal delegate *unmanaged [Stdcall]<IHTMLDOMNode*,winmdroot.Web.MsHtml.IHTMLDOMNode** ,winmdroot.Foundation.HRESULT> get_nextSibling_27; 803 unsafe winmdroot.Foundation.HRESULT hasChildNodes(winmdroot.Foundation.VARIANT_BOOL* fChildren); 816 unsafe winmdroot.Foundation.HRESULT insertBefore(winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.System.Variant.VARIANT refChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node); 819 unsafe winmdroot.Foundation.HRESULT removeChild(winmdroot.Web.MsHtml.IHTMLDOMNode* oldChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node); 822 unsafe winmdroot.Foundation.HRESULT replaceChild(winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.Web.MsHtml.IHTMLDOMNode* oldChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node); 825 unsafe winmdroot.Foundation.HRESULT cloneNode(winmdroot.Foundation.VARIANT_BOOL fDeep, winmdroot.Web.MsHtml.IHTMLDOMNode** clonedNode); 828 unsafe winmdroot.Foundation.HRESULT removeNode(winmdroot.Foundation.VARIANT_BOOL fDeep, winmdroot.Web.MsHtml.IHTMLDOMNode** removed); 831 unsafe winmdroot.Foundation.HRESULT swapNode(winmdroot.Web.MsHtml.IHTMLDOMNode* otherNode, winmdroot.Web.MsHtml.IHTMLDOMNode** swappedNode); 834 unsafe winmdroot.Foundation.HRESULT replaceNode(winmdroot.Web.MsHtml.IHTMLDOMNode* replacement, winmdroot.Web.MsHtml.IHTMLDOMNode** replaced); 837 unsafe winmdroot.Foundation.HRESULT appendChild(winmdroot.Web.MsHtml.IHTMLDOMNode* newChild, winmdroot.Web.MsHtml.IHTMLDOMNode** node); 851 unsafe winmdroot.Foundation.HRESULT get_firstChild(winmdroot.Web.MsHtml.IHTMLDOMNode** p); 864 unsafe winmdroot.Foundation.HRESULT get_nextSibling(winmdroot.Web.MsHtml.IHTMLDOMNode** p);
Windows.Win32.IHTMLElement.g.cs (571)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLElement*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLElement*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLElement*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLElement*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLElement*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLElement*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLElement*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT setAttribute(IHTMLElement* pThis, winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 public winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 133 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); 137 internal unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, out winmdroot.System.Variant.VARIANT AttributeValue) 141 winmdroot.Foundation.HRESULT __result = this.getAttribute(strAttributeName, lFlags, AttributeValueLocal); 149 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLElement* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 162 return (winmdroot.Foundation.HRESULT)ex.HResult; 166 public unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 168 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); 174 private static winmdroot.Foundation.HRESULT removeAttribute(IHTMLElement* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 178 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 187 return (winmdroot.Foundation.HRESULT)ex.HResult; 194 ((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(); 201 private static winmdroot.Foundation.HRESULT put_className(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 205 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return winmdroot.Foundation.HRESULT.S_OK; 215 return (winmdroot.Foundation.HRESULT)ex.HResult; 223 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 228 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 236 private static winmdroot.Foundation.HRESULT get_className(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 240 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 246 return winmdroot.Foundation.HRESULT.S_OK; 250 return (winmdroot.Foundation.HRESULT)ex.HResult; 257 private static winmdroot.Foundation.HRESULT put_id(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 261 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 270 return (winmdroot.Foundation.HRESULT)ex.HResult; 274 public winmdroot.Foundation.HRESULT put_id(winmdroot.Foundation.BSTR v) 276 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 282 private static winmdroot.Foundation.HRESULT get_id(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 286 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 295 return (winmdroot.Foundation.HRESULT)ex.HResult; 299 public unsafe winmdroot.Foundation.HRESULT get_id(winmdroot.Foundation.BSTR* p) 301 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 307 private static winmdroot.Foundation.HRESULT get_tagName(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 311 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 320 return (winmdroot.Foundation.HRESULT)ex.HResult; 324 public unsafe winmdroot.Foundation.HRESULT get_tagName(winmdroot.Foundation.BSTR* p) 326 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 332 private static winmdroot.Foundation.HRESULT get_parentElement(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 336 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 345 return (winmdroot.Foundation.HRESULT)ex.HResult; 349 public unsafe winmdroot.Foundation.HRESULT get_parentElement(winmdroot.Web.MsHtml.IHTMLElement** p) 351 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 357 private static winmdroot.Foundation.HRESULT get_style(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLStyle** p) 361 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 370 return (winmdroot.Foundation.HRESULT)ex.HResult; 374 public unsafe winmdroot.Foundation.HRESULT get_style(winmdroot.Web.MsHtml.IHTMLStyle** p) 376 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLStyle** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 382 private static winmdroot.Foundation.HRESULT put_onhelp(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 386 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 392 return winmdroot.Foundation.HRESULT.S_OK; 396 return (winmdroot.Foundation.HRESULT)ex.HResult; 404 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 409 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 417 private static winmdroot.Foundation.HRESULT get_onhelp(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 421 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 427 return winmdroot.Foundation.HRESULT.S_OK; 431 return (winmdroot.Foundation.HRESULT)ex.HResult; 438 private static winmdroot.Foundation.HRESULT put_onclick(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 442 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 448 return winmdroot.Foundation.HRESULT.S_OK; 452 return (winmdroot.Foundation.HRESULT)ex.HResult; 460 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 465 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 473 private static winmdroot.Foundation.HRESULT get_onclick(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 477 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 483 return winmdroot.Foundation.HRESULT.S_OK; 487 return (winmdroot.Foundation.HRESULT)ex.HResult; 494 private static winmdroot.Foundation.HRESULT put_ondblclick(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 498 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 504 return winmdroot.Foundation.HRESULT.S_OK; 508 return (winmdroot.Foundation.HRESULT)ex.HResult; 516 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 521 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 529 private static winmdroot.Foundation.HRESULT get_ondblclick(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 533 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 539 return winmdroot.Foundation.HRESULT.S_OK; 543 return (winmdroot.Foundation.HRESULT)ex.HResult; 550 private static winmdroot.Foundation.HRESULT put_onkeydown(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 554 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 560 return winmdroot.Foundation.HRESULT.S_OK; 564 return (winmdroot.Foundation.HRESULT)ex.HResult; 572 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 577 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 585 private static winmdroot.Foundation.HRESULT get_onkeydown(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 589 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 595 return winmdroot.Foundation.HRESULT.S_OK; 599 return (winmdroot.Foundation.HRESULT)ex.HResult; 606 private static winmdroot.Foundation.HRESULT put_onkeyup(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 610 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 616 return winmdroot.Foundation.HRESULT.S_OK; 620 return (winmdroot.Foundation.HRESULT)ex.HResult; 628 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 633 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 641 private static winmdroot.Foundation.HRESULT get_onkeyup(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 645 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 651 return winmdroot.Foundation.HRESULT.S_OK; 655 return (winmdroot.Foundation.HRESULT)ex.HResult; 662 private static winmdroot.Foundation.HRESULT put_onkeypress(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 666 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 672 return winmdroot.Foundation.HRESULT.S_OK; 676 return (winmdroot.Foundation.HRESULT)ex.HResult; 684 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 689 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 697 private static winmdroot.Foundation.HRESULT get_onkeypress(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 701 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 707 return winmdroot.Foundation.HRESULT.S_OK; 711 return (winmdroot.Foundation.HRESULT)ex.HResult; 718 private static winmdroot.Foundation.HRESULT put_onmouseout(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 722 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 728 return winmdroot.Foundation.HRESULT.S_OK; 732 return (winmdroot.Foundation.HRESULT)ex.HResult; 740 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 745 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 753 private static winmdroot.Foundation.HRESULT get_onmouseout(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 757 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 763 return winmdroot.Foundation.HRESULT.S_OK; 767 return (winmdroot.Foundation.HRESULT)ex.HResult; 774 private static winmdroot.Foundation.HRESULT put_onmouseover(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 778 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 784 return winmdroot.Foundation.HRESULT.S_OK; 788 return (winmdroot.Foundation.HRESULT)ex.HResult; 796 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 801 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 809 private static winmdroot.Foundation.HRESULT get_onmouseover(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 813 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 819 return winmdroot.Foundation.HRESULT.S_OK; 823 return (winmdroot.Foundation.HRESULT)ex.HResult; 830 private static winmdroot.Foundation.HRESULT put_onmousemove(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 834 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 840 return winmdroot.Foundation.HRESULT.S_OK; 844 return (winmdroot.Foundation.HRESULT)ex.HResult; 852 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 857 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 865 private static winmdroot.Foundation.HRESULT get_onmousemove(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 869 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 875 return winmdroot.Foundation.HRESULT.S_OK; 879 return (winmdroot.Foundation.HRESULT)ex.HResult; 886 private static winmdroot.Foundation.HRESULT put_onmousedown(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 890 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 896 return winmdroot.Foundation.HRESULT.S_OK; 900 return (winmdroot.Foundation.HRESULT)ex.HResult; 908 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 913 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 921 private static winmdroot.Foundation.HRESULT get_onmousedown(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 925 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 931 return winmdroot.Foundation.HRESULT.S_OK; 935 return (winmdroot.Foundation.HRESULT)ex.HResult; 942 private static winmdroot.Foundation.HRESULT put_onmouseup(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 946 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 952 return winmdroot.Foundation.HRESULT.S_OK; 956 return (winmdroot.Foundation.HRESULT)ex.HResult; 964 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 969 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 977 private static winmdroot.Foundation.HRESULT get_onmouseup(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 981 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 987 return winmdroot.Foundation.HRESULT.S_OK; 991 return (winmdroot.Foundation.HRESULT)ex.HResult; 998 private static winmdroot.Foundation.HRESULT get_document(IHTMLElement* pThis, winmdroot.System.Com.IDispatch** p) 1002 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1011 return (winmdroot.Foundation.HRESULT)ex.HResult; 1015 public unsafe winmdroot.Foundation.HRESULT get_document(winmdroot.System.Com.IDispatch** p) 1017 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1023 private static winmdroot.Foundation.HRESULT put_title(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1027 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1033 return winmdroot.Foundation.HRESULT.S_OK; 1037 return (winmdroot.Foundation.HRESULT)ex.HResult; 1045 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1050 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1058 private static winmdroot.Foundation.HRESULT get_title(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1062 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1068 return winmdroot.Foundation.HRESULT.S_OK; 1072 return (winmdroot.Foundation.HRESULT)ex.HResult; 1079 private static winmdroot.Foundation.HRESULT put_language(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1083 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1089 return winmdroot.Foundation.HRESULT.S_OK; 1093 return (winmdroot.Foundation.HRESULT)ex.HResult; 1101 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1106 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1114 private static winmdroot.Foundation.HRESULT get_language(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1124 return winmdroot.Foundation.HRESULT.S_OK; 1128 return (winmdroot.Foundation.HRESULT)ex.HResult; 1135 private static winmdroot.Foundation.HRESULT put_onselectstart(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 1139 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1145 return winmdroot.Foundation.HRESULT.S_OK; 1149 return (winmdroot.Foundation.HRESULT)ex.HResult; 1157 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1162 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1170 private static winmdroot.Foundation.HRESULT get_onselectstart(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 1174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1180 return winmdroot.Foundation.HRESULT.S_OK; 1184 return (winmdroot.Foundation.HRESULT)ex.HResult; 1191 private static winmdroot.Foundation.HRESULT scrollIntoView(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT varargStart) 1195 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1204 return (winmdroot.Foundation.HRESULT)ex.HResult; 1208 public winmdroot.Foundation.HRESULT scrollIntoView(winmdroot.System.Variant.VARIANT varargStart) 1210 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLElement*)Unsafe.AsPointer(ref this), varargStart); 1216 private static winmdroot.Foundation.HRESULT contains(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLElement* pChild, winmdroot.Foundation.VARIANT_BOOL* pfResult) 1220 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1229 return (winmdroot.Foundation.HRESULT)ex.HResult; 1236 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLElement*)Unsafe.AsPointer(ref this), pChild, &__retVal).ThrowOnFailure(); 1243 private static winmdroot.Foundation.HRESULT get_sourceIndex(IHTMLElement* pThis, int* p) 1247 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1253 return winmdroot.Foundation.HRESULT.S_OK; 1257 return (winmdroot.Foundation.HRESULT)ex.HResult; 1266 ((delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1274 private static winmdroot.Foundation.HRESULT get_recordNumber(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 1278 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1284 return winmdroot.Foundation.HRESULT.S_OK; 1288 return (winmdroot.Foundation.HRESULT)ex.HResult; 1297 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1305 private static winmdroot.Foundation.HRESULT put_lang(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1309 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1315 return winmdroot.Foundation.HRESULT.S_OK; 1319 return (winmdroot.Foundation.HRESULT)ex.HResult; 1327 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1332 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1340 private static winmdroot.Foundation.HRESULT get_lang(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1344 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1350 return winmdroot.Foundation.HRESULT.S_OK; 1354 return (winmdroot.Foundation.HRESULT)ex.HResult; 1359 internal unsafe winmdroot.Foundation.HRESULT get_offsetLeft(out int p) 1363 winmdroot.Foundation.HRESULT __result = this.get_offsetLeft(pLocal); 1371 private static winmdroot.Foundation.HRESULT get_offsetLeft(IHTMLElement* pThis, int* p) 1375 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1384 return (winmdroot.Foundation.HRESULT)ex.HResult; 1388 public unsafe winmdroot.Foundation.HRESULT get_offsetLeft(int* p) 1390 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1394 internal unsafe winmdroot.Foundation.HRESULT get_offsetTop(out int p) 1398 winmdroot.Foundation.HRESULT __result = this.get_offsetTop(pLocal); 1406 private static winmdroot.Foundation.HRESULT get_offsetTop(IHTMLElement* pThis, int* p) 1410 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1419 return (winmdroot.Foundation.HRESULT)ex.HResult; 1423 public unsafe winmdroot.Foundation.HRESULT get_offsetTop(int* p) 1425 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1429 internal unsafe winmdroot.Foundation.HRESULT get_offsetWidth(out int p) 1433 winmdroot.Foundation.HRESULT __result = this.get_offsetWidth(pLocal); 1441 private static winmdroot.Foundation.HRESULT get_offsetWidth(IHTMLElement* pThis, int* p) 1445 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1454 return (winmdroot.Foundation.HRESULT)ex.HResult; 1458 public unsafe winmdroot.Foundation.HRESULT get_offsetWidth(int* p) 1460 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1464 internal unsafe winmdroot.Foundation.HRESULT get_offsetHeight(out int p) 1468 winmdroot.Foundation.HRESULT __result = this.get_offsetHeight(pLocal); 1476 private static winmdroot.Foundation.HRESULT get_offsetHeight(IHTMLElement* pThis, int* p) 1480 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1489 return (winmdroot.Foundation.HRESULT)ex.HResult; 1493 public unsafe winmdroot.Foundation.HRESULT get_offsetHeight(int* p) 1495 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1501 private static winmdroot.Foundation.HRESULT get_offsetParent(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 1505 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1514 return (winmdroot.Foundation.HRESULT)ex.HResult; 1518 public unsafe winmdroot.Foundation.HRESULT get_offsetParent(winmdroot.Web.MsHtml.IHTMLElement** p) 1520 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1526 private static winmdroot.Foundation.HRESULT put_innerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1530 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1539 return (winmdroot.Foundation.HRESULT)ex.HResult; 1543 public winmdroot.Foundation.HRESULT put_innerHTML(winmdroot.Foundation.BSTR v) 1545 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1551 private static winmdroot.Foundation.HRESULT get_innerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1555 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1564 return (winmdroot.Foundation.HRESULT)ex.HResult; 1568 public unsafe winmdroot.Foundation.HRESULT get_innerHTML(winmdroot.Foundation.BSTR* p) 1570 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1576 private static winmdroot.Foundation.HRESULT put_innerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1580 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1589 return (winmdroot.Foundation.HRESULT)ex.HResult; 1593 public winmdroot.Foundation.HRESULT put_innerText(winmdroot.Foundation.BSTR v) 1595 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1601 private static winmdroot.Foundation.HRESULT get_innerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1605 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1614 return (winmdroot.Foundation.HRESULT)ex.HResult; 1618 public unsafe winmdroot.Foundation.HRESULT get_innerText(winmdroot.Foundation.BSTR* p) 1620 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1626 private static winmdroot.Foundation.HRESULT put_outerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1630 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1639 return (winmdroot.Foundation.HRESULT)ex.HResult; 1643 public winmdroot.Foundation.HRESULT put_outerHTML(winmdroot.Foundation.BSTR v) 1645 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1651 private static winmdroot.Foundation.HRESULT get_outerHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1655 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1664 return (winmdroot.Foundation.HRESULT)ex.HResult; 1668 public unsafe winmdroot.Foundation.HRESULT get_outerHTML(winmdroot.Foundation.BSTR* p) 1670 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1676 private static winmdroot.Foundation.HRESULT put_outerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR v) 1680 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1689 return (winmdroot.Foundation.HRESULT)ex.HResult; 1693 public winmdroot.Foundation.HRESULT put_outerText(winmdroot.Foundation.BSTR v) 1695 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLElement*)Unsafe.AsPointer(ref this), v); 1701 private static winmdroot.Foundation.HRESULT get_outerText(IHTMLElement* pThis, winmdroot.Foundation.BSTR* p) 1705 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1714 return (winmdroot.Foundation.HRESULT)ex.HResult; 1718 public unsafe winmdroot.Foundation.HRESULT get_outerText(winmdroot.Foundation.BSTR* p) 1720 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 1726 private static winmdroot.Foundation.HRESULT insertAdjacentHTML(IHTMLElement* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR html) 1730 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1739 return (winmdroot.Foundation.HRESULT)ex.HResult; 1745 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLElement*)Unsafe.AsPointer(ref this), where, html).ThrowOnFailure(); 1751 private static winmdroot.Foundation.HRESULT insertAdjacentText(IHTMLElement* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR text) 1755 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1764 return (winmdroot.Foundation.HRESULT)ex.HResult; 1770 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLElement*)Unsafe.AsPointer(ref this), where, text).ThrowOnFailure(); 1776 private static winmdroot.Foundation.HRESULT get_parentTextEdit(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 1780 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1786 return winmdroot.Foundation.HRESULT.S_OK; 1790 return (winmdroot.Foundation.HRESULT)ex.HResult; 1799 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1807 private static winmdroot.Foundation.HRESULT get_isTextEdit(IHTMLElement* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1811 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1817 return winmdroot.Foundation.HRESULT.S_OK; 1821 return (winmdroot.Foundation.HRESULT)ex.HResult; 1830 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1838 private static winmdroot.Foundation.HRESULT click(IHTMLElement* pThis) 1842 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1851 return (winmdroot.Foundation.HRESULT)ex.HResult; 1857 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLElement*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1863 private static winmdroot.Foundation.HRESULT get_filters(IHTMLElement* pThis, winmdroot.Web.MsHtml.IHTMLFiltersCollection** p) 1867 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1873 return winmdroot.Foundation.HRESULT.S_OK; 1877 return (winmdroot.Foundation.HRESULT)ex.HResult; 1886 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLFiltersCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1894 private static winmdroot.Foundation.HRESULT put_ondragstart(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 1898 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1904 return winmdroot.Foundation.HRESULT.S_OK; 1908 return (winmdroot.Foundation.HRESULT)ex.HResult; 1916 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1921 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1929 private static winmdroot.Foundation.HRESULT get_ondragstart(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 1933 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1939 return winmdroot.Foundation.HRESULT.S_OK; 1943 return (winmdroot.Foundation.HRESULT)ex.HResult; 1950 private static winmdroot.Foundation.HRESULT toString(IHTMLElement* pThis, winmdroot.Foundation.BSTR* String) 1954 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1963 return (winmdroot.Foundation.HRESULT)ex.HResult; 1970 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLElement*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 1977 private static winmdroot.Foundation.HRESULT put_onbeforeupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 1981 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1987 return winmdroot.Foundation.HRESULT.S_OK; 1991 return (winmdroot.Foundation.HRESULT)ex.HResult; 1999 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2004 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2012 private static winmdroot.Foundation.HRESULT get_onbeforeupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2016 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2022 return winmdroot.Foundation.HRESULT.S_OK; 2026 return (winmdroot.Foundation.HRESULT)ex.HResult; 2033 private static winmdroot.Foundation.HRESULT put_onafterupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2037 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2043 return winmdroot.Foundation.HRESULT.S_OK; 2047 return (winmdroot.Foundation.HRESULT)ex.HResult; 2055 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2060 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2068 private static winmdroot.Foundation.HRESULT get_onafterupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2072 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2078 return winmdroot.Foundation.HRESULT.S_OK; 2082 return (winmdroot.Foundation.HRESULT)ex.HResult; 2089 private static winmdroot.Foundation.HRESULT put_onerrorupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2093 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2099 return winmdroot.Foundation.HRESULT.S_OK; 2103 return (winmdroot.Foundation.HRESULT)ex.HResult; 2111 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2116 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2124 private static winmdroot.Foundation.HRESULT get_onerrorupdate(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2128 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2134 return winmdroot.Foundation.HRESULT.S_OK; 2138 return (winmdroot.Foundation.HRESULT)ex.HResult; 2145 private static winmdroot.Foundation.HRESULT put_onrowexit(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2155 return winmdroot.Foundation.HRESULT.S_OK; 2159 return (winmdroot.Foundation.HRESULT)ex.HResult; 2167 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2172 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2180 private static winmdroot.Foundation.HRESULT get_onrowexit(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2184 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2190 return winmdroot.Foundation.HRESULT.S_OK; 2194 return (winmdroot.Foundation.HRESULT)ex.HResult; 2201 private static winmdroot.Foundation.HRESULT put_onrowenter(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2205 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2211 return winmdroot.Foundation.HRESULT.S_OK; 2215 return (winmdroot.Foundation.HRESULT)ex.HResult; 2223 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2228 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2236 private static winmdroot.Foundation.HRESULT get_onrowenter(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2240 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2246 return winmdroot.Foundation.HRESULT.S_OK; 2250 return (winmdroot.Foundation.HRESULT)ex.HResult; 2257 private static winmdroot.Foundation.HRESULT put_ondatasetchanged(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2261 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2267 return winmdroot.Foundation.HRESULT.S_OK; 2271 return (winmdroot.Foundation.HRESULT)ex.HResult; 2279 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2284 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2292 private static winmdroot.Foundation.HRESULT get_ondatasetchanged(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2296 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2302 return winmdroot.Foundation.HRESULT.S_OK; 2306 return (winmdroot.Foundation.HRESULT)ex.HResult; 2313 private static winmdroot.Foundation.HRESULT put_ondataavailable(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2317 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2323 return winmdroot.Foundation.HRESULT.S_OK; 2327 return (winmdroot.Foundation.HRESULT)ex.HResult; 2335 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2340 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2348 private static winmdroot.Foundation.HRESULT get_ondataavailable(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2352 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2358 return winmdroot.Foundation.HRESULT.S_OK; 2362 return (winmdroot.Foundation.HRESULT)ex.HResult; 2369 private static winmdroot.Foundation.HRESULT put_ondatasetcomplete(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2373 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2379 return winmdroot.Foundation.HRESULT.S_OK; 2383 return (winmdroot.Foundation.HRESULT)ex.HResult; 2391 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2396 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2404 private static winmdroot.Foundation.HRESULT get_ondatasetcomplete(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2408 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2414 return winmdroot.Foundation.HRESULT.S_OK; 2418 return (winmdroot.Foundation.HRESULT)ex.HResult; 2425 private static winmdroot.Foundation.HRESULT put_onfilterchange(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT v) 2429 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2435 return winmdroot.Foundation.HRESULT.S_OK; 2439 return (winmdroot.Foundation.HRESULT)ex.HResult; 2447 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2452 ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2460 private static winmdroot.Foundation.HRESULT get_onfilterchange(IHTMLElement* pThis, winmdroot.System.Variant.VARIANT* p) 2464 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2470 return winmdroot.Foundation.HRESULT.S_OK; 2474 return (winmdroot.Foundation.HRESULT)ex.HResult; 2481 private static winmdroot.Foundation.HRESULT get_children(IHTMLElement* pThis, winmdroot.System.Com.IDispatch** p) 2485 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2494 return (winmdroot.Foundation.HRESULT)ex.HResult; 2498 public unsafe winmdroot.Foundation.HRESULT get_children(winmdroot.System.Com.IDispatch** p) 2500 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 2506 private static winmdroot.Foundation.HRESULT get_all(IHTMLElement* pThis, winmdroot.System.Com.IDispatch** p) 2510 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2519 return (winmdroot.Foundation.HRESULT)ex.HResult; 2523 public unsafe winmdroot.Foundation.HRESULT get_all(winmdroot.System.Com.IDispatch** p) 2525 return ((delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLElement*)Unsafe.AsPointer(ref this), p); 2528 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2532 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 2549 internal delegate *unmanaged [Stdcall]<IHTMLElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2555 internal delegate *unmanaged [Stdcall]<IHTMLElement*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2557 internal delegate *unmanaged [Stdcall]<IHTMLElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2559 internal delegate *unmanaged [Stdcall]<IHTMLElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2561 internal delegate *unmanaged [Stdcall]<IHTMLElement*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 2563 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT> setAttribute_8; 2565 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_9; 2567 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeAttribute_10; 2569 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_className_11; 2571 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_className_12; 2573 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_id_13; 2575 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_id_14; 2577 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_tagName_15; 2579 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_parentElement_16; 2581 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLStyle** ,winmdroot.Foundation.HRESULT> get_style_17; 2583 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onhelp_18; 2585 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onhelp_19; 2587 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onclick_20; 2589 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onclick_21; 2591 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondblclick_22; 2593 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondblclick_23; 2595 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeydown_24; 2597 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeydown_25; 2599 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeyup_26; 2601 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeyup_27; 2603 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onkeypress_28; 2605 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onkeypress_29; 2607 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseout_30; 2609 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseout_31; 2611 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseover_32; 2613 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseover_33; 2615 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmousemove_34; 2617 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmousemove_35; 2619 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmousedown_36; 2621 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmousedown_37; 2623 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseup_38; 2625 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseup_39; 2627 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_document_40; 2629 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_title_41; 2631 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_title_42; 2633 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_language_43; 2635 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_language_44; 2637 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onselectstart_45; 2639 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onselectstart_46; 2641 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> scrollIntoView_47; 2643 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> contains_48; 2645 internal delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT> get_sourceIndex_49; 2647 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_recordNumber_50; 2649 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_lang_51; 2651 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lang_52; 2653 internal delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT> get_offsetLeft_53; 2655 internal delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT> get_offsetTop_54; 2657 internal delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT> get_offsetWidth_55; 2659 internal delegate *unmanaged [Stdcall]<IHTMLElement*,int* ,winmdroot.Foundation.HRESULT> get_offsetHeight_56; 2661 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_offsetParent_57; 2663 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_innerHTML_58; 2665 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_innerHTML_59; 2667 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_innerText_60; 2669 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_innerText_61; 2671 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_outerHTML_62; 2673 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_outerHTML_63; 2675 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_outerText_64; 2677 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_outerText_65; 2679 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> insertAdjacentHTML_66; 2681 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> insertAdjacentText_67; 2683 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_parentTextEdit_68; 2685 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_isTextEdit_69; 2687 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.HRESULT> click_70; 2689 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Web.MsHtml.IHTMLFiltersCollection** ,winmdroot.Foundation.HRESULT> get_filters_71; 2691 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragstart_72; 2693 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragstart_73; 2695 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_74; 2697 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeupdate_75; 2699 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeupdate_76; 2701 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onafterupdate_77; 2703 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onafterupdate_78; 2705 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onerrorupdate_79; 2707 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onerrorupdate_80; 2709 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowexit_81; 2711 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowexit_82; 2713 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowenter_83; 2715 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowenter_84; 2717 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondatasetchanged_85; 2719 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondatasetchanged_86; 2721 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondataavailable_87; 2723 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondataavailable_88; 2725 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondatasetcomplete_89; 2727 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondatasetcomplete_90; 2729 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onfilterchange_91; 2731 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onfilterchange_92; 2733 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_children_93; 2735 internal delegate *unmanaged [Stdcall]<IHTMLElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_all_94; 2847winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags); 2850 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue); 2853 unsafe winmdroot.Foundation.HRESULT removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess); 2862winmdroot.Foundation.HRESULT put_id(winmdroot.Foundation.BSTR v); 2865 unsafe winmdroot.Foundation.HRESULT get_id(winmdroot.Foundation.BSTR* p); 2868 unsafe winmdroot.Foundation.HRESULT get_tagName(winmdroot.Foundation.BSTR* p); 2871 unsafe winmdroot.Foundation.HRESULT get_parentElement(winmdroot.Web.MsHtml.IHTMLElement** p); 2874 unsafe winmdroot.Foundation.HRESULT get_style(winmdroot.Web.MsHtml.IHTMLStyle** p); 2943 unsafe winmdroot.Foundation.HRESULT get_document(winmdroot.System.Com.IDispatch** p); 2964winmdroot.Foundation.HRESULT scrollIntoView(winmdroot.System.Variant.VARIANT varargStart); 2967 unsafe winmdroot.Foundation.HRESULT contains(winmdroot.Web.MsHtml.IHTMLElement* pChild, winmdroot.Foundation.VARIANT_BOOL* pfResult); 2986 unsafe winmdroot.Foundation.HRESULT get_offsetLeft(int* p); 2989 unsafe winmdroot.Foundation.HRESULT get_offsetTop(int* p); 2992 unsafe winmdroot.Foundation.HRESULT get_offsetWidth(int* p); 2995 unsafe winmdroot.Foundation.HRESULT get_offsetHeight(int* p); 2998 unsafe winmdroot.Foundation.HRESULT get_offsetParent(winmdroot.Web.MsHtml.IHTMLElement** p); 3001winmdroot.Foundation.HRESULT put_innerHTML(winmdroot.Foundation.BSTR v); 3004 unsafe winmdroot.Foundation.HRESULT get_innerHTML(winmdroot.Foundation.BSTR* p); 3007winmdroot.Foundation.HRESULT put_innerText(winmdroot.Foundation.BSTR v); 3010 unsafe winmdroot.Foundation.HRESULT get_innerText(winmdroot.Foundation.BSTR* p); 3013winmdroot.Foundation.HRESULT put_outerHTML(winmdroot.Foundation.BSTR v); 3016 unsafe winmdroot.Foundation.HRESULT get_outerHTML(winmdroot.Foundation.BSTR* p); 3019winmdroot.Foundation.HRESULT put_outerText(winmdroot.Foundation.BSTR v); 3022 unsafe winmdroot.Foundation.HRESULT get_outerText(winmdroot.Foundation.BSTR* p); 3025winmdroot.Foundation.HRESULT insertAdjacentHTML(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR html); 3028winmdroot.Foundation.HRESULT insertAdjacentText(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR text); 3041winmdroot.Foundation.HRESULT click(); 3055 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String); 3112 unsafe winmdroot.Foundation.HRESULT get_children(winmdroot.System.Com.IDispatch** p); 3115 unsafe winmdroot.Foundation.HRESULT get_all(winmdroot.System.Com.IDispatch** p);
Windows.Win32.IHTMLElement2.g.cs (644)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLElement2*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLElement2*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLElement2*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLElement2*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLElement2*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_scopeName(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT setCapture(IHTMLElement2* pThis, winmdroot.Foundation.VARIANT_BOOL containerCapture) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return (winmdroot.Foundation.HRESULT)ex.HResult; 164 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLElement2*)Unsafe.AsPointer(ref this), containerCapture).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT releaseCapture(IHTMLElement2* pThis) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 183 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLElement2*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 195 private static winmdroot.Foundation.HRESULT put_onlosecapture(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 199 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return winmdroot.Foundation.HRESULT.S_OK; 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 222 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 230 private static winmdroot.Foundation.HRESULT get_onlosecapture(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 234 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 240 return winmdroot.Foundation.HRESULT.S_OK; 244 return (winmdroot.Foundation.HRESULT)ex.HResult; 251 private static winmdroot.Foundation.HRESULT componentFromPoint(IHTMLElement2* pThis, int x, int y, winmdroot.Foundation.BSTR* component) 255 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 264 return (winmdroot.Foundation.HRESULT)ex.HResult; 271 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLElement2*)Unsafe.AsPointer(ref this), x, y, &__retVal).ThrowOnFailure(); 278 private static winmdroot.Foundation.HRESULT doScroll(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT component) 282 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 291 return (winmdroot.Foundation.HRESULT)ex.HResult; 297 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLElement2*)Unsafe.AsPointer(ref this), component).ThrowOnFailure(); 303 private static winmdroot.Foundation.HRESULT put_onscroll(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 307 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 313 return winmdroot.Foundation.HRESULT.S_OK; 317 return (winmdroot.Foundation.HRESULT)ex.HResult; 325 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 330 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 338 private static winmdroot.Foundation.HRESULT get_onscroll(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 342 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 348 return winmdroot.Foundation.HRESULT.S_OK; 352 return (winmdroot.Foundation.HRESULT)ex.HResult; 359 private static winmdroot.Foundation.HRESULT put_ondrag(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 363 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 369 return winmdroot.Foundation.HRESULT.S_OK; 373 return (winmdroot.Foundation.HRESULT)ex.HResult; 381 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 386 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 394 private static winmdroot.Foundation.HRESULT get_ondrag(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 398 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 404 return winmdroot.Foundation.HRESULT.S_OK; 408 return (winmdroot.Foundation.HRESULT)ex.HResult; 415 private static winmdroot.Foundation.HRESULT put_ondragend(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 419 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 425 return winmdroot.Foundation.HRESULT.S_OK; 429 return (winmdroot.Foundation.HRESULT)ex.HResult; 437 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 442 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 450 private static winmdroot.Foundation.HRESULT get_ondragend(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 454 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 460 return winmdroot.Foundation.HRESULT.S_OK; 464 return (winmdroot.Foundation.HRESULT)ex.HResult; 471 private static winmdroot.Foundation.HRESULT put_ondragenter(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 475 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 481 return winmdroot.Foundation.HRESULT.S_OK; 485 return (winmdroot.Foundation.HRESULT)ex.HResult; 493 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 498 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 506 private static winmdroot.Foundation.HRESULT get_ondragenter(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 510 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 516 return winmdroot.Foundation.HRESULT.S_OK; 520 return (winmdroot.Foundation.HRESULT)ex.HResult; 527 private static winmdroot.Foundation.HRESULT put_ondragover(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 531 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 537 return winmdroot.Foundation.HRESULT.S_OK; 541 return (winmdroot.Foundation.HRESULT)ex.HResult; 549 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 554 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 562 private static winmdroot.Foundation.HRESULT get_ondragover(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 566 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 572 return winmdroot.Foundation.HRESULT.S_OK; 576 return (winmdroot.Foundation.HRESULT)ex.HResult; 583 private static winmdroot.Foundation.HRESULT put_ondragleave(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 587 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 593 return winmdroot.Foundation.HRESULT.S_OK; 597 return (winmdroot.Foundation.HRESULT)ex.HResult; 605 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 610 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 618 private static winmdroot.Foundation.HRESULT get_ondragleave(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 622 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 628 return winmdroot.Foundation.HRESULT.S_OK; 632 return (winmdroot.Foundation.HRESULT)ex.HResult; 639 private static winmdroot.Foundation.HRESULT put_ondrop(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 643 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 649 return winmdroot.Foundation.HRESULT.S_OK; 653 return (winmdroot.Foundation.HRESULT)ex.HResult; 661 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 666 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 674 private static winmdroot.Foundation.HRESULT get_ondrop(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 678 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 684 return winmdroot.Foundation.HRESULT.S_OK; 688 return (winmdroot.Foundation.HRESULT)ex.HResult; 695 private static winmdroot.Foundation.HRESULT put_onbeforecut(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 699 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 705 return winmdroot.Foundation.HRESULT.S_OK; 709 return (winmdroot.Foundation.HRESULT)ex.HResult; 717 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 722 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 730 private static winmdroot.Foundation.HRESULT get_onbeforecut(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 734 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 740 return winmdroot.Foundation.HRESULT.S_OK; 744 return (winmdroot.Foundation.HRESULT)ex.HResult; 751 private static winmdroot.Foundation.HRESULT put_oncut(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 755 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 761 return winmdroot.Foundation.HRESULT.S_OK; 765 return (winmdroot.Foundation.HRESULT)ex.HResult; 773 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 778 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 786 private static winmdroot.Foundation.HRESULT get_oncut(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 790 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 796 return winmdroot.Foundation.HRESULT.S_OK; 800 return (winmdroot.Foundation.HRESULT)ex.HResult; 807 private static winmdroot.Foundation.HRESULT put_onbeforecopy(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 811 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 817 return winmdroot.Foundation.HRESULT.S_OK; 821 return (winmdroot.Foundation.HRESULT)ex.HResult; 829 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 834 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 842 private static winmdroot.Foundation.HRESULT get_onbeforecopy(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 846 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 852 return winmdroot.Foundation.HRESULT.S_OK; 856 return (winmdroot.Foundation.HRESULT)ex.HResult; 863 private static winmdroot.Foundation.HRESULT put_oncopy(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 867 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 873 return winmdroot.Foundation.HRESULT.S_OK; 877 return (winmdroot.Foundation.HRESULT)ex.HResult; 885 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 890 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 898 private static winmdroot.Foundation.HRESULT get_oncopy(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 902 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 908 return winmdroot.Foundation.HRESULT.S_OK; 912 return (winmdroot.Foundation.HRESULT)ex.HResult; 919 private static winmdroot.Foundation.HRESULT put_onbeforepaste(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 923 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 929 return winmdroot.Foundation.HRESULT.S_OK; 933 return (winmdroot.Foundation.HRESULT)ex.HResult; 941 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 946 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 954 private static winmdroot.Foundation.HRESULT get_onbeforepaste(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 958 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 964 return winmdroot.Foundation.HRESULT.S_OK; 968 return (winmdroot.Foundation.HRESULT)ex.HResult; 975 private static winmdroot.Foundation.HRESULT put_onpaste(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 979 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 985 return winmdroot.Foundation.HRESULT.S_OK; 989 return (winmdroot.Foundation.HRESULT)ex.HResult; 997 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1002 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1010 private static winmdroot.Foundation.HRESULT get_onpaste(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1014 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1020 return winmdroot.Foundation.HRESULT.S_OK; 1024 return (winmdroot.Foundation.HRESULT)ex.HResult; 1031 private static winmdroot.Foundation.HRESULT get_currentStyle(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLCurrentStyle** p) 1035 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1041 return winmdroot.Foundation.HRESULT.S_OK; 1045 return (winmdroot.Foundation.HRESULT)ex.HResult; 1054 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLCurrentStyle** ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1062 private static winmdroot.Foundation.HRESULT put_onpropertychange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1066 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1072 return winmdroot.Foundation.HRESULT.S_OK; 1076 return (winmdroot.Foundation.HRESULT)ex.HResult; 1084 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1089 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1097 private static winmdroot.Foundation.HRESULT get_onpropertychange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1101 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1107 return winmdroot.Foundation.HRESULT.S_OK; 1111 return (winmdroot.Foundation.HRESULT)ex.HResult; 1118 private static winmdroot.Foundation.HRESULT getClientRects(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLRectCollection** pRectCol) 1122 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1131 return (winmdroot.Foundation.HRESULT)ex.HResult; 1138 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLRectCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 1145 private static winmdroot.Foundation.HRESULT getBoundingClientRect(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLRect** pRect) 1149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1158 return (winmdroot.Foundation.HRESULT)ex.HResult; 1165 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLRect** ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 1172 private static winmdroot.Foundation.HRESULT setExpression(IHTMLElement2* pThis, winmdroot.Foundation.BSTR propname, winmdroot.Foundation.BSTR expression, winmdroot.Foundation.BSTR language) 1176 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1185 return (winmdroot.Foundation.HRESULT)ex.HResult; 1191 ((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(); 1197 private static winmdroot.Foundation.HRESULT getExpression(IHTMLElement2* pThis, winmdroot.Foundation.BSTR propname, winmdroot.System.Variant.VARIANT* expression) 1201 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1210 return (winmdroot.Foundation.HRESULT)ex.HResult; 1217 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLElement2*)Unsafe.AsPointer(ref this), propname, &__retVal).ThrowOnFailure(); 1224 private static winmdroot.Foundation.HRESULT removeExpression(IHTMLElement2* pThis, winmdroot.Foundation.BSTR propname, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 1228 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1237 return (winmdroot.Foundation.HRESULT)ex.HResult; 1244 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLElement2*)Unsafe.AsPointer(ref this), propname, &__retVal).ThrowOnFailure(); 1251 private static winmdroot.Foundation.HRESULT put_tabIndex(IHTMLElement2* pThis, short v) 1255 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1264 return (winmdroot.Foundation.HRESULT)ex.HResult; 1268 public winmdroot.Foundation.HRESULT put_tabIndex(short v) 1270 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,short ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLElement2*)Unsafe.AsPointer(ref this), v); 1274 internal unsafe winmdroot.Foundation.HRESULT get_tabIndex(out short p) 1278 winmdroot.Foundation.HRESULT __result = this.get_tabIndex(pLocal); 1286 private static winmdroot.Foundation.HRESULT get_tabIndex(IHTMLElement2* pThis, short* p) 1290 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1299 return (winmdroot.Foundation.HRESULT)ex.HResult; 1303 public unsafe winmdroot.Foundation.HRESULT get_tabIndex(short* p) 1305 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,short* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 1311 private static winmdroot.Foundation.HRESULT focus(IHTMLElement2* pThis) 1315 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1324 return (winmdroot.Foundation.HRESULT)ex.HResult; 1328 public winmdroot.Foundation.HRESULT focus() 1330 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLElement2*)Unsafe.AsPointer(ref this)); 1336 private static winmdroot.Foundation.HRESULT put_accessKey(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v) 1340 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1346 return winmdroot.Foundation.HRESULT.S_OK; 1350 return (winmdroot.Foundation.HRESULT)ex.HResult; 1358 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1363 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1371 private static winmdroot.Foundation.HRESULT get_accessKey(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 1375 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1381 return winmdroot.Foundation.HRESULT.S_OK; 1385 return (winmdroot.Foundation.HRESULT)ex.HResult; 1392 private static winmdroot.Foundation.HRESULT put_onblur(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1396 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1402 return winmdroot.Foundation.HRESULT.S_OK; 1406 return (winmdroot.Foundation.HRESULT)ex.HResult; 1414 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1419 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1427 private static winmdroot.Foundation.HRESULT get_onblur(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1431 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1437 return winmdroot.Foundation.HRESULT.S_OK; 1441 return (winmdroot.Foundation.HRESULT)ex.HResult; 1448 private static winmdroot.Foundation.HRESULT put_onfocus(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1452 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1458 return winmdroot.Foundation.HRESULT.S_OK; 1462 return (winmdroot.Foundation.HRESULT)ex.HResult; 1470 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1475 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1483 private static winmdroot.Foundation.HRESULT get_onfocus(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1487 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1493 return winmdroot.Foundation.HRESULT.S_OK; 1497 return (winmdroot.Foundation.HRESULT)ex.HResult; 1504 private static winmdroot.Foundation.HRESULT put_onresize(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1508 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1514 return winmdroot.Foundation.HRESULT.S_OK; 1518 return (winmdroot.Foundation.HRESULT)ex.HResult; 1526 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1531 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1539 private static winmdroot.Foundation.HRESULT get_onresize(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1543 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1549 return winmdroot.Foundation.HRESULT.S_OK; 1553 return (winmdroot.Foundation.HRESULT)ex.HResult; 1560 private static winmdroot.Foundation.HRESULT blur(IHTMLElement2* pThis) 1564 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1573 return (winmdroot.Foundation.HRESULT)ex.HResult; 1577 public winmdroot.Foundation.HRESULT blur() 1579 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLElement2*)Unsafe.AsPointer(ref this)); 1585 private static winmdroot.Foundation.HRESULT addFilter(IHTMLElement2* pThis, winmdroot.System.Com.IUnknown* pUnk) 1589 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1598 return (winmdroot.Foundation.HRESULT)ex.HResult; 1604 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLElement2*)Unsafe.AsPointer(ref this), pUnk).ThrowOnFailure(); 1610 private static winmdroot.Foundation.HRESULT removeFilter(IHTMLElement2* pThis, winmdroot.System.Com.IUnknown* pUnk) 1614 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1623 return (winmdroot.Foundation.HRESULT)ex.HResult; 1629 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLElement2*)Unsafe.AsPointer(ref this), pUnk).ThrowOnFailure(); 1633 internal unsafe winmdroot.Foundation.HRESULT get_clientHeight(out int p) 1637 winmdroot.Foundation.HRESULT __result = this.get_clientHeight(pLocal); 1645 private static winmdroot.Foundation.HRESULT get_clientHeight(IHTMLElement2* pThis, int* p) 1649 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1658 return (winmdroot.Foundation.HRESULT)ex.HResult; 1662 public unsafe winmdroot.Foundation.HRESULT get_clientHeight(int* p) 1664 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 1668 internal unsafe winmdroot.Foundation.HRESULT get_clientWidth(out int p) 1672 winmdroot.Foundation.HRESULT __result = this.get_clientWidth(pLocal); 1680 private static winmdroot.Foundation.HRESULT get_clientWidth(IHTMLElement2* pThis, int* p) 1684 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1693 return (winmdroot.Foundation.HRESULT)ex.HResult; 1697 public unsafe winmdroot.Foundation.HRESULT get_clientWidth(int* p) 1699 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 1703 internal unsafe winmdroot.Foundation.HRESULT get_clientTop(out int p) 1707 winmdroot.Foundation.HRESULT __result = this.get_clientTop(pLocal); 1715 private static winmdroot.Foundation.HRESULT get_clientTop(IHTMLElement2* pThis, int* p) 1719 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1728 return (winmdroot.Foundation.HRESULT)ex.HResult; 1732 public unsafe winmdroot.Foundation.HRESULT get_clientTop(int* p) 1734 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 1738 internal unsafe winmdroot.Foundation.HRESULT get_clientLeft(out int p) 1742 winmdroot.Foundation.HRESULT __result = this.get_clientLeft(pLocal); 1750 private static winmdroot.Foundation.HRESULT get_clientLeft(IHTMLElement2* pThis, int* p) 1754 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1763 return (winmdroot.Foundation.HRESULT)ex.HResult; 1767 public unsafe winmdroot.Foundation.HRESULT get_clientLeft(int* p) 1769 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 1773 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 1777 winmdroot.Foundation.HRESULT __result = this.attachEvent(@event, pDisp, pfResultLocal); 1785 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLElement2* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 1789 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1798 return (winmdroot.Foundation.HRESULT)ex.HResult; 1802 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 1804 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLElement2*)Unsafe.AsPointer(ref this), @event, pDisp, pfResult); 1810 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLElement2* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 1814 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1823 return (winmdroot.Foundation.HRESULT)ex.HResult; 1827 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 1829 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLElement2*)Unsafe.AsPointer(ref this), @event, pDisp); 1835 private static winmdroot.Foundation.HRESULT get_readyState(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1839 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1845 return winmdroot.Foundation.HRESULT.S_OK; 1849 return (winmdroot.Foundation.HRESULT)ex.HResult; 1858 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1866 private static winmdroot.Foundation.HRESULT put_onreadystatechange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1870 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1876 return winmdroot.Foundation.HRESULT.S_OK; 1880 return (winmdroot.Foundation.HRESULT)ex.HResult; 1888 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1893 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1901 private static winmdroot.Foundation.HRESULT get_onreadystatechange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1905 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1911 return winmdroot.Foundation.HRESULT.S_OK; 1915 return (winmdroot.Foundation.HRESULT)ex.HResult; 1922 private static winmdroot.Foundation.HRESULT put_onrowsdelete(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1926 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1932 return winmdroot.Foundation.HRESULT.S_OK; 1936 return (winmdroot.Foundation.HRESULT)ex.HResult; 1944 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1949 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1957 private static winmdroot.Foundation.HRESULT get_onrowsdelete(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 1961 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1967 return winmdroot.Foundation.HRESULT.S_OK; 1971 return (winmdroot.Foundation.HRESULT)ex.HResult; 1978 private static winmdroot.Foundation.HRESULT put_onrowsinserted(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 1982 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1988 return winmdroot.Foundation.HRESULT.S_OK; 1992 return (winmdroot.Foundation.HRESULT)ex.HResult; 2000 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2005 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2013 private static winmdroot.Foundation.HRESULT get_onrowsinserted(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 2017 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2023 return winmdroot.Foundation.HRESULT.S_OK; 2027 return (winmdroot.Foundation.HRESULT)ex.HResult; 2034 private static winmdroot.Foundation.HRESULT put_oncellchange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 2038 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2044 return winmdroot.Foundation.HRESULT.S_OK; 2048 return (winmdroot.Foundation.HRESULT)ex.HResult; 2056 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2061 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2069 private static winmdroot.Foundation.HRESULT get_oncellchange(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 2073 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2079 return winmdroot.Foundation.HRESULT.S_OK; 2083 return (winmdroot.Foundation.HRESULT)ex.HResult; 2090 private static winmdroot.Foundation.HRESULT put_dir(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v) 2094 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2100 return winmdroot.Foundation.HRESULT.S_OK; 2104 return (winmdroot.Foundation.HRESULT)ex.HResult; 2112 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2117 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2125 private static winmdroot.Foundation.HRESULT get_dir(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 2129 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2135 return winmdroot.Foundation.HRESULT.S_OK; 2139 return (winmdroot.Foundation.HRESULT)ex.HResult; 2146 private static winmdroot.Foundation.HRESULT createControlRange(IHTMLElement2* pThis, winmdroot.System.Com.IDispatch** range) 2150 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2159 return (winmdroot.Foundation.HRESULT)ex.HResult; 2166 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 2171 internal unsafe winmdroot.Foundation.HRESULT get_scrollHeight(out int p) 2175 winmdroot.Foundation.HRESULT __result = this.get_scrollHeight(pLocal); 2183 private static winmdroot.Foundation.HRESULT get_scrollHeight(IHTMLElement2* pThis, int* p) 2187 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2196 return (winmdroot.Foundation.HRESULT)ex.HResult; 2200 public unsafe winmdroot.Foundation.HRESULT get_scrollHeight(int* p) 2202 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 2206 internal unsafe winmdroot.Foundation.HRESULT get_scrollWidth(out int p) 2210 winmdroot.Foundation.HRESULT __result = this.get_scrollWidth(pLocal); 2218 private static winmdroot.Foundation.HRESULT get_scrollWidth(IHTMLElement2* pThis, int* p) 2222 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2231 return (winmdroot.Foundation.HRESULT)ex.HResult; 2235 public unsafe winmdroot.Foundation.HRESULT get_scrollWidth(int* p) 2237 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 2243 private static winmdroot.Foundation.HRESULT put_scrollTop(IHTMLElement2* pThis, int v) 2247 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2256 return (winmdroot.Foundation.HRESULT)ex.HResult; 2260 public winmdroot.Foundation.HRESULT put_scrollTop(int v) 2262 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLElement2*)Unsafe.AsPointer(ref this), v); 2266 internal unsafe winmdroot.Foundation.HRESULT get_scrollTop(out int p) 2270 winmdroot.Foundation.HRESULT __result = this.get_scrollTop(pLocal); 2278 private static winmdroot.Foundation.HRESULT get_scrollTop(IHTMLElement2* pThis, int* p) 2282 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2291 return (winmdroot.Foundation.HRESULT)ex.HResult; 2295 public unsafe winmdroot.Foundation.HRESULT get_scrollTop(int* p) 2297 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 2303 private static winmdroot.Foundation.HRESULT put_scrollLeft(IHTMLElement2* pThis, int v) 2307 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2316 return (winmdroot.Foundation.HRESULT)ex.HResult; 2320 public winmdroot.Foundation.HRESULT put_scrollLeft(int v) 2322 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLElement2*)Unsafe.AsPointer(ref this), v); 2326 internal unsafe winmdroot.Foundation.HRESULT get_scrollLeft(out int p) 2330 winmdroot.Foundation.HRESULT __result = this.get_scrollLeft(pLocal); 2338 private static winmdroot.Foundation.HRESULT get_scrollLeft(IHTMLElement2* pThis, int* p) 2342 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2351 return (winmdroot.Foundation.HRESULT)ex.HResult; 2355 public unsafe winmdroot.Foundation.HRESULT get_scrollLeft(int* p) 2357 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 2363 private static winmdroot.Foundation.HRESULT clearAttributes(IHTMLElement2* pThis) 2367 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2376 return (winmdroot.Foundation.HRESULT)ex.HResult; 2382 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLElement2*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 2388 private static winmdroot.Foundation.HRESULT mergeAttributes(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLElement* mergeThis) 2392 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2401 return (winmdroot.Foundation.HRESULT)ex.HResult; 2407 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLElement2*)Unsafe.AsPointer(ref this), mergeThis).ThrowOnFailure(); 2413 private static winmdroot.Foundation.HRESULT put_oncontextmenu(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 2417 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2423 return winmdroot.Foundation.HRESULT.S_OK; 2427 return (winmdroot.Foundation.HRESULT)ex.HResult; 2435 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2440 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2448 private static winmdroot.Foundation.HRESULT get_oncontextmenu(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 2452 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2458 return winmdroot.Foundation.HRESULT.S_OK; 2462 return (winmdroot.Foundation.HRESULT)ex.HResult; 2469 private static winmdroot.Foundation.HRESULT insertAdjacentElement(IHTMLElement2* pThis, winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement* insertedElement, winmdroot.Web.MsHtml.IHTMLElement** inserted) 2473 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2482 return (winmdroot.Foundation.HRESULT)ex.HResult; 2486 public unsafe winmdroot.Foundation.HRESULT insertAdjacentElement(winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement* insertedElement, winmdroot.Web.MsHtml.IHTMLElement** inserted) 2488 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); 2494 private static winmdroot.Foundation.HRESULT applyElement(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLElement* apply, winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement** applied) 2498 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2507 return (winmdroot.Foundation.HRESULT)ex.HResult; 2514 ((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(); 2521 private static winmdroot.Foundation.HRESULT getAdjacentText(IHTMLElement2* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR* text) 2525 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2534 return (winmdroot.Foundation.HRESULT)ex.HResult; 2541 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLElement2*)Unsafe.AsPointer(ref this), where, &__retVal).ThrowOnFailure(); 2548 private static winmdroot.Foundation.HRESULT replaceAdjacentText(IHTMLElement2* pThis, winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR newText, winmdroot.Foundation.BSTR* oldText) 2552 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2561 return (winmdroot.Foundation.HRESULT)ex.HResult; 2568 ((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(); 2573 internal unsafe winmdroot.Foundation.HRESULT get_canHaveChildren(out winmdroot.Foundation.VARIANT_BOOL p) 2577 winmdroot.Foundation.HRESULT __result = this.get_canHaveChildren(pLocal); 2585 private static winmdroot.Foundation.HRESULT get_canHaveChildren(IHTMLElement2* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 2589 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2598 return (winmdroot.Foundation.HRESULT)ex.HResult; 2602 public unsafe winmdroot.Foundation.HRESULT get_canHaveChildren(winmdroot.Foundation.VARIANT_BOOL* p) 2604 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLElement2*)Unsafe.AsPointer(ref this), p); 2620 private static winmdroot.Foundation.HRESULT addBehavior(IHTMLElement2* pThis, winmdroot.Foundation.BSTR bstrUrl, winmdroot.System.Variant.VARIANT* pvarFactory, int* pCookie) 2624 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2633 return (winmdroot.Foundation.HRESULT)ex.HResult; 2640 ((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(); 2647 private static winmdroot.Foundation.HRESULT removeBehavior(IHTMLElement2* pThis, int cookie, winmdroot.Foundation.VARIANT_BOOL* pfResult) 2651 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2660 return (winmdroot.Foundation.HRESULT)ex.HResult; 2667 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[96])((IHTMLElement2*)Unsafe.AsPointer(ref this), cookie, &__retVal).ThrowOnFailure(); 2674 private static winmdroot.Foundation.HRESULT get_runtimeStyle(IHTMLElement2* pThis, winmdroot.Web.MsHtml.IHTMLStyle** p) 2678 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2684 return winmdroot.Foundation.HRESULT.S_OK; 2688 return (winmdroot.Foundation.HRESULT)ex.HResult; 2697 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLStyle** ,winmdroot.Foundation.HRESULT>)lpVtbl[97])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2705 private static winmdroot.Foundation.HRESULT get_behaviorUrns(IHTMLElement2* pThis, winmdroot.System.Com.IDispatch** p) 2709 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2715 return winmdroot.Foundation.HRESULT.S_OK; 2719 return (winmdroot.Foundation.HRESULT)ex.HResult; 2728 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[98])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2736 private static winmdroot.Foundation.HRESULT put_tagUrn(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v) 2740 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2746 return winmdroot.Foundation.HRESULT.S_OK; 2750 return (winmdroot.Foundation.HRESULT)ex.HResult; 2758 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[99])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2763 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[100])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2771 private static winmdroot.Foundation.HRESULT get_tagUrn(IHTMLElement2* pThis, winmdroot.Foundation.BSTR* p) 2775 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2781 return winmdroot.Foundation.HRESULT.S_OK; 2785 return (winmdroot.Foundation.HRESULT)ex.HResult; 2792 private static winmdroot.Foundation.HRESULT put_onbeforeeditfocus(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT v) 2796 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2802 return winmdroot.Foundation.HRESULT.S_OK; 2806 return (winmdroot.Foundation.HRESULT)ex.HResult; 2814 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[101])((IHTMLElement2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2819 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[102])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2827 private static winmdroot.Foundation.HRESULT get_onbeforeeditfocus(IHTMLElement2* pThis, winmdroot.System.Variant.VARIANT* p) 2831 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2837 return winmdroot.Foundation.HRESULT.S_OK; 2841 return (winmdroot.Foundation.HRESULT)ex.HResult; 2848 private static winmdroot.Foundation.HRESULT get_readyStateValue(IHTMLElement2* pThis, int* p) 2852 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2858 return winmdroot.Foundation.HRESULT.S_OK; 2862 return (winmdroot.Foundation.HRESULT)ex.HResult; 2871 ((delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[103])((IHTMLElement2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2879 private static winmdroot.Foundation.HRESULT getElementsByTagName(IHTMLElement2* pThis, winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 2883 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2892 return (winmdroot.Foundation.HRESULT)ex.HResult; 2896 public unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl) 2898 return ((delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[104])((IHTMLElement2*)Unsafe.AsPointer(ref this), v, pelColl); 2901 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2905 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 2922 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2928 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2930 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2932 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2934 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 2936 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_scopeName_8; 2938 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> setCapture_9; 2940 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT> releaseCapture_10; 2942 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onlosecapture_11; 2944 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onlosecapture_12; 2946 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> componentFromPoint_13; 2948 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> doScroll_14; 2950 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onscroll_15; 2952 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onscroll_16; 2954 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondrag_17; 2956 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondrag_18; 2958 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragend_19; 2960 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragend_20; 2962 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragenter_21; 2964 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragenter_22; 2966 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragover_23; 2968 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragover_24; 2970 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondragleave_25; 2972 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondragleave_26; 2974 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondrop_27; 2976 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondrop_28; 2978 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforecut_29; 2980 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforecut_30; 2982 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncut_31; 2984 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncut_32; 2986 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforecopy_33; 2988 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforecopy_34; 2990 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncopy_35; 2992 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncopy_36; 2994 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforepaste_37; 2996 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforepaste_38; 2998 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onpaste_39; 3000 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onpaste_40; 3002 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLCurrentStyle** ,winmdroot.Foundation.HRESULT> get_currentStyle_41; 3004 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onpropertychange_42; 3006 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onpropertychange_43; 3008 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLRectCollection** ,winmdroot.Foundation.HRESULT> getClientRects_44; 3010 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLRect** ,winmdroot.Foundation.HRESULT> getBoundingClientRect_45; 3012 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> setExpression_46; 3014 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getExpression_47; 3016 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeExpression_48; 3018 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,short ,winmdroot.Foundation.HRESULT> put_tabIndex_49; 3020 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,short* ,winmdroot.Foundation.HRESULT> get_tabIndex_50; 3022 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT> focus_51; 3024 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_accessKey_52; 3026 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_accessKey_53; 3028 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onblur_54; 3030 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onblur_55; 3032 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onfocus_56; 3034 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onfocus_57; 3036 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onresize_58; 3038 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onresize_59; 3040 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT> blur_60; 3042 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> addFilter_61; 3044 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IUnknown* ,winmdroot.Foundation.HRESULT> removeFilter_62; 3046 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_clientHeight_63; 3048 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_clientWidth_64; 3050 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_clientTop_65; 3052 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_clientLeft_66; 3054 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_67; 3056 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_68; 3058 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_readyState_69; 3060 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onreadystatechange_70; 3062 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onreadystatechange_71; 3064 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowsdelete_72; 3066 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowsdelete_73; 3068 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onrowsinserted_74; 3070 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onrowsinserted_75; 3072 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncellchange_76; 3074 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncellchange_77; 3076 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dir_78; 3078 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dir_79; 3080 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> createControlRange_80; 3082 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_scrollHeight_81; 3084 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_scrollWidth_82; 3086 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.HRESULT> put_scrollTop_83; 3088 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_scrollTop_84; 3090 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.HRESULT> put_scrollLeft_85; 3092 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_scrollLeft_86; 3094 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.HRESULT> clearAttributes_87; 3096 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.HRESULT> mergeAttributes_88; 3098 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncontextmenu_89; 3100 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncontextmenu_90; 3102 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> insertAdjacentElement_91; 3104 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> applyElement_92; 3106 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> getAdjacentText_93; 3108 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> replaceAdjacentText_94; 3110 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_canHaveChildren_95; 3112 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> addBehavior_96; 3114 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeBehavior_97; 3116 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Web.MsHtml.IHTMLStyle** ,winmdroot.Foundation.HRESULT> get_runtimeStyle_98; 3118 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_behaviorUrns_99; 3120 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_tagUrn_100; 3122 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_tagUrn_101; 3124 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeeditfocus_102; 3126 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeeditfocus_103; 3128 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,int* ,winmdroot.Foundation.HRESULT> get_readyStateValue_104; 3130 internal delegate *unmanaged [Stdcall]<IHTMLElement2*,winmdroot.Foundation.BSTR ,winmdroot.Web.MsHtml.IHTMLElementCollection** ,winmdroot.Foundation.HRESULT> getElementsByTagName_105; 3258winmdroot.Foundation.HRESULT setCapture(winmdroot.Foundation.VARIANT_BOOL containerCapture); 3261winmdroot.Foundation.HRESULT releaseCapture(); 3270 unsafe winmdroot.Foundation.HRESULT componentFromPoint(int x, int y, winmdroot.Foundation.BSTR* component); 3273winmdroot.Foundation.HRESULT doScroll(winmdroot.System.Variant.VARIANT component); 3365 unsafe winmdroot.Foundation.HRESULT getClientRects(winmdroot.Web.MsHtml.IHTMLRectCollection** pRectCol); 3368 unsafe winmdroot.Foundation.HRESULT getBoundingClientRect(winmdroot.Web.MsHtml.IHTMLRect** pRect); 3371winmdroot.Foundation.HRESULT setExpression(winmdroot.Foundation.BSTR propname, winmdroot.Foundation.BSTR expression, winmdroot.Foundation.BSTR language); 3374 unsafe winmdroot.Foundation.HRESULT getExpression(winmdroot.Foundation.BSTR propname, winmdroot.System.Variant.VARIANT* expression); 3377 unsafe winmdroot.Foundation.HRESULT removeExpression(winmdroot.Foundation.BSTR propname, winmdroot.Foundation.VARIANT_BOOL* pfSuccess); 3380winmdroot.Foundation.HRESULT put_tabIndex(short v); 3383 unsafe winmdroot.Foundation.HRESULT get_tabIndex(short* p); 3386winmdroot.Foundation.HRESULT focus(); 3413winmdroot.Foundation.HRESULT blur(); 3416 unsafe winmdroot.Foundation.HRESULT addFilter(winmdroot.System.Com.IUnknown* pUnk); 3419 unsafe winmdroot.Foundation.HRESULT removeFilter(winmdroot.System.Com.IUnknown* pUnk); 3422 unsafe winmdroot.Foundation.HRESULT get_clientHeight(int* p); 3425 unsafe winmdroot.Foundation.HRESULT get_clientWidth(int* p); 3428 unsafe winmdroot.Foundation.HRESULT get_clientTop(int* p); 3431 unsafe winmdroot.Foundation.HRESULT get_clientLeft(int* p); 3434 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 3437 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp); 3475 unsafe winmdroot.Foundation.HRESULT createControlRange(winmdroot.System.Com.IDispatch** range); 3478 unsafe winmdroot.Foundation.HRESULT get_scrollHeight(int* p); 3481 unsafe winmdroot.Foundation.HRESULT get_scrollWidth(int* p); 3484winmdroot.Foundation.HRESULT put_scrollTop(int v); 3487 unsafe winmdroot.Foundation.HRESULT get_scrollTop(int* p); 3490winmdroot.Foundation.HRESULT put_scrollLeft(int v); 3493 unsafe winmdroot.Foundation.HRESULT get_scrollLeft(int* p); 3496winmdroot.Foundation.HRESULT clearAttributes(); 3499 unsafe winmdroot.Foundation.HRESULT mergeAttributes(winmdroot.Web.MsHtml.IHTMLElement* mergeThis); 3508 unsafe winmdroot.Foundation.HRESULT insertAdjacentElement(winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement* insertedElement, winmdroot.Web.MsHtml.IHTMLElement** inserted); 3511 unsafe winmdroot.Foundation.HRESULT applyElement(winmdroot.Web.MsHtml.IHTMLElement* apply, winmdroot.Foundation.BSTR where, winmdroot.Web.MsHtml.IHTMLElement** applied); 3514 unsafe winmdroot.Foundation.HRESULT getAdjacentText(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR* text); 3517 unsafe winmdroot.Foundation.HRESULT replaceAdjacentText(winmdroot.Foundation.BSTR where, winmdroot.Foundation.BSTR newText, winmdroot.Foundation.BSTR* oldText); 3520 unsafe winmdroot.Foundation.HRESULT get_canHaveChildren(winmdroot.Foundation.VARIANT_BOOL* p); 3523 unsafe winmdroot.Foundation.HRESULT addBehavior(winmdroot.Foundation.BSTR bstrUrl, winmdroot.System.Variant.VARIANT* pvarFactory, int* pCookie); 3526 unsafe winmdroot.Foundation.HRESULT removeBehavior(int cookie, winmdroot.Foundation.VARIANT_BOOL* pfResult); 3556 unsafe winmdroot.Foundation.HRESULT getElementsByTagName(winmdroot.Foundation.BSTR v, winmdroot.Web.MsHtml.IHTMLElementCollection** pelColl);
Windows.Win32.IHTMLElement3.g.cs (280)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLElement3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLElement3*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLElement3*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLElement3*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLElement3*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLElement3*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 123 private static winmdroot.Foundation.HRESULT mergeAttributes(IHTMLElement3* pThis, winmdroot.Web.MsHtml.IHTMLElement* mergeThis, winmdroot.System.Variant.VARIANT* pvarFlags) 127 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 136 return (winmdroot.Foundation.HRESULT)ex.HResult; 142 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLElement3*)Unsafe.AsPointer(ref this), mergeThis, pvarFlags).ThrowOnFailure(); 148 private static winmdroot.Foundation.HRESULT get_isMultiLine(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 152 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return winmdroot.Foundation.HRESULT.S_OK; 162 return (winmdroot.Foundation.HRESULT)ex.HResult; 171 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 179 private static winmdroot.Foundation.HRESULT get_canHaveHTML(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 183 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 189 return winmdroot.Foundation.HRESULT.S_OK; 193 return (winmdroot.Foundation.HRESULT)ex.HResult; 202 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 210 private static winmdroot.Foundation.HRESULT put_onlayoutcomplete(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 214 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 220 return winmdroot.Foundation.HRESULT.S_OK; 224 return (winmdroot.Foundation.HRESULT)ex.HResult; 232 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 237 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 245 private static winmdroot.Foundation.HRESULT get_onlayoutcomplete(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 249 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 255 return winmdroot.Foundation.HRESULT.S_OK; 259 return (winmdroot.Foundation.HRESULT)ex.HResult; 266 private static winmdroot.Foundation.HRESULT put_onpage(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 270 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 276 return winmdroot.Foundation.HRESULT.S_OK; 280 return (winmdroot.Foundation.HRESULT)ex.HResult; 288 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 293 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 301 private static winmdroot.Foundation.HRESULT get_onpage(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 305 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 311 return winmdroot.Foundation.HRESULT.S_OK; 315 return (winmdroot.Foundation.HRESULT)ex.HResult; 322 private static winmdroot.Foundation.HRESULT put_inflateBlock(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL v) 326 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 332 return winmdroot.Foundation.HRESULT.S_OK; 336 return (winmdroot.Foundation.HRESULT)ex.HResult; 344 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 349 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 357 private static winmdroot.Foundation.HRESULT get_inflateBlock(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 361 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 367 return winmdroot.Foundation.HRESULT.S_OK; 371 return (winmdroot.Foundation.HRESULT)ex.HResult; 378 private static winmdroot.Foundation.HRESULT put_onbeforedeactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 382 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 388 return winmdroot.Foundation.HRESULT.S_OK; 392 return (winmdroot.Foundation.HRESULT)ex.HResult; 400 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 405 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 413 private static winmdroot.Foundation.HRESULT get_onbeforedeactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 417 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 423 return winmdroot.Foundation.HRESULT.S_OK; 427 return (winmdroot.Foundation.HRESULT)ex.HResult; 434 private static winmdroot.Foundation.HRESULT setActive(IHTMLElement3* pThis) 438 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 447 return (winmdroot.Foundation.HRESULT)ex.HResult; 453 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLElement3*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 459 private static winmdroot.Foundation.HRESULT put_contentEditable(IHTMLElement3* pThis, winmdroot.Foundation.BSTR v) 463 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 469 return winmdroot.Foundation.HRESULT.S_OK; 473 return (winmdroot.Foundation.HRESULT)ex.HResult; 481 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 486 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 494 private static winmdroot.Foundation.HRESULT get_contentEditable(IHTMLElement3* pThis, winmdroot.Foundation.BSTR* p) 498 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 504 return winmdroot.Foundation.HRESULT.S_OK; 508 return (winmdroot.Foundation.HRESULT)ex.HResult; 515 private static winmdroot.Foundation.HRESULT get_isContentEditable(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 519 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 525 return winmdroot.Foundation.HRESULT.S_OK; 529 return (winmdroot.Foundation.HRESULT)ex.HResult; 538 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 546 private static winmdroot.Foundation.HRESULT put_hideFocus(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL v) 550 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 556 return winmdroot.Foundation.HRESULT.S_OK; 560 return (winmdroot.Foundation.HRESULT)ex.HResult; 568 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 573 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 581 private static winmdroot.Foundation.HRESULT get_hideFocus(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 585 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 591 return winmdroot.Foundation.HRESULT.S_OK; 595 return (winmdroot.Foundation.HRESULT)ex.HResult; 602 private static winmdroot.Foundation.HRESULT put_disabled(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL v) 606 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 615 return (winmdroot.Foundation.HRESULT)ex.HResult; 619 public winmdroot.Foundation.HRESULT put_disabled(winmdroot.Foundation.VARIANT_BOOL v) 621 return ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLElement3*)Unsafe.AsPointer(ref this), v); 625 internal unsafe winmdroot.Foundation.HRESULT get_disabled(out winmdroot.Foundation.VARIANT_BOOL p) 629 winmdroot.Foundation.HRESULT __result = this.get_disabled(pLocal); 637 private static winmdroot.Foundation.HRESULT get_disabled(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 641 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 650 return (winmdroot.Foundation.HRESULT)ex.HResult; 654 public unsafe winmdroot.Foundation.HRESULT get_disabled(winmdroot.Foundation.VARIANT_BOOL* p) 656 return ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLElement3*)Unsafe.AsPointer(ref this), p); 662 private static winmdroot.Foundation.HRESULT get_isDisabled(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 666 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 672 return winmdroot.Foundation.HRESULT.S_OK; 676 return (winmdroot.Foundation.HRESULT)ex.HResult; 685 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 693 private static winmdroot.Foundation.HRESULT put_onmove(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 697 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 703 return winmdroot.Foundation.HRESULT.S_OK; 707 return (winmdroot.Foundation.HRESULT)ex.HResult; 715 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 720 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 728 private static winmdroot.Foundation.HRESULT get_onmove(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 732 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 738 return winmdroot.Foundation.HRESULT.S_OK; 742 return (winmdroot.Foundation.HRESULT)ex.HResult; 749 private static winmdroot.Foundation.HRESULT put_oncontrolselect(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 753 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 759 return winmdroot.Foundation.HRESULT.S_OK; 763 return (winmdroot.Foundation.HRESULT)ex.HResult; 771 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 776 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 784 private static winmdroot.Foundation.HRESULT get_oncontrolselect(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 788 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 794 return winmdroot.Foundation.HRESULT.S_OK; 798 return (winmdroot.Foundation.HRESULT)ex.HResult; 803 internal unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, in winmdroot.System.Variant.VARIANT pvarEventObject, out winmdroot.Foundation.VARIANT_BOOL pfCancelled) 809 winmdroot.Foundation.HRESULT __result = this.fireEvent(bstrEventName, pvarEventObjectLocal, pfCancelledLocal); 818 private static winmdroot.Foundation.HRESULT fireEvent(IHTMLElement3* pThis, winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 822 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 831 return (winmdroot.Foundation.HRESULT)ex.HResult; 835 public unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled) 837 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); 843 private static winmdroot.Foundation.HRESULT put_onresizestart(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 847 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 853 return winmdroot.Foundation.HRESULT.S_OK; 857 return (winmdroot.Foundation.HRESULT)ex.HResult; 865 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 870 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 878 private static winmdroot.Foundation.HRESULT get_onresizestart(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 882 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 888 return winmdroot.Foundation.HRESULT.S_OK; 892 return (winmdroot.Foundation.HRESULT)ex.HResult; 899 private static winmdroot.Foundation.HRESULT put_onresizeend(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 903 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 909 return winmdroot.Foundation.HRESULT.S_OK; 913 return (winmdroot.Foundation.HRESULT)ex.HResult; 921 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 926 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 934 private static winmdroot.Foundation.HRESULT get_onresizeend(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 938 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 944 return winmdroot.Foundation.HRESULT.S_OK; 948 return (winmdroot.Foundation.HRESULT)ex.HResult; 955 private static winmdroot.Foundation.HRESULT put_onmovestart(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 959 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 965 return winmdroot.Foundation.HRESULT.S_OK; 969 return (winmdroot.Foundation.HRESULT)ex.HResult; 977 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 982 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 990 private static winmdroot.Foundation.HRESULT get_onmovestart(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 994 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1000 return winmdroot.Foundation.HRESULT.S_OK; 1004 return (winmdroot.Foundation.HRESULT)ex.HResult; 1011 private static winmdroot.Foundation.HRESULT put_onmoveend(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 1015 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1021 return winmdroot.Foundation.HRESULT.S_OK; 1025 return (winmdroot.Foundation.HRESULT)ex.HResult; 1033 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1038 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1046 private static winmdroot.Foundation.HRESULT get_onmoveend(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 1050 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1056 return winmdroot.Foundation.HRESULT.S_OK; 1060 return (winmdroot.Foundation.HRESULT)ex.HResult; 1067 private static winmdroot.Foundation.HRESULT put_onmouseenter(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 1071 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1077 return winmdroot.Foundation.HRESULT.S_OK; 1081 return (winmdroot.Foundation.HRESULT)ex.HResult; 1089 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1094 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1102 private static winmdroot.Foundation.HRESULT get_onmouseenter(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 1106 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1112 return winmdroot.Foundation.HRESULT.S_OK; 1116 return (winmdroot.Foundation.HRESULT)ex.HResult; 1123 private static winmdroot.Foundation.HRESULT put_onmouseleave(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 1127 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1133 return winmdroot.Foundation.HRESULT.S_OK; 1137 return (winmdroot.Foundation.HRESULT)ex.HResult; 1145 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1150 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1158 private static winmdroot.Foundation.HRESULT get_onmouseleave(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 1162 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1168 return winmdroot.Foundation.HRESULT.S_OK; 1172 return (winmdroot.Foundation.HRESULT)ex.HResult; 1179 private static winmdroot.Foundation.HRESULT put_onactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 1183 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1189 return winmdroot.Foundation.HRESULT.S_OK; 1193 return (winmdroot.Foundation.HRESULT)ex.HResult; 1201 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1206 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1214 private static winmdroot.Foundation.HRESULT get_onactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 1218 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1224 return winmdroot.Foundation.HRESULT.S_OK; 1228 return (winmdroot.Foundation.HRESULT)ex.HResult; 1235 private static winmdroot.Foundation.HRESULT put_ondeactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT v) 1239 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1245 return winmdroot.Foundation.HRESULT.S_OK; 1249 return (winmdroot.Foundation.HRESULT)ex.HResult; 1257 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLElement3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1262 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1270 private static winmdroot.Foundation.HRESULT get_ondeactivate(IHTMLElement3* pThis, winmdroot.System.Variant.VARIANT* p) 1274 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1280 return winmdroot.Foundation.HRESULT.S_OK; 1284 return (winmdroot.Foundation.HRESULT)ex.HResult; 1291 private static winmdroot.Foundation.HRESULT dragDrop(IHTMLElement3* pThis, winmdroot.Foundation.VARIANT_BOOL* pfRet) 1295 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1304 return (winmdroot.Foundation.HRESULT)ex.HResult; 1311 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 1318 private static winmdroot.Foundation.HRESULT get_glyphMode(IHTMLElement3* pThis, int* p) 1322 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1328 return winmdroot.Foundation.HRESULT.S_OK; 1332 return (winmdroot.Foundation.HRESULT)ex.HResult; 1341 ((delegate *unmanaged [Stdcall]<IHTMLElement3*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLElement3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1346 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1350 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 1367 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1373 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 1375 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 1377 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 1379 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 1381 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Web.MsHtml.IHTMLElement* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> mergeAttributes_8; 1383 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_isMultiLine_9; 1385 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_canHaveHTML_10; 1387 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onlayoutcomplete_11; 1389 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onlayoutcomplete_12; 1391 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onpage_13; 1393 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onpage_14; 1395 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_inflateBlock_15; 1397 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_inflateBlock_16; 1399 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforedeactivate_17; 1401 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforedeactivate_18; 1403 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.HRESULT> setActive_19; 1405 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_contentEditable_20; 1407 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_contentEditable_21; 1409 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_isContentEditable_22; 1411 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_hideFocus_23; 1413 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_hideFocus_24; 1415 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_disabled_25; 1417 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_disabled_26; 1419 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_isDisabled_27; 1421 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmove_28; 1423 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmove_29; 1425 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_oncontrolselect_30; 1427 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_oncontrolselect_31; 1429 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> fireEvent_32; 1431 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onresizestart_33; 1433 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onresizestart_34; 1435 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onresizeend_35; 1437 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onresizeend_36; 1439 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmovestart_37; 1441 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmovestart_38; 1443 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmoveend_39; 1445 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmoveend_40; 1447 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseenter_41; 1449 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseenter_42; 1451 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onmouseleave_43; 1453 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onmouseleave_44; 1455 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onactivate_45; 1457 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onactivate_46; 1459 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_ondeactivate_47; 1461 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_ondeactivate_48; 1463 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> dragDrop_49; 1465 internal delegate *unmanaged [Stdcall]<IHTMLElement3*,int* ,winmdroot.Foundation.HRESULT> get_glyphMode_50; 1533 unsafe winmdroot.Foundation.HRESULT mergeAttributes(winmdroot.Web.MsHtml.IHTMLElement* mergeThis, winmdroot.System.Variant.VARIANT* pvarFlags); 1570winmdroot.Foundation.HRESULT setActive(); 1590winmdroot.Foundation.HRESULT put_disabled(winmdroot.Foundation.VARIANT_BOOL v); 1593 unsafe winmdroot.Foundation.HRESULT get_disabled(winmdroot.Foundation.VARIANT_BOOL* p); 1613 unsafe winmdroot.Foundation.HRESULT fireEvent(winmdroot.Foundation.BSTR bstrEventName, winmdroot.System.Variant.VARIANT* pvarEventObject, winmdroot.Foundation.VARIANT_BOOL* pfCancelled); 1664 unsafe winmdroot.Foundation.HRESULT dragDrop(winmdroot.Foundation.VARIANT_BOOL* pfRet);
Windows.Win32.IHTMLElementCollection.g.cs (55)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT toString(IHTMLElementCollection* pThis, winmdroot.Foundation.BSTR* String) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 141 private static winmdroot.Foundation.HRESULT put_length(IHTMLElementCollection* pThis, int v) 145 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 151 return winmdroot.Foundation.HRESULT.S_OK; 155 return (winmdroot.Foundation.HRESULT)ex.HResult; 163 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 168 internal unsafe winmdroot.Foundation.HRESULT get_length(out int p) 172 winmdroot.Foundation.HRESULT __result = this.get_length(pLocal); 180 private static winmdroot.Foundation.HRESULT get_length(IHTMLElementCollection* pThis, int* p) 184 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 193 return (winmdroot.Foundation.HRESULT)ex.HResult; 197 public unsafe winmdroot.Foundation.HRESULT get_length(int* p) 199 return ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), p); 205 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLElementCollection* pThis, winmdroot.System.Com.IUnknown** p) 209 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return winmdroot.Foundation.HRESULT.S_OK; 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 228 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 236 private static winmdroot.Foundation.HRESULT item(IHTMLElementCollection* pThis, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp) 240 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 249 return (winmdroot.Foundation.HRESULT)ex.HResult; 253 public unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp) 255 return ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), name, index, pdisp); 261 private static winmdroot.Foundation.HRESULT tags(IHTMLElementCollection* pThis, winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp) 265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 274 return (winmdroot.Foundation.HRESULT)ex.HResult; 281 ((delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLElementCollection*)Unsafe.AsPointer(ref this), tagName, &__retVal).ThrowOnFailure(); 285 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 289 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 306 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 312 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 314 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 316 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 318 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 320 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_8; 322 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,int ,winmdroot.Foundation.HRESULT> put_length_9; 324 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_10; 326 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_11; 328 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> item_12; 330 internal delegate *unmanaged [Stdcall]<IHTMLElementCollection*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> tags_13; 361 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String); 369 unsafe winmdroot.Foundation.HRESULT get_length(int* p); 377 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp); 380 unsafe winmdroot.Foundation.HRESULT tags(winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp);
Windows.Win32.IHTMLEventObj.g.cs (165)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLEventObj*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLEventObj*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLEventObj*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLEventObj*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLEventObj*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_srcElement(IHTMLEventObj* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT get_altKey(IHTMLEventObj* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return winmdroot.Foundation.HRESULT.S_OK; 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 176 private static winmdroot.Foundation.HRESULT get_ctrlKey(IHTMLEventObj* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 180 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 186 return winmdroot.Foundation.HRESULT.S_OK; 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 199 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 207 private static winmdroot.Foundation.HRESULT get_shiftKey(IHTMLEventObj* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 211 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 217 return winmdroot.Foundation.HRESULT.S_OK; 221 return (winmdroot.Foundation.HRESULT)ex.HResult; 230 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 238 private static winmdroot.Foundation.HRESULT put_returnValue(IHTMLEventObj* pThis, winmdroot.System.Variant.VARIANT v) 242 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 248 return winmdroot.Foundation.HRESULT.S_OK; 252 return (winmdroot.Foundation.HRESULT)ex.HResult; 260 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLEventObj*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 265 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 273 private static winmdroot.Foundation.HRESULT get_returnValue(IHTMLEventObj* pThis, winmdroot.System.Variant.VARIANT* p) 277 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 283 return winmdroot.Foundation.HRESULT.S_OK; 287 return (winmdroot.Foundation.HRESULT)ex.HResult; 294 private static winmdroot.Foundation.HRESULT put_cancelBubble(IHTMLEventObj* pThis, winmdroot.Foundation.VARIANT_BOOL v) 298 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 304 return winmdroot.Foundation.HRESULT.S_OK; 308 return (winmdroot.Foundation.HRESULT)ex.HResult; 316 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLEventObj*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 321 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 329 private static winmdroot.Foundation.HRESULT get_cancelBubble(IHTMLEventObj* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 333 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 339 return winmdroot.Foundation.HRESULT.S_OK; 343 return (winmdroot.Foundation.HRESULT)ex.HResult; 350 private static winmdroot.Foundation.HRESULT get_fromElement(IHTMLEventObj* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 354 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 360 return winmdroot.Foundation.HRESULT.S_OK; 364 return (winmdroot.Foundation.HRESULT)ex.HResult; 373 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 381 private static winmdroot.Foundation.HRESULT get_toElement(IHTMLEventObj* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 385 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 391 return winmdroot.Foundation.HRESULT.S_OK; 395 return (winmdroot.Foundation.HRESULT)ex.HResult; 404 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 412 private static winmdroot.Foundation.HRESULT put_keyCode(IHTMLEventObj* pThis, int v) 416 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 422 return winmdroot.Foundation.HRESULT.S_OK; 426 return (winmdroot.Foundation.HRESULT)ex.HResult; 434 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLEventObj*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 439 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 447 private static winmdroot.Foundation.HRESULT get_keyCode(IHTMLEventObj* pThis, int* p) 451 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 457 return winmdroot.Foundation.HRESULT.S_OK; 461 return (winmdroot.Foundation.HRESULT)ex.HResult; 468 private static winmdroot.Foundation.HRESULT get_button(IHTMLEventObj* pThis, int* p) 472 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 478 return winmdroot.Foundation.HRESULT.S_OK; 482 return (winmdroot.Foundation.HRESULT)ex.HResult; 491 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 499 private static winmdroot.Foundation.HRESULT get_type(IHTMLEventObj* pThis, winmdroot.Foundation.BSTR* p) 503 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 509 return winmdroot.Foundation.HRESULT.S_OK; 513 return (winmdroot.Foundation.HRESULT)ex.HResult; 522 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 530 private static winmdroot.Foundation.HRESULT get_qualifier(IHTMLEventObj* pThis, winmdroot.Foundation.BSTR* p) 534 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 540 return winmdroot.Foundation.HRESULT.S_OK; 544 return (winmdroot.Foundation.HRESULT)ex.HResult; 553 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 561 private static winmdroot.Foundation.HRESULT get_reason(IHTMLEventObj* pThis, int* p) 565 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 571 return winmdroot.Foundation.HRESULT.S_OK; 575 return (winmdroot.Foundation.HRESULT)ex.HResult; 584 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 592 private static winmdroot.Foundation.HRESULT get_x(IHTMLEventObj* pThis, int* p) 596 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 602 return winmdroot.Foundation.HRESULT.S_OK; 606 return (winmdroot.Foundation.HRESULT)ex.HResult; 615 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 623 private static winmdroot.Foundation.HRESULT get_y(IHTMLEventObj* pThis, int* p) 627 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 633 return winmdroot.Foundation.HRESULT.S_OK; 637 return (winmdroot.Foundation.HRESULT)ex.HResult; 646 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 654 private static winmdroot.Foundation.HRESULT get_clientX(IHTMLEventObj* pThis, int* p) 658 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 664 return winmdroot.Foundation.HRESULT.S_OK; 668 return (winmdroot.Foundation.HRESULT)ex.HResult; 677 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 685 private static winmdroot.Foundation.HRESULT get_clientY(IHTMLEventObj* pThis, int* p) 689 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 695 return winmdroot.Foundation.HRESULT.S_OK; 699 return (winmdroot.Foundation.HRESULT)ex.HResult; 708 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 716 private static winmdroot.Foundation.HRESULT get_offsetX(IHTMLEventObj* pThis, int* p) 720 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 726 return winmdroot.Foundation.HRESULT.S_OK; 730 return (winmdroot.Foundation.HRESULT)ex.HResult; 739 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 747 private static winmdroot.Foundation.HRESULT get_offsetY(IHTMLEventObj* pThis, int* p) 751 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 757 return winmdroot.Foundation.HRESULT.S_OK; 761 return (winmdroot.Foundation.HRESULT)ex.HResult; 770 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 778 private static winmdroot.Foundation.HRESULT get_screenX(IHTMLEventObj* pThis, int* p) 782 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 788 return winmdroot.Foundation.HRESULT.S_OK; 792 return (winmdroot.Foundation.HRESULT)ex.HResult; 801 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 809 private static winmdroot.Foundation.HRESULT get_screenY(IHTMLEventObj* pThis, int* p) 813 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 819 return winmdroot.Foundation.HRESULT.S_OK; 823 return (winmdroot.Foundation.HRESULT)ex.HResult; 832 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 840 private static winmdroot.Foundation.HRESULT get_srcFilter(IHTMLEventObj* pThis, winmdroot.System.Com.IDispatch** p) 844 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 850 return winmdroot.Foundation.HRESULT.S_OK; 854 return (winmdroot.Foundation.HRESULT)ex.HResult; 863 ((delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLEventObj*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 868 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 872 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 889 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 895 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 897 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 899 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 901 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 903 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_srcElement_8; 905 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_altKey_9; 907 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_ctrlKey_10; 909 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_shiftKey_11; 911 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_returnValue_12; 913 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_returnValue_13; 915 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_cancelBubble_14; 917 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_cancelBubble_15; 919 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_fromElement_16; 921 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_toElement_17; 923 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int ,winmdroot.Foundation.HRESULT> put_keyCode_18; 925 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_keyCode_19; 927 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_button_20; 929 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_type_21; 931 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_qualifier_22; 933 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_reason_23; 935 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_x_24; 937 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_y_25; 939 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_clientX_26; 941 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_clientY_27; 943 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_offsetX_28; 945 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_offsetY_29; 947 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_screenX_30; 949 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,int* ,winmdroot.Foundation.HRESULT> get_screenY_31; 951 internal delegate *unmanaged [Stdcall]<IHTMLEventObj*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_srcFilter_32;
Windows.Win32.IHTMLFiltersCollection.g.cs (33)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_length(IHTMLFiltersCollection* pThis, int* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLFiltersCollection* pThis, winmdroot.System.Com.IUnknown** p) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return winmdroot.Foundation.HRESULT.S_OK; 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 186 private static winmdroot.Foundation.HRESULT item(IHTMLFiltersCollection* pThis, winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 190 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 199 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 ((delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLFiltersCollection*)Unsafe.AsPointer(ref this), pvarIndex, &__retVal).ThrowOnFailure(); 210 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 214 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 231 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 237 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 239 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 241 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 243 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 245 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8; 247 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_9; 249 internal delegate *unmanaged [Stdcall]<IHTMLFiltersCollection*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> item_10; 287 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult);
Windows.Win32.IHTMLFormElement.g.cs (159)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLFormElement*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLFormElement*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLFormElement*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLFormElement*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLFormElement*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT put_action(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 141 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT get_action(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return winmdroot.Foundation.HRESULT.S_OK; 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 private static winmdroot.Foundation.HRESULT put_dir(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 197 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT get_dir(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 209 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return winmdroot.Foundation.HRESULT.S_OK; 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 private static winmdroot.Foundation.HRESULT put_encoding(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 230 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return winmdroot.Foundation.HRESULT.S_OK; 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 248 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 253 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 261 private static winmdroot.Foundation.HRESULT get_encoding(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 271 return winmdroot.Foundation.HRESULT.S_OK; 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 282 private static winmdroot.Foundation.HRESULT put_method(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 286 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return winmdroot.Foundation.HRESULT.S_OK; 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 304 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 309 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 317 private static winmdroot.Foundation.HRESULT get_method(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 321 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 327 return winmdroot.Foundation.HRESULT.S_OK; 331 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 private static winmdroot.Foundation.HRESULT get_elements(IHTMLFormElement* pThis, winmdroot.System.Com.IDispatch** p) 342 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 348 return winmdroot.Foundation.HRESULT.S_OK; 352 return (winmdroot.Foundation.HRESULT)ex.HResult; 361 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 369 private static winmdroot.Foundation.HRESULT put_target(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 373 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 379 return winmdroot.Foundation.HRESULT.S_OK; 383 return (winmdroot.Foundation.HRESULT)ex.HResult; 391 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 396 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 404 private static winmdroot.Foundation.HRESULT get_target(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 408 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 414 return winmdroot.Foundation.HRESULT.S_OK; 418 return (winmdroot.Foundation.HRESULT)ex.HResult; 425 private static winmdroot.Foundation.HRESULT put_name(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR v) 429 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 435 return winmdroot.Foundation.HRESULT.S_OK; 439 return (winmdroot.Foundation.HRESULT)ex.HResult; 447 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 452 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 460 private static winmdroot.Foundation.HRESULT get_name(IHTMLFormElement* pThis, winmdroot.Foundation.BSTR* p) 464 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 470 return winmdroot.Foundation.HRESULT.S_OK; 474 return (winmdroot.Foundation.HRESULT)ex.HResult; 481 private static winmdroot.Foundation.HRESULT put_onsubmit(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT v) 485 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 491 return winmdroot.Foundation.HRESULT.S_OK; 495 return (winmdroot.Foundation.HRESULT)ex.HResult; 503 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 508 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 516 private static winmdroot.Foundation.HRESULT get_onsubmit(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT* p) 520 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 526 return winmdroot.Foundation.HRESULT.S_OK; 530 return (winmdroot.Foundation.HRESULT)ex.HResult; 537 private static winmdroot.Foundation.HRESULT put_onreset(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT v) 541 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 547 return winmdroot.Foundation.HRESULT.S_OK; 551 return (winmdroot.Foundation.HRESULT)ex.HResult; 559 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 564 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 572 private static winmdroot.Foundation.HRESULT get_onreset(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT* p) 576 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 582 return winmdroot.Foundation.HRESULT.S_OK; 586 return (winmdroot.Foundation.HRESULT)ex.HResult; 593 private static winmdroot.Foundation.HRESULT submit(IHTMLFormElement* pThis) 597 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 606 return (winmdroot.Foundation.HRESULT)ex.HResult; 612 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLFormElement*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 618 private static winmdroot.Foundation.HRESULT reset(IHTMLFormElement* pThis) 622 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 631 return (winmdroot.Foundation.HRESULT)ex.HResult; 637 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLFormElement*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 643 private static winmdroot.Foundation.HRESULT put_length(IHTMLFormElement* pThis, int v) 647 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 653 return winmdroot.Foundation.HRESULT.S_OK; 657 return (winmdroot.Foundation.HRESULT)ex.HResult; 665 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLFormElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 670 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 678 private static winmdroot.Foundation.HRESULT get_length(IHTMLFormElement* pThis, int* p) 682 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 688 return winmdroot.Foundation.HRESULT.S_OK; 692 return (winmdroot.Foundation.HRESULT)ex.HResult; 699 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLFormElement* pThis, winmdroot.System.Com.IUnknown** p) 703 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 709 return winmdroot.Foundation.HRESULT.S_OK; 713 return (winmdroot.Foundation.HRESULT)ex.HResult; 722 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLFormElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 730 private static winmdroot.Foundation.HRESULT item(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp) 734 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 743 return (winmdroot.Foundation.HRESULT)ex.HResult; 750 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLFormElement*)Unsafe.AsPointer(ref this), name, index, &__retVal).ThrowOnFailure(); 757 private static winmdroot.Foundation.HRESULT tags(IHTMLFormElement* pThis, winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp) 761 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 770 return (winmdroot.Foundation.HRESULT)ex.HResult; 777 ((delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLFormElement*)Unsafe.AsPointer(ref this), tagName, &__retVal).ThrowOnFailure(); 781 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 785 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 802 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 808 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 810 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 812 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 814 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 816 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_action_8; 818 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_action_9; 820 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dir_10; 822 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dir_11; 824 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_encoding_12; 826 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_encoding_13; 828 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_method_14; 830 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_method_15; 832 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_elements_16; 834 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_target_17; 836 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_target_18; 838 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_19; 840 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_20; 842 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onsubmit_21; 844 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onsubmit_22; 846 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onreset_23; 848 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onreset_24; 850 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.HRESULT> submit_25; 852 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.Foundation.HRESULT> reset_26; 854 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,int ,winmdroot.Foundation.HRESULT> put_length_27; 856 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,int* ,winmdroot.Foundation.HRESULT> get_length_28; 858 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_29; 860 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> item_30; 862 internal delegate *unmanaged [Stdcall]<IHTMLFormElement*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> tags_31; 964winmdroot.Foundation.HRESULT submit(); 967winmdroot.Foundation.HRESULT reset(); 981 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT name, winmdroot.System.Variant.VARIANT index, winmdroot.System.Com.IDispatch** pdisp); 984 unsafe winmdroot.Foundation.HRESULT tags(winmdroot.System.Variant.VARIANT tagName, winmdroot.System.Com.IDispatch** pdisp);
Windows.Win32.IHTMLFrameBase.g.cs (123)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT put_src(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 141 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT get_src(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return winmdroot.Foundation.HRESULT.S_OK; 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 private static winmdroot.Foundation.HRESULT put_name(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 197 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT get_name(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 209 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return winmdroot.Foundation.HRESULT.S_OK; 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 private static winmdroot.Foundation.HRESULT put_border(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT v) 230 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return winmdroot.Foundation.HRESULT.S_OK; 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 248 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 253 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 261 private static winmdroot.Foundation.HRESULT get_border(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT* p) 265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 271 return winmdroot.Foundation.HRESULT.S_OK; 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 282 private static winmdroot.Foundation.HRESULT put_frameBorder(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 286 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return winmdroot.Foundation.HRESULT.S_OK; 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 304 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 309 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 317 private static winmdroot.Foundation.HRESULT get_frameBorder(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 321 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 327 return winmdroot.Foundation.HRESULT.S_OK; 331 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 private static winmdroot.Foundation.HRESULT put_frameSpacing(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT v) 342 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 348 return winmdroot.Foundation.HRESULT.S_OK; 352 return (winmdroot.Foundation.HRESULT)ex.HResult; 360 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 365 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 373 private static winmdroot.Foundation.HRESULT get_frameSpacing(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT* p) 377 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 383 return winmdroot.Foundation.HRESULT.S_OK; 387 return (winmdroot.Foundation.HRESULT)ex.HResult; 394 private static winmdroot.Foundation.HRESULT put_marginWidth(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT v) 398 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 404 return winmdroot.Foundation.HRESULT.S_OK; 408 return (winmdroot.Foundation.HRESULT)ex.HResult; 416 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 421 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 429 private static winmdroot.Foundation.HRESULT get_marginWidth(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT* p) 433 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 439 return winmdroot.Foundation.HRESULT.S_OK; 443 return (winmdroot.Foundation.HRESULT)ex.HResult; 450 private static winmdroot.Foundation.HRESULT put_marginHeight(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT v) 454 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 460 return winmdroot.Foundation.HRESULT.S_OK; 464 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 477 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 485 private static winmdroot.Foundation.HRESULT get_marginHeight(IHTMLFrameBase* pThis, winmdroot.System.Variant.VARIANT* p) 489 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 495 return winmdroot.Foundation.HRESULT.S_OK; 499 return (winmdroot.Foundation.HRESULT)ex.HResult; 506 private static winmdroot.Foundation.HRESULT put_noResize(IHTMLFrameBase* pThis, winmdroot.Foundation.VARIANT_BOOL v) 510 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 516 return winmdroot.Foundation.HRESULT.S_OK; 520 return (winmdroot.Foundation.HRESULT)ex.HResult; 528 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 533 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 541 private static winmdroot.Foundation.HRESULT get_noResize(IHTMLFrameBase* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 545 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 551 return winmdroot.Foundation.HRESULT.S_OK; 555 return (winmdroot.Foundation.HRESULT)ex.HResult; 562 private static winmdroot.Foundation.HRESULT put_scrolling(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR v) 566 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 572 return winmdroot.Foundation.HRESULT.S_OK; 576 return (winmdroot.Foundation.HRESULT)ex.HResult; 584 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 589 ((delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLFrameBase*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 597 private static winmdroot.Foundation.HRESULT get_scrolling(IHTMLFrameBase* pThis, winmdroot.Foundation.BSTR* p) 601 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 607 return winmdroot.Foundation.HRESULT.S_OK; 611 return (winmdroot.Foundation.HRESULT)ex.HResult; 615 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 619 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 636 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 642 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 644 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 646 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 648 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 650 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_src_8; 652 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_src_9; 654 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_10; 656 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_11; 658 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_border_12; 660 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_border_13; 662 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_frameBorder_14; 664 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_frameBorder_15; 666 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_frameSpacing_16; 668 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_frameSpacing_17; 670 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginWidth_18; 672 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginWidth_19; 674 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginHeight_20; 676 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginHeight_21; 678 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_noResize_22; 680 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_noResize_23; 682 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_scrolling_24; 684 internal delegate *unmanaged [Stdcall]<IHTMLFrameBase*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_scrolling_25;
Windows.Win32.IHTMLFramesCollection2.g.cs (33)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLFramesCollection2*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLFramesCollection2*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLFramesCollection2*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLFramesCollection2*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLFramesCollection2*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 112 internal unsafe winmdroot.Foundation.HRESULT item(in winmdroot.System.Variant.VARIANT pvarIndex, out winmdroot.System.Variant.VARIANT pvarResult) 118 winmdroot.Foundation.HRESULT __result = this.item(pvarIndexLocal, pvarResultLocal); 127 private static winmdroot.Foundation.HRESULT item(IHTMLFramesCollection2* pThis, winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 131 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 140 return (winmdroot.Foundation.HRESULT)ex.HResult; 144 public unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 146 return ((delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLFramesCollection2*)Unsafe.AsPointer(ref this), pvarIndex, pvarResult); 150 internal unsafe winmdroot.Foundation.HRESULT get_length(out int p) 154 winmdroot.Foundation.HRESULT __result = this.get_length(pLocal); 162 private static winmdroot.Foundation.HRESULT get_length(IHTMLFramesCollection2* pThis, int* p) 166 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 175 return (winmdroot.Foundation.HRESULT)ex.HResult; 179 public unsafe winmdroot.Foundation.HRESULT get_length(int* p) 181 return ((delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLFramesCollection2*)Unsafe.AsPointer(ref this), p); 184 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 188 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 205 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 211 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 213 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 215 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 217 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 219 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> item_8; 221 internal delegate *unmanaged [Stdcall]<IHTMLFramesCollection2*,int* ,winmdroot.Foundation.HRESULT> get_length_9; 248 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult); 251 unsafe winmdroot.Foundation.HRESULT get_length(int* p);
Windows.Win32.IHTMLImageElementFactory.g.cs (21)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLImageElementFactory*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLImageElementFactory*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLImageElementFactory*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLImageElementFactory*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLImageElementFactory*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT create(IHTMLImageElementFactory* pThis, winmdroot.System.Variant.VARIANT width, winmdroot.System.Variant.VARIANT height, winmdroot.Web.MsHtml.IHTMLImgElement** __MIDL__IHTMLImageElementFactory0000) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 ((delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.Web.MsHtml.IHTMLImgElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLImageElementFactory*)Unsafe.AsPointer(ref this), width, height, &__retVal).ThrowOnFailure(); 138 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 142 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 159 internal delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 165 internal delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 167 internal delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 169 internal delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 171 internal delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 173 internal delegate *unmanaged [Stdcall]<IHTMLImageElementFactory*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.Web.MsHtml.IHTMLImgElement** ,winmdroot.Foundation.HRESULT> create_8; 199 unsafe winmdroot.Foundation.HRESULT create(winmdroot.System.Variant.VARIANT width, winmdroot.System.Variant.VARIANT height, winmdroot.Web.MsHtml.IHTMLImgElement** __MIDL__IHTMLImageElementFactory0000);
Windows.Win32.IHTMLImgElement.g.cs (303)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLImgElement*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLImgElement*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLImgElement*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLImgElement*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLImgElement*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT put_isMap(IHTMLImgElement* pThis, winmdroot.Foundation.VARIANT_BOOL v) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 141 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT get_isMap(IHTMLImgElement* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return winmdroot.Foundation.HRESULT.S_OK; 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 private static winmdroot.Foundation.HRESULT put_useMap(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 197 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT get_useMap(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 209 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return winmdroot.Foundation.HRESULT.S_OK; 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 private static winmdroot.Foundation.HRESULT get_mimeType(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 230 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return winmdroot.Foundation.HRESULT.S_OK; 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 249 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 257 private static winmdroot.Foundation.HRESULT get_fileSize(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 261 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 267 return winmdroot.Foundation.HRESULT.S_OK; 271 return (winmdroot.Foundation.HRESULT)ex.HResult; 280 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 288 private static winmdroot.Foundation.HRESULT get_fileCreatedDate(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 292 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 298 return winmdroot.Foundation.HRESULT.S_OK; 302 return (winmdroot.Foundation.HRESULT)ex.HResult; 311 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 319 private static winmdroot.Foundation.HRESULT get_fileModifiedDate(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 323 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 329 return winmdroot.Foundation.HRESULT.S_OK; 333 return (winmdroot.Foundation.HRESULT)ex.HResult; 342 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 350 private static winmdroot.Foundation.HRESULT get_fileUpdatedDate(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 354 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 360 return winmdroot.Foundation.HRESULT.S_OK; 364 return (winmdroot.Foundation.HRESULT)ex.HResult; 373 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 381 private static winmdroot.Foundation.HRESULT get_protocol(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 385 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 391 return winmdroot.Foundation.HRESULT.S_OK; 395 return (winmdroot.Foundation.HRESULT)ex.HResult; 404 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 412 private static winmdroot.Foundation.HRESULT get_href(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 416 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 422 return winmdroot.Foundation.HRESULT.S_OK; 426 return (winmdroot.Foundation.HRESULT)ex.HResult; 435 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 443 private static winmdroot.Foundation.HRESULT get_nameProp(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 447 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 453 return winmdroot.Foundation.HRESULT.S_OK; 457 return (winmdroot.Foundation.HRESULT)ex.HResult; 466 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 474 private static winmdroot.Foundation.HRESULT put_border(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT v) 478 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 484 return winmdroot.Foundation.HRESULT.S_OK; 488 return (winmdroot.Foundation.HRESULT)ex.HResult; 496 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 501 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 509 private static winmdroot.Foundation.HRESULT get_border(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT* p) 513 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 519 return winmdroot.Foundation.HRESULT.S_OK; 523 return (winmdroot.Foundation.HRESULT)ex.HResult; 530 private static winmdroot.Foundation.HRESULT put_vspace(IHTMLImgElement* pThis, int v) 534 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 540 return winmdroot.Foundation.HRESULT.S_OK; 544 return (winmdroot.Foundation.HRESULT)ex.HResult; 552 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 557 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 565 private static winmdroot.Foundation.HRESULT get_vspace(IHTMLImgElement* pThis, int* p) 569 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 575 return winmdroot.Foundation.HRESULT.S_OK; 579 return (winmdroot.Foundation.HRESULT)ex.HResult; 586 private static winmdroot.Foundation.HRESULT put_hspace(IHTMLImgElement* pThis, int v) 590 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 596 return winmdroot.Foundation.HRESULT.S_OK; 600 return (winmdroot.Foundation.HRESULT)ex.HResult; 608 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 613 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 621 private static winmdroot.Foundation.HRESULT get_hspace(IHTMLImgElement* pThis, int* p) 625 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 631 return winmdroot.Foundation.HRESULT.S_OK; 635 return (winmdroot.Foundation.HRESULT)ex.HResult; 642 private static winmdroot.Foundation.HRESULT put_alt(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 646 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 652 return winmdroot.Foundation.HRESULT.S_OK; 656 return (winmdroot.Foundation.HRESULT)ex.HResult; 664 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 669 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 677 private static winmdroot.Foundation.HRESULT get_alt(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 681 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 687 return winmdroot.Foundation.HRESULT.S_OK; 691 return (winmdroot.Foundation.HRESULT)ex.HResult; 698 private static winmdroot.Foundation.HRESULT put_src(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 702 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 708 return winmdroot.Foundation.HRESULT.S_OK; 712 return (winmdroot.Foundation.HRESULT)ex.HResult; 720 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 725 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 733 private static winmdroot.Foundation.HRESULT get_src(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 737 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 743 return winmdroot.Foundation.HRESULT.S_OK; 747 return (winmdroot.Foundation.HRESULT)ex.HResult; 754 private static winmdroot.Foundation.HRESULT put_lowsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 758 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 764 return winmdroot.Foundation.HRESULT.S_OK; 768 return (winmdroot.Foundation.HRESULT)ex.HResult; 776 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 781 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 789 private static winmdroot.Foundation.HRESULT get_lowsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 793 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 799 return winmdroot.Foundation.HRESULT.S_OK; 803 return (winmdroot.Foundation.HRESULT)ex.HResult; 810 private static winmdroot.Foundation.HRESULT put_vrml(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 814 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 820 return winmdroot.Foundation.HRESULT.S_OK; 824 return (winmdroot.Foundation.HRESULT)ex.HResult; 832 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 837 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 845 private static winmdroot.Foundation.HRESULT get_vrml(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 849 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 855 return winmdroot.Foundation.HRESULT.S_OK; 859 return (winmdroot.Foundation.HRESULT)ex.HResult; 866 private static winmdroot.Foundation.HRESULT put_dynsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 870 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 876 return winmdroot.Foundation.HRESULT.S_OK; 880 return (winmdroot.Foundation.HRESULT)ex.HResult; 888 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 893 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 901 private static winmdroot.Foundation.HRESULT get_dynsrc(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 905 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 911 return winmdroot.Foundation.HRESULT.S_OK; 915 return (winmdroot.Foundation.HRESULT)ex.HResult; 922 private static winmdroot.Foundation.HRESULT get_readyState(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 926 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 932 return winmdroot.Foundation.HRESULT.S_OK; 936 return (winmdroot.Foundation.HRESULT)ex.HResult; 945 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 953 private static winmdroot.Foundation.HRESULT get_complete(IHTMLImgElement* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 957 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 963 return winmdroot.Foundation.HRESULT.S_OK; 967 return (winmdroot.Foundation.HRESULT)ex.HResult; 976 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 984 private static winmdroot.Foundation.HRESULT put_loop(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT v) 988 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 994 return winmdroot.Foundation.HRESULT.S_OK; 998 return (winmdroot.Foundation.HRESULT)ex.HResult; 1006 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1011 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1019 private static winmdroot.Foundation.HRESULT get_loop(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT* p) 1023 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1029 return winmdroot.Foundation.HRESULT.S_OK; 1033 return (winmdroot.Foundation.HRESULT)ex.HResult; 1040 private static winmdroot.Foundation.HRESULT put_align(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 1044 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1050 return winmdroot.Foundation.HRESULT.S_OK; 1054 return (winmdroot.Foundation.HRESULT)ex.HResult; 1062 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1067 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1075 private static winmdroot.Foundation.HRESULT get_align(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 1079 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1085 return winmdroot.Foundation.HRESULT.S_OK; 1089 return (winmdroot.Foundation.HRESULT)ex.HResult; 1096 private static winmdroot.Foundation.HRESULT put_onload(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT v) 1100 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1106 return winmdroot.Foundation.HRESULT.S_OK; 1110 return (winmdroot.Foundation.HRESULT)ex.HResult; 1118 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1123 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1131 private static winmdroot.Foundation.HRESULT get_onload(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT* p) 1135 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1141 return winmdroot.Foundation.HRESULT.S_OK; 1145 return (winmdroot.Foundation.HRESULT)ex.HResult; 1152 private static winmdroot.Foundation.HRESULT put_onerror(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT v) 1156 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1162 return winmdroot.Foundation.HRESULT.S_OK; 1166 return (winmdroot.Foundation.HRESULT)ex.HResult; 1174 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1179 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1187 private static winmdroot.Foundation.HRESULT get_onerror(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT* p) 1191 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1197 return winmdroot.Foundation.HRESULT.S_OK; 1201 return (winmdroot.Foundation.HRESULT)ex.HResult; 1208 private static winmdroot.Foundation.HRESULT put_onabort(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT v) 1212 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1218 return winmdroot.Foundation.HRESULT.S_OK; 1222 return (winmdroot.Foundation.HRESULT)ex.HResult; 1230 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1235 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1243 private static winmdroot.Foundation.HRESULT get_onabort(IHTMLImgElement* pThis, winmdroot.System.Variant.VARIANT* p) 1247 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1253 return winmdroot.Foundation.HRESULT.S_OK; 1257 return (winmdroot.Foundation.HRESULT)ex.HResult; 1264 private static winmdroot.Foundation.HRESULT put_name(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 1268 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1274 return winmdroot.Foundation.HRESULT.S_OK; 1278 return (winmdroot.Foundation.HRESULT)ex.HResult; 1286 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1291 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1299 private static winmdroot.Foundation.HRESULT get_name(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 1303 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1309 return winmdroot.Foundation.HRESULT.S_OK; 1313 return (winmdroot.Foundation.HRESULT)ex.HResult; 1320 private static winmdroot.Foundation.HRESULT put_width(IHTMLImgElement* pThis, int v) 1324 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1330 return winmdroot.Foundation.HRESULT.S_OK; 1334 return (winmdroot.Foundation.HRESULT)ex.HResult; 1342 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1347 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1355 private static winmdroot.Foundation.HRESULT get_width(IHTMLImgElement* pThis, int* p) 1359 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1365 return winmdroot.Foundation.HRESULT.S_OK; 1369 return (winmdroot.Foundation.HRESULT)ex.HResult; 1376 private static winmdroot.Foundation.HRESULT put_height(IHTMLImgElement* pThis, int v) 1380 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1386 return winmdroot.Foundation.HRESULT.S_OK; 1390 return (winmdroot.Foundation.HRESULT)ex.HResult; 1398 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1403 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1411 private static winmdroot.Foundation.HRESULT get_height(IHTMLImgElement* pThis, int* p) 1415 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1421 return winmdroot.Foundation.HRESULT.S_OK; 1425 return (winmdroot.Foundation.HRESULT)ex.HResult; 1432 private static winmdroot.Foundation.HRESULT put_start(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR v) 1436 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1442 return winmdroot.Foundation.HRESULT.S_OK; 1446 return (winmdroot.Foundation.HRESULT)ex.HResult; 1454 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLImgElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1459 ((delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLImgElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1467 private static winmdroot.Foundation.HRESULT get_start(IHTMLImgElement* pThis, winmdroot.Foundation.BSTR* p) 1471 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1477 return winmdroot.Foundation.HRESULT.S_OK; 1481 return (winmdroot.Foundation.HRESULT)ex.HResult; 1485 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1489 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 1506 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1512 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 1514 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 1516 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 1518 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 1520 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_isMap_8; 1522 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_isMap_9; 1524 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_useMap_10; 1526 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_useMap_11; 1528 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_mimeType_12; 1530 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileSize_13; 1532 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileCreatedDate_14; 1534 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileModifiedDate_15; 1536 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fileUpdatedDate_16; 1538 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_protocol_17; 1540 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_href_18; 1542 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_nameProp_19; 1544 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_border_20; 1546 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_border_21; 1548 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT> put_vspace_22; 1550 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT> get_vspace_23; 1552 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT> put_hspace_24; 1554 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT> get_hspace_25; 1556 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_alt_26; 1558 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_alt_27; 1560 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_src_28; 1562 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_src_29; 1564 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_lowsrc_30; 1566 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_lowsrc_31; 1568 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_vrml_32; 1570 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_vrml_33; 1572 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_dynsrc_34; 1574 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_dynsrc_35; 1576 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_readyState_36; 1578 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_complete_37; 1580 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_loop_38; 1582 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_loop_39; 1584 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_align_40; 1586 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_align_41; 1588 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onload_42; 1590 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onload_43; 1592 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onerror_44; 1594 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onerror_45; 1596 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onabort_46; 1598 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onabort_47; 1600 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_48; 1602 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_49; 1604 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT> put_width_50; 1606 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT> get_width_51; 1608 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int ,winmdroot.Foundation.HRESULT> put_height_52; 1610 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,int* ,winmdroot.Foundation.HRESULT> get_height_53; 1612 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_start_54; 1614 internal delegate *unmanaged [Stdcall]<IHTMLImgElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_start_55;
Windows.Win32.IHTMLLocation.g.cs (136)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLLocation*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLLocation*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLLocation*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLLocation*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLLocation*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLLocation*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT put_href(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 143 private static winmdroot.Foundation.HRESULT get_href(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 147 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 156 return (winmdroot.Foundation.HRESULT)ex.HResult; 160 public unsafe winmdroot.Foundation.HRESULT get_href(winmdroot.Foundation.BSTR* p) 162 return ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLLocation*)Unsafe.AsPointer(ref this), p); 168 private static winmdroot.Foundation.HRESULT put_protocol(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 172 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 178 return winmdroot.Foundation.HRESULT.S_OK; 182 return (winmdroot.Foundation.HRESULT)ex.HResult; 190 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 195 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 203 private static winmdroot.Foundation.HRESULT get_protocol(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 207 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 213 return winmdroot.Foundation.HRESULT.S_OK; 217 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 private static winmdroot.Foundation.HRESULT put_host(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 228 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 234 return winmdroot.Foundation.HRESULT.S_OK; 238 return (winmdroot.Foundation.HRESULT)ex.HResult; 246 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 251 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 259 private static winmdroot.Foundation.HRESULT get_host(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 263 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 269 return winmdroot.Foundation.HRESULT.S_OK; 273 return (winmdroot.Foundation.HRESULT)ex.HResult; 280 private static winmdroot.Foundation.HRESULT put_hostname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 284 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 290 return winmdroot.Foundation.HRESULT.S_OK; 294 return (winmdroot.Foundation.HRESULT)ex.HResult; 302 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 307 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 315 private static winmdroot.Foundation.HRESULT get_hostname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 319 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 325 return winmdroot.Foundation.HRESULT.S_OK; 329 return (winmdroot.Foundation.HRESULT)ex.HResult; 336 private static winmdroot.Foundation.HRESULT put_port(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 340 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 346 return winmdroot.Foundation.HRESULT.S_OK; 350 return (winmdroot.Foundation.HRESULT)ex.HResult; 358 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 363 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 371 private static winmdroot.Foundation.HRESULT get_port(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 375 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 381 return winmdroot.Foundation.HRESULT.S_OK; 385 return (winmdroot.Foundation.HRESULT)ex.HResult; 392 private static winmdroot.Foundation.HRESULT put_pathname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 396 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 402 return winmdroot.Foundation.HRESULT.S_OK; 406 return (winmdroot.Foundation.HRESULT)ex.HResult; 414 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 419 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 427 private static winmdroot.Foundation.HRESULT get_pathname(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 431 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 437 return winmdroot.Foundation.HRESULT.S_OK; 441 return (winmdroot.Foundation.HRESULT)ex.HResult; 448 private static winmdroot.Foundation.HRESULT put_search(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 452 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 458 return winmdroot.Foundation.HRESULT.S_OK; 462 return (winmdroot.Foundation.HRESULT)ex.HResult; 470 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 475 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 483 private static winmdroot.Foundation.HRESULT get_search(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 487 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 493 return winmdroot.Foundation.HRESULT.S_OK; 497 return (winmdroot.Foundation.HRESULT)ex.HResult; 504 private static winmdroot.Foundation.HRESULT put_hash(IHTMLLocation* pThis, winmdroot.Foundation.BSTR v) 508 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 514 return winmdroot.Foundation.HRESULT.S_OK; 518 return (winmdroot.Foundation.HRESULT)ex.HResult; 526 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLLocation*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 531 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 539 private static winmdroot.Foundation.HRESULT get_hash(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* p) 543 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 549 return winmdroot.Foundation.HRESULT.S_OK; 553 return (winmdroot.Foundation.HRESULT)ex.HResult; 560 private static winmdroot.Foundation.HRESULT reload(IHTMLLocation* pThis, winmdroot.Foundation.VARIANT_BOOL flag) 564 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 573 return (winmdroot.Foundation.HRESULT)ex.HResult; 579 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLLocation*)Unsafe.AsPointer(ref this), flag).ThrowOnFailure(); 585 private static winmdroot.Foundation.HRESULT replace(IHTMLLocation* pThis, winmdroot.Foundation.BSTR bstr) 589 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 598 return (winmdroot.Foundation.HRESULT)ex.HResult; 604 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLLocation*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 610 private static winmdroot.Foundation.HRESULT assign(IHTMLLocation* pThis, winmdroot.Foundation.BSTR bstr) 614 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 623 return (winmdroot.Foundation.HRESULT)ex.HResult; 629 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLLocation*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 635 private static winmdroot.Foundation.HRESULT toString(IHTMLLocation* pThis, winmdroot.Foundation.BSTR* @string) 639 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 648 return (winmdroot.Foundation.HRESULT)ex.HResult; 655 ((delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLLocation*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 659 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 663 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 680 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 686 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 688 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 690 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 692 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 694 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_href_8; 696 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_href_9; 698 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_protocol_10; 700 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_protocol_11; 702 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_host_12; 704 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_host_13; 706 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_hostname_14; 708 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_hostname_15; 710 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_port_16; 712 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_port_17; 714 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pathname_18; 716 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pathname_19; 718 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_search_20; 720 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_search_21; 722 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_hash_22; 724 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_hash_23; 726 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> reload_24; 728 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> replace_25; 730 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> assign_26; 732 internal delegate *unmanaged [Stdcall]<IHTMLLocation*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_27; 782 unsafe winmdroot.Foundation.HRESULT get_href(winmdroot.Foundation.BSTR* p); 827winmdroot.Foundation.HRESULT reload(winmdroot.Foundation.VARIANT_BOOL flag); 830winmdroot.Foundation.HRESULT replace(winmdroot.Foundation.BSTR bstr); 833winmdroot.Foundation.HRESULT assign(winmdroot.Foundation.BSTR bstr); 836 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* @string);
Windows.Win32.IHTMLMimeTypesCollection.g.cs (21)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLMimeTypesCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLMimeTypesCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLMimeTypesCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLMimeTypesCollection*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLMimeTypesCollection*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_length(IHTMLMimeTypesCollection* pThis, int* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLMimeTypesCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 142 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 146 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 163 internal delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 169 internal delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 171 internal delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 173 internal delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 175 internal delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 177 internal delegate *unmanaged [Stdcall]<IHTMLMimeTypesCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8;
Windows.Win32.IHTMLOpsProfile.g.cs (69)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT addRequest(IHTMLOpsProfile* pThis, winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 ((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(); 141 private static winmdroot.Foundation.HRESULT clearRequest(IHTMLOpsProfile* pThis) 145 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 154 return (winmdroot.Foundation.HRESULT)ex.HResult; 160 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 166 private static winmdroot.Foundation.HRESULT doRequest(IHTMLOpsProfile* pThis, winmdroot.System.Variant.VARIANT usage, winmdroot.System.Variant.VARIANT fname, winmdroot.System.Variant.VARIANT domain, winmdroot.System.Variant.VARIANT path, winmdroot.System.Variant.VARIANT expire, winmdroot.System.Variant.VARIANT reserved) 170 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 185 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), usage, fname, domain, path, expire, reserved).ThrowOnFailure(); 191 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLOpsProfile* pThis, winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR* value) 195 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 204 return (winmdroot.Foundation.HRESULT)ex.HResult; 211 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), name, &__retVal).ThrowOnFailure(); 218 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) 222 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 231 return (winmdroot.Foundation.HRESULT)ex.HResult; 238 ((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(); 245 private static winmdroot.Foundation.HRESULT commitChanges(IHTMLOpsProfile* pThis, winmdroot.Foundation.VARIANT_BOOL* success) 249 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 258 return (winmdroot.Foundation.HRESULT)ex.HResult; 265 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 272 private static winmdroot.Foundation.HRESULT addReadRequest(IHTMLOpsProfile* pThis, winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success) 276 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 285 return (winmdroot.Foundation.HRESULT)ex.HResult; 292 ((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(); 299 private static winmdroot.Foundation.HRESULT doReadRequest(IHTMLOpsProfile* pThis, winmdroot.System.Variant.VARIANT usage, winmdroot.System.Variant.VARIANT fname, winmdroot.System.Variant.VARIANT domain, winmdroot.System.Variant.VARIANT path, winmdroot.System.Variant.VARIANT expire, winmdroot.System.Variant.VARIANT reserved) 303 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 312 return (winmdroot.Foundation.HRESULT)ex.HResult; 318 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), usage, fname, domain, path, expire, reserved).ThrowOnFailure(); 324 private static winmdroot.Foundation.HRESULT doWriteRequest(IHTMLOpsProfile* pThis, winmdroot.Foundation.VARIANT_BOOL* success) 328 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 337 return (winmdroot.Foundation.HRESULT)ex.HResult; 344 ((delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLOpsProfile*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 348 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 352 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 369 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 375 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 377 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 379 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 381 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 383 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> addRequest_8; 385 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.HRESULT> clearRequest_9; 387 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> doRequest_10; 389 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> getAttribute_11; 391 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> setAttribute_12; 393 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> commitChanges_13; 395 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> addReadRequest_14; 397 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> doReadRequest_15; 399 internal delegate *unmanaged [Stdcall]<IHTMLOpsProfile*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> doWriteRequest_16; 433 unsafe winmdroot.Foundation.HRESULT addRequest(winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success); 436winmdroot.Foundation.HRESULT clearRequest(); 439winmdroot.Foundation.HRESULT doRequest(winmdroot.System.Variant.VARIANT usage, winmdroot.System.Variant.VARIANT fname, winmdroot.System.Variant.VARIANT domain, winmdroot.System.Variant.VARIANT path, winmdroot.System.Variant.VARIANT expire, winmdroot.System.Variant.VARIANT reserved); 442 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR* value); 445 unsafe winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR name, winmdroot.Foundation.BSTR value, winmdroot.System.Variant.VARIANT prefs, winmdroot.Foundation.VARIANT_BOOL* success); 448 unsafe winmdroot.Foundation.HRESULT commitChanges(winmdroot.Foundation.VARIANT_BOOL* success); 451 unsafe winmdroot.Foundation.HRESULT addReadRequest(winmdroot.Foundation.BSTR name, winmdroot.System.Variant.VARIANT reserved, winmdroot.Foundation.VARIANT_BOOL* success); 454winmdroot.Foundation.HRESULT doReadRequest(winmdroot.System.Variant.VARIANT usage, winmdroot.System.Variant.VARIANT fname, winmdroot.System.Variant.VARIANT domain, winmdroot.System.Variant.VARIANT path, winmdroot.System.Variant.VARIANT expire, winmdroot.System.Variant.VARIANT reserved); 457 unsafe winmdroot.Foundation.HRESULT doWriteRequest(winmdroot.Foundation.VARIANT_BOOL* success);
Windows.Win32.IHTMLOptionElement.g.cs (81)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT put_selected(IHTMLOptionElement* pThis, winmdroot.Foundation.VARIANT_BOOL v) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 141 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT get_selected(IHTMLOptionElement* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return winmdroot.Foundation.HRESULT.S_OK; 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 private static winmdroot.Foundation.HRESULT put_value(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR v) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 197 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT get_value(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR* p) 209 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return winmdroot.Foundation.HRESULT.S_OK; 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 private static winmdroot.Foundation.HRESULT put_defaultSelected(IHTMLOptionElement* pThis, winmdroot.Foundation.VARIANT_BOOL v) 230 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return winmdroot.Foundation.HRESULT.S_OK; 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 248 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 253 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 261 private static winmdroot.Foundation.HRESULT get_defaultSelected(IHTMLOptionElement* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 271 return winmdroot.Foundation.HRESULT.S_OK; 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 282 private static winmdroot.Foundation.HRESULT put_index(IHTMLOptionElement* pThis, int v) 286 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return winmdroot.Foundation.HRESULT.S_OK; 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 304 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 309 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 317 private static winmdroot.Foundation.HRESULT get_index(IHTMLOptionElement* pThis, int* p) 321 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 327 return winmdroot.Foundation.HRESULT.S_OK; 331 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 private static winmdroot.Foundation.HRESULT put_text(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR v) 342 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 348 return winmdroot.Foundation.HRESULT.S_OK; 352 return (winmdroot.Foundation.HRESULT)ex.HResult; 360 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 365 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 373 private static winmdroot.Foundation.HRESULT get_text(IHTMLOptionElement* pThis, winmdroot.Foundation.BSTR* p) 377 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 383 return winmdroot.Foundation.HRESULT.S_OK; 387 return (winmdroot.Foundation.HRESULT)ex.HResult; 394 private static winmdroot.Foundation.HRESULT get_form(IHTMLOptionElement* pThis, winmdroot.Web.MsHtml.IHTMLFormElement** p) 398 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 404 return winmdroot.Foundation.HRESULT.S_OK; 408 return (winmdroot.Foundation.HRESULT)ex.HResult; 417 ((delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Web.MsHtml.IHTMLFormElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLOptionElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 422 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 426 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 443 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 449 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 451 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 453 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 455 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 457 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_selected_8; 459 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_selected_9; 461 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_value_10; 463 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_value_11; 465 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_defaultSelected_12; 467 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_defaultSelected_13; 469 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,int ,winmdroot.Foundation.HRESULT> put_index_14; 471 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,int* ,winmdroot.Foundation.HRESULT> get_index_15; 473 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_text_16; 475 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_text_17; 477 internal delegate *unmanaged [Stdcall]<IHTMLOptionElement*,winmdroot.Web.MsHtml.IHTMLFormElement** ,winmdroot.Foundation.HRESULT> get_form_18;
Windows.Win32.IHTMLOptionElementFactory.g.cs (21)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLOptionElementFactory*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLOptionElementFactory*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLOptionElementFactory*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLOptionElementFactory*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLOptionElementFactory*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT create(IHTMLOptionElementFactory* pThis, winmdroot.System.Variant.VARIANT text, winmdroot.System.Variant.VARIANT value, winmdroot.System.Variant.VARIANT defaultselected, winmdroot.System.Variant.VARIANT selected, winmdroot.Web.MsHtml.IHTMLOptionElement** __MIDL__IHTMLOptionElementFactory0000) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 ((delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.Web.MsHtml.IHTMLOptionElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLOptionElementFactory*)Unsafe.AsPointer(ref this), text, value, defaultselected, selected, &__retVal).ThrowOnFailure(); 138 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 142 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 159 internal delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 165 internal delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 167 internal delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 169 internal delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 171 internal delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 173 internal delegate *unmanaged [Stdcall]<IHTMLOptionElementFactory*,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.System.Variant.VARIANT ,winmdroot.Web.MsHtml.IHTMLOptionElement** ,winmdroot.Foundation.HRESULT> create_8; 199 unsafe winmdroot.Foundation.HRESULT create(winmdroot.System.Variant.VARIANT text, winmdroot.System.Variant.VARIANT value, winmdroot.System.Variant.VARIANT defaultselected, winmdroot.System.Variant.VARIANT selected, winmdroot.Web.MsHtml.IHTMLOptionElement** __MIDL__IHTMLOptionElementFactory0000);
Windows.Win32.IHTMLPluginsCollection.g.cs (27)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_length(IHTMLPluginsCollection* pThis, int* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT refresh(IHTMLPluginsCollection* pThis, winmdroot.Foundation.VARIANT_BOOL reload) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return (winmdroot.Foundation.HRESULT)ex.HResult; 164 ((delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLPluginsCollection*)Unsafe.AsPointer(ref this), reload).ThrowOnFailure(); 167 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 171 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 188 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 194 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 196 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 198 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 200 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 202 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8; 204 internal delegate *unmanaged [Stdcall]<IHTMLPluginsCollection*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> refresh_9; 236winmdroot.Foundation.HRESULT refresh(winmdroot.Foundation.VARIANT_BOOL reload);
Windows.Win32.IHTMLRect.g.cs (63)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLRect*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLRect*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLRect*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLRect*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLRect*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLRect*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLRect*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLRect*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLRect*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT put_left(IHTMLRect* pThis, int v) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLRect*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 141 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLRect*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT get_left(IHTMLRect* pThis, int* p) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return winmdroot.Foundation.HRESULT.S_OK; 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 private static winmdroot.Foundation.HRESULT put_top(IHTMLRect* pThis, int v) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLRect*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 197 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLRect*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT get_top(IHTMLRect* pThis, int* p) 209 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return winmdroot.Foundation.HRESULT.S_OK; 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 private static winmdroot.Foundation.HRESULT put_right(IHTMLRect* pThis, int v) 230 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return winmdroot.Foundation.HRESULT.S_OK; 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 248 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLRect*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 253 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLRect*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 261 private static winmdroot.Foundation.HRESULT get_right(IHTMLRect* pThis, int* p) 265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 271 return winmdroot.Foundation.HRESULT.S_OK; 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 282 private static winmdroot.Foundation.HRESULT put_bottom(IHTMLRect* pThis, int v) 286 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return winmdroot.Foundation.HRESULT.S_OK; 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 304 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLRect*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 309 ((delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLRect*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 317 private static winmdroot.Foundation.HRESULT get_bottom(IHTMLRect* pThis, int* p) 321 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 327 return winmdroot.Foundation.HRESULT.S_OK; 331 return (winmdroot.Foundation.HRESULT)ex.HResult; 335 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 339 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 356 internal delegate *unmanaged [Stdcall]<IHTMLRect*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 362 internal delegate *unmanaged [Stdcall]<IHTMLRect*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 364 internal delegate *unmanaged [Stdcall]<IHTMLRect*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 366 internal delegate *unmanaged [Stdcall]<IHTMLRect*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 368 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 370 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT> put_left_8; 372 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT> get_left_9; 374 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT> put_top_10; 376 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT> get_top_11; 378 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT> put_right_12; 380 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT> get_right_13; 382 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int ,winmdroot.Foundation.HRESULT> put_bottom_14; 384 internal delegate *unmanaged [Stdcall]<IHTMLRect*,int* ,winmdroot.Foundation.HRESULT> get_bottom_15;
Windows.Win32.IHTMLRectCollection.g.cs (33)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_length(IHTMLRectCollection* pThis, int* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLRectCollection* pThis, winmdroot.System.Com.IUnknown** p) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return winmdroot.Foundation.HRESULT.S_OK; 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 186 private static winmdroot.Foundation.HRESULT item(IHTMLRectCollection* pThis, winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 190 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 199 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 ((delegate *unmanaged [Stdcall]<IHTMLRectCollection*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLRectCollection*)Unsafe.AsPointer(ref this), pvarIndex, &__retVal).ThrowOnFailure(); 210 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 214 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 231 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 237 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 239 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 241 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 243 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 245 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8; 247 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_9; 249 internal delegate *unmanaged [Stdcall]<IHTMLRectCollection*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> item_10; 287 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult);
Windows.Win32.IHTMLRenderStyle.g.cs (123)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT put_textLineThroughStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 141 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT get_textLineThroughStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return winmdroot.Foundation.HRESULT.S_OK; 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 private static winmdroot.Foundation.HRESULT put_textUnderlineStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 197 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT get_textUnderlineStyle(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 209 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return winmdroot.Foundation.HRESULT.S_OK; 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 private static winmdroot.Foundation.HRESULT put_textEffect(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 230 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return winmdroot.Foundation.HRESULT.S_OK; 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 248 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 253 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 261 private static winmdroot.Foundation.HRESULT get_textEffect(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 271 return winmdroot.Foundation.HRESULT.S_OK; 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 282 private static winmdroot.Foundation.HRESULT put_textColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT v) 286 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return winmdroot.Foundation.HRESULT.S_OK; 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 304 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 309 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 317 private static winmdroot.Foundation.HRESULT get_textColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT* p) 321 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 327 return winmdroot.Foundation.HRESULT.S_OK; 331 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 private static winmdroot.Foundation.HRESULT put_textBackgroundColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT v) 342 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 348 return winmdroot.Foundation.HRESULT.S_OK; 352 return (winmdroot.Foundation.HRESULT)ex.HResult; 360 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 365 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 373 private static winmdroot.Foundation.HRESULT get_textBackgroundColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT* p) 377 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 383 return winmdroot.Foundation.HRESULT.S_OK; 387 return (winmdroot.Foundation.HRESULT)ex.HResult; 394 private static winmdroot.Foundation.HRESULT put_textDecorationColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT v) 398 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 404 return winmdroot.Foundation.HRESULT.S_OK; 408 return (winmdroot.Foundation.HRESULT)ex.HResult; 416 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 421 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 429 private static winmdroot.Foundation.HRESULT get_textDecorationColor(IHTMLRenderStyle* pThis, winmdroot.System.Variant.VARIANT* p) 433 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 439 return winmdroot.Foundation.HRESULT.S_OK; 443 return (winmdroot.Foundation.HRESULT)ex.HResult; 450 private static winmdroot.Foundation.HRESULT put_renderingPriority(IHTMLRenderStyle* pThis, int v) 454 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 460 return winmdroot.Foundation.HRESULT.S_OK; 464 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 477 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 485 private static winmdroot.Foundation.HRESULT get_renderingPriority(IHTMLRenderStyle* pThis, int* p) 489 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 495 return winmdroot.Foundation.HRESULT.S_OK; 499 return (winmdroot.Foundation.HRESULT)ex.HResult; 506 private static winmdroot.Foundation.HRESULT put_defaultTextSelection(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 510 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 516 return winmdroot.Foundation.HRESULT.S_OK; 520 return (winmdroot.Foundation.HRESULT)ex.HResult; 528 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 533 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 541 private static winmdroot.Foundation.HRESULT get_defaultTextSelection(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 545 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 551 return winmdroot.Foundation.HRESULT.S_OK; 555 return (winmdroot.Foundation.HRESULT)ex.HResult; 562 private static winmdroot.Foundation.HRESULT put_textDecoration(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR v) 566 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 572 return winmdroot.Foundation.HRESULT.S_OK; 576 return (winmdroot.Foundation.HRESULT)ex.HResult; 584 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 589 ((delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLRenderStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 597 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLRenderStyle* pThis, winmdroot.Foundation.BSTR* p) 601 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 607 return winmdroot.Foundation.HRESULT.S_OK; 611 return (winmdroot.Foundation.HRESULT)ex.HResult; 615 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 619 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 636 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 642 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 644 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 646 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 648 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 650 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textLineThroughStyle_8; 652 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textLineThroughStyle_9; 654 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textUnderlineStyle_10; 656 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textUnderlineStyle_11; 658 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textEffect_12; 660 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textEffect_13; 662 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_textColor_14; 664 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textColor_15; 666 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_textBackgroundColor_16; 668 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textBackgroundColor_17; 670 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_textDecorationColor_18; 672 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textDecorationColor_19; 674 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,int ,winmdroot.Foundation.HRESULT> put_renderingPriority_20; 676 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,int* ,winmdroot.Foundation.HRESULT> get_renderingPriority_21; 678 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_defaultTextSelection_22; 680 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_defaultTextSelection_23; 682 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textDecoration_24; 684 internal delegate *unmanaged [Stdcall]<IHTMLRenderStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_25;
Windows.Win32.IHTMLRuleStyle.g.cs (987)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT put_fontFamily(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 141 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT get_fontFamily(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return winmdroot.Foundation.HRESULT.S_OK; 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 private static winmdroot.Foundation.HRESULT put_fontStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 197 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT get_fontStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 209 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return winmdroot.Foundation.HRESULT.S_OK; 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 private static winmdroot.Foundation.HRESULT put_fontVariant(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 230 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return winmdroot.Foundation.HRESULT.S_OK; 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 248 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 253 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 261 private static winmdroot.Foundation.HRESULT get_fontVariant(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 271 return winmdroot.Foundation.HRESULT.S_OK; 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 282 private static winmdroot.Foundation.HRESULT put_fontWeight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 286 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return winmdroot.Foundation.HRESULT.S_OK; 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 304 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 309 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 317 private static winmdroot.Foundation.HRESULT get_fontWeight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 321 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 327 return winmdroot.Foundation.HRESULT.S_OK; 331 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 private static winmdroot.Foundation.HRESULT put_fontSize(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 342 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 348 return winmdroot.Foundation.HRESULT.S_OK; 352 return (winmdroot.Foundation.HRESULT)ex.HResult; 360 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 365 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 373 private static winmdroot.Foundation.HRESULT get_fontSize(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 377 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 383 return winmdroot.Foundation.HRESULT.S_OK; 387 return (winmdroot.Foundation.HRESULT)ex.HResult; 394 private static winmdroot.Foundation.HRESULT put_font(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 398 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 404 return winmdroot.Foundation.HRESULT.S_OK; 408 return (winmdroot.Foundation.HRESULT)ex.HResult; 416 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 421 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 429 private static winmdroot.Foundation.HRESULT get_font(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 433 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 439 return winmdroot.Foundation.HRESULT.S_OK; 443 return (winmdroot.Foundation.HRESULT)ex.HResult; 450 private static winmdroot.Foundation.HRESULT put_color(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 454 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 460 return winmdroot.Foundation.HRESULT.S_OK; 464 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 477 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 485 private static winmdroot.Foundation.HRESULT get_color(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 489 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 495 return winmdroot.Foundation.HRESULT.S_OK; 499 return (winmdroot.Foundation.HRESULT)ex.HResult; 506 private static winmdroot.Foundation.HRESULT put_background(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 510 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 516 return winmdroot.Foundation.HRESULT.S_OK; 520 return (winmdroot.Foundation.HRESULT)ex.HResult; 528 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 533 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 541 private static winmdroot.Foundation.HRESULT get_background(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 545 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 551 return winmdroot.Foundation.HRESULT.S_OK; 555 return (winmdroot.Foundation.HRESULT)ex.HResult; 562 private static winmdroot.Foundation.HRESULT put_backgroundColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 566 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 572 return winmdroot.Foundation.HRESULT.S_OK; 576 return (winmdroot.Foundation.HRESULT)ex.HResult; 584 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 589 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 597 private static winmdroot.Foundation.HRESULT get_backgroundColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 601 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 607 return winmdroot.Foundation.HRESULT.S_OK; 611 return (winmdroot.Foundation.HRESULT)ex.HResult; 618 private static winmdroot.Foundation.HRESULT put_backgroundImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 622 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 628 return winmdroot.Foundation.HRESULT.S_OK; 632 return (winmdroot.Foundation.HRESULT)ex.HResult; 640 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 645 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 653 private static winmdroot.Foundation.HRESULT get_backgroundImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 657 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 663 return winmdroot.Foundation.HRESULT.S_OK; 667 return (winmdroot.Foundation.HRESULT)ex.HResult; 674 private static winmdroot.Foundation.HRESULT put_backgroundRepeat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 678 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 684 return winmdroot.Foundation.HRESULT.S_OK; 688 return (winmdroot.Foundation.HRESULT)ex.HResult; 696 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 701 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 709 private static winmdroot.Foundation.HRESULT get_backgroundRepeat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 713 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 719 return winmdroot.Foundation.HRESULT.S_OK; 723 return (winmdroot.Foundation.HRESULT)ex.HResult; 730 private static winmdroot.Foundation.HRESULT put_backgroundAttachment(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 734 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 740 return winmdroot.Foundation.HRESULT.S_OK; 744 return (winmdroot.Foundation.HRESULT)ex.HResult; 752 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 757 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 765 private static winmdroot.Foundation.HRESULT get_backgroundAttachment(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 769 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 775 return winmdroot.Foundation.HRESULT.S_OK; 779 return (winmdroot.Foundation.HRESULT)ex.HResult; 786 private static winmdroot.Foundation.HRESULT put_backgroundPosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 790 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 796 return winmdroot.Foundation.HRESULT.S_OK; 800 return (winmdroot.Foundation.HRESULT)ex.HResult; 808 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 813 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 821 private static winmdroot.Foundation.HRESULT get_backgroundPosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 825 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 831 return winmdroot.Foundation.HRESULT.S_OK; 835 return (winmdroot.Foundation.HRESULT)ex.HResult; 842 private static winmdroot.Foundation.HRESULT put_backgroundPositionX(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 846 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 852 return winmdroot.Foundation.HRESULT.S_OK; 856 return (winmdroot.Foundation.HRESULT)ex.HResult; 864 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 869 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 877 private static winmdroot.Foundation.HRESULT get_backgroundPositionX(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 881 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 887 return winmdroot.Foundation.HRESULT.S_OK; 891 return (winmdroot.Foundation.HRESULT)ex.HResult; 898 private static winmdroot.Foundation.HRESULT put_backgroundPositionY(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 902 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 908 return winmdroot.Foundation.HRESULT.S_OK; 912 return (winmdroot.Foundation.HRESULT)ex.HResult; 920 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 925 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 933 private static winmdroot.Foundation.HRESULT get_backgroundPositionY(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 937 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 943 return winmdroot.Foundation.HRESULT.S_OK; 947 return (winmdroot.Foundation.HRESULT)ex.HResult; 954 private static winmdroot.Foundation.HRESULT put_wordSpacing(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 958 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 964 return winmdroot.Foundation.HRESULT.S_OK; 968 return (winmdroot.Foundation.HRESULT)ex.HResult; 976 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 981 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 989 private static winmdroot.Foundation.HRESULT get_wordSpacing(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 993 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 999 return winmdroot.Foundation.HRESULT.S_OK; 1003 return (winmdroot.Foundation.HRESULT)ex.HResult; 1010 private static winmdroot.Foundation.HRESULT put_letterSpacing(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1014 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1020 return winmdroot.Foundation.HRESULT.S_OK; 1024 return (winmdroot.Foundation.HRESULT)ex.HResult; 1032 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1037 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1045 private static winmdroot.Foundation.HRESULT get_letterSpacing(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1049 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1055 return winmdroot.Foundation.HRESULT.S_OK; 1059 return (winmdroot.Foundation.HRESULT)ex.HResult; 1066 private static winmdroot.Foundation.HRESULT put_textDecoration(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1070 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1076 return winmdroot.Foundation.HRESULT.S_OK; 1080 return (winmdroot.Foundation.HRESULT)ex.HResult; 1088 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1093 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1101 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1105 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1111 return winmdroot.Foundation.HRESULT.S_OK; 1115 return (winmdroot.Foundation.HRESULT)ex.HResult; 1122 private static winmdroot.Foundation.HRESULT put_textDecorationNone(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1126 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1132 return winmdroot.Foundation.HRESULT.S_OK; 1136 return (winmdroot.Foundation.HRESULT)ex.HResult; 1144 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1149 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1157 private static winmdroot.Foundation.HRESULT get_textDecorationNone(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1161 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1167 return winmdroot.Foundation.HRESULT.S_OK; 1171 return (winmdroot.Foundation.HRESULT)ex.HResult; 1178 private static winmdroot.Foundation.HRESULT put_textDecorationUnderline(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1182 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1188 return winmdroot.Foundation.HRESULT.S_OK; 1192 return (winmdroot.Foundation.HRESULT)ex.HResult; 1200 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1205 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1213 private static winmdroot.Foundation.HRESULT get_textDecorationUnderline(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1217 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1223 return winmdroot.Foundation.HRESULT.S_OK; 1227 return (winmdroot.Foundation.HRESULT)ex.HResult; 1234 private static winmdroot.Foundation.HRESULT put_textDecorationOverline(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1238 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1244 return winmdroot.Foundation.HRESULT.S_OK; 1248 return (winmdroot.Foundation.HRESULT)ex.HResult; 1256 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1261 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1269 private static winmdroot.Foundation.HRESULT get_textDecorationOverline(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1273 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1279 return winmdroot.Foundation.HRESULT.S_OK; 1283 return (winmdroot.Foundation.HRESULT)ex.HResult; 1290 private static winmdroot.Foundation.HRESULT put_textDecorationLineThrough(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1294 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1300 return winmdroot.Foundation.HRESULT.S_OK; 1304 return (winmdroot.Foundation.HRESULT)ex.HResult; 1312 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1317 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1325 private static winmdroot.Foundation.HRESULT get_textDecorationLineThrough(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1329 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1335 return winmdroot.Foundation.HRESULT.S_OK; 1339 return (winmdroot.Foundation.HRESULT)ex.HResult; 1346 private static winmdroot.Foundation.HRESULT put_textDecorationBlink(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1350 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1356 return winmdroot.Foundation.HRESULT.S_OK; 1360 return (winmdroot.Foundation.HRESULT)ex.HResult; 1368 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1373 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1381 private static winmdroot.Foundation.HRESULT get_textDecorationBlink(IHTMLRuleStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1385 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1391 return winmdroot.Foundation.HRESULT.S_OK; 1395 return (winmdroot.Foundation.HRESULT)ex.HResult; 1402 private static winmdroot.Foundation.HRESULT put_verticalAlign(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1406 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1412 return winmdroot.Foundation.HRESULT.S_OK; 1416 return (winmdroot.Foundation.HRESULT)ex.HResult; 1424 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1429 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1437 private static winmdroot.Foundation.HRESULT get_verticalAlign(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1441 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1447 return winmdroot.Foundation.HRESULT.S_OK; 1451 return (winmdroot.Foundation.HRESULT)ex.HResult; 1458 private static winmdroot.Foundation.HRESULT put_textTransform(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1462 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1468 return winmdroot.Foundation.HRESULT.S_OK; 1472 return (winmdroot.Foundation.HRESULT)ex.HResult; 1480 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1485 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1493 private static winmdroot.Foundation.HRESULT get_textTransform(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1497 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1503 return winmdroot.Foundation.HRESULT.S_OK; 1507 return (winmdroot.Foundation.HRESULT)ex.HResult; 1514 private static winmdroot.Foundation.HRESULT put_textAlign(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1518 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1524 return winmdroot.Foundation.HRESULT.S_OK; 1528 return (winmdroot.Foundation.HRESULT)ex.HResult; 1536 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1541 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1549 private static winmdroot.Foundation.HRESULT get_textAlign(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1553 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1559 return winmdroot.Foundation.HRESULT.S_OK; 1563 return (winmdroot.Foundation.HRESULT)ex.HResult; 1570 private static winmdroot.Foundation.HRESULT put_textIndent(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1574 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1580 return winmdroot.Foundation.HRESULT.S_OK; 1584 return (winmdroot.Foundation.HRESULT)ex.HResult; 1592 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1597 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1605 private static winmdroot.Foundation.HRESULT get_textIndent(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1609 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1615 return winmdroot.Foundation.HRESULT.S_OK; 1619 return (winmdroot.Foundation.HRESULT)ex.HResult; 1626 private static winmdroot.Foundation.HRESULT put_lineHeight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1630 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1636 return winmdroot.Foundation.HRESULT.S_OK; 1640 return (winmdroot.Foundation.HRESULT)ex.HResult; 1648 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1653 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1661 private static winmdroot.Foundation.HRESULT get_lineHeight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1665 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1671 return winmdroot.Foundation.HRESULT.S_OK; 1675 return (winmdroot.Foundation.HRESULT)ex.HResult; 1682 private static winmdroot.Foundation.HRESULT put_marginTop(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1686 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1692 return winmdroot.Foundation.HRESULT.S_OK; 1696 return (winmdroot.Foundation.HRESULT)ex.HResult; 1704 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1709 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1717 private static winmdroot.Foundation.HRESULT get_marginTop(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1721 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1727 return winmdroot.Foundation.HRESULT.S_OK; 1731 return (winmdroot.Foundation.HRESULT)ex.HResult; 1738 private static winmdroot.Foundation.HRESULT put_marginRight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1742 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1748 return winmdroot.Foundation.HRESULT.S_OK; 1752 return (winmdroot.Foundation.HRESULT)ex.HResult; 1760 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1765 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1773 private static winmdroot.Foundation.HRESULT get_marginRight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1777 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1783 return winmdroot.Foundation.HRESULT.S_OK; 1787 return (winmdroot.Foundation.HRESULT)ex.HResult; 1794 private static winmdroot.Foundation.HRESULT put_marginBottom(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1798 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1804 return winmdroot.Foundation.HRESULT.S_OK; 1808 return (winmdroot.Foundation.HRESULT)ex.HResult; 1816 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1821 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1829 private static winmdroot.Foundation.HRESULT get_marginBottom(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1833 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1839 return winmdroot.Foundation.HRESULT.S_OK; 1843 return (winmdroot.Foundation.HRESULT)ex.HResult; 1850 private static winmdroot.Foundation.HRESULT put_marginLeft(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1854 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1860 return winmdroot.Foundation.HRESULT.S_OK; 1864 return (winmdroot.Foundation.HRESULT)ex.HResult; 1872 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1877 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1885 private static winmdroot.Foundation.HRESULT get_marginLeft(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1889 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1895 return winmdroot.Foundation.HRESULT.S_OK; 1899 return (winmdroot.Foundation.HRESULT)ex.HResult; 1906 private static winmdroot.Foundation.HRESULT put_margin(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 1910 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1916 return winmdroot.Foundation.HRESULT.S_OK; 1920 return (winmdroot.Foundation.HRESULT)ex.HResult; 1928 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1933 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1941 private static winmdroot.Foundation.HRESULT get_margin(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 1945 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1951 return winmdroot.Foundation.HRESULT.S_OK; 1955 return (winmdroot.Foundation.HRESULT)ex.HResult; 1962 private static winmdroot.Foundation.HRESULT put_paddingTop(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 1966 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1972 return winmdroot.Foundation.HRESULT.S_OK; 1976 return (winmdroot.Foundation.HRESULT)ex.HResult; 1984 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1989 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1997 private static winmdroot.Foundation.HRESULT get_paddingTop(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2001 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2007 return winmdroot.Foundation.HRESULT.S_OK; 2011 return (winmdroot.Foundation.HRESULT)ex.HResult; 2018 private static winmdroot.Foundation.HRESULT put_paddingRight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2022 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2028 return winmdroot.Foundation.HRESULT.S_OK; 2032 return (winmdroot.Foundation.HRESULT)ex.HResult; 2040 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2045 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2053 private static winmdroot.Foundation.HRESULT get_paddingRight(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2057 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2063 return winmdroot.Foundation.HRESULT.S_OK; 2067 return (winmdroot.Foundation.HRESULT)ex.HResult; 2074 private static winmdroot.Foundation.HRESULT put_paddingBottom(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2078 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2084 return winmdroot.Foundation.HRESULT.S_OK; 2088 return (winmdroot.Foundation.HRESULT)ex.HResult; 2096 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2101 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2109 private static winmdroot.Foundation.HRESULT get_paddingBottom(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2113 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2119 return winmdroot.Foundation.HRESULT.S_OK; 2123 return (winmdroot.Foundation.HRESULT)ex.HResult; 2130 private static winmdroot.Foundation.HRESULT put_paddingLeft(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2134 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2140 return winmdroot.Foundation.HRESULT.S_OK; 2144 return (winmdroot.Foundation.HRESULT)ex.HResult; 2152 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2157 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2165 private static winmdroot.Foundation.HRESULT get_paddingLeft(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2169 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2175 return winmdroot.Foundation.HRESULT.S_OK; 2179 return (winmdroot.Foundation.HRESULT)ex.HResult; 2186 private static winmdroot.Foundation.HRESULT put_padding(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2190 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2196 return winmdroot.Foundation.HRESULT.S_OK; 2200 return (winmdroot.Foundation.HRESULT)ex.HResult; 2208 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2213 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2221 private static winmdroot.Foundation.HRESULT get_padding(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2225 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2231 return winmdroot.Foundation.HRESULT.S_OK; 2235 return (winmdroot.Foundation.HRESULT)ex.HResult; 2242 private static winmdroot.Foundation.HRESULT put_border(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2246 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2252 return winmdroot.Foundation.HRESULT.S_OK; 2256 return (winmdroot.Foundation.HRESULT)ex.HResult; 2264 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2269 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2277 private static winmdroot.Foundation.HRESULT get_border(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2281 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2287 return winmdroot.Foundation.HRESULT.S_OK; 2291 return (winmdroot.Foundation.HRESULT)ex.HResult; 2298 private static winmdroot.Foundation.HRESULT put_borderTop(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2302 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2308 return winmdroot.Foundation.HRESULT.S_OK; 2312 return (winmdroot.Foundation.HRESULT)ex.HResult; 2320 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2325 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2333 private static winmdroot.Foundation.HRESULT get_borderTop(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2337 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2343 return winmdroot.Foundation.HRESULT.S_OK; 2347 return (winmdroot.Foundation.HRESULT)ex.HResult; 2354 private static winmdroot.Foundation.HRESULT put_borderRight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2358 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2364 return winmdroot.Foundation.HRESULT.S_OK; 2368 return (winmdroot.Foundation.HRESULT)ex.HResult; 2376 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2381 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2389 private static winmdroot.Foundation.HRESULT get_borderRight(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2393 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2399 return winmdroot.Foundation.HRESULT.S_OK; 2403 return (winmdroot.Foundation.HRESULT)ex.HResult; 2410 private static winmdroot.Foundation.HRESULT put_borderBottom(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2414 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2420 return winmdroot.Foundation.HRESULT.S_OK; 2424 return (winmdroot.Foundation.HRESULT)ex.HResult; 2432 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2437 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2445 private static winmdroot.Foundation.HRESULT get_borderBottom(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2449 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2455 return winmdroot.Foundation.HRESULT.S_OK; 2459 return (winmdroot.Foundation.HRESULT)ex.HResult; 2466 private static winmdroot.Foundation.HRESULT put_borderLeft(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2470 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2476 return winmdroot.Foundation.HRESULT.S_OK; 2480 return (winmdroot.Foundation.HRESULT)ex.HResult; 2488 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2493 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2501 private static winmdroot.Foundation.HRESULT get_borderLeft(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2505 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2511 return winmdroot.Foundation.HRESULT.S_OK; 2515 return (winmdroot.Foundation.HRESULT)ex.HResult; 2522 private static winmdroot.Foundation.HRESULT put_borderColor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2526 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2532 return winmdroot.Foundation.HRESULT.S_OK; 2536 return (winmdroot.Foundation.HRESULT)ex.HResult; 2544 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2549 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2557 private static winmdroot.Foundation.HRESULT get_borderColor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2561 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2567 return winmdroot.Foundation.HRESULT.S_OK; 2571 return (winmdroot.Foundation.HRESULT)ex.HResult; 2578 private static winmdroot.Foundation.HRESULT put_borderTopColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2582 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2588 return winmdroot.Foundation.HRESULT.S_OK; 2592 return (winmdroot.Foundation.HRESULT)ex.HResult; 2600 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[95])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2605 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[96])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2613 private static winmdroot.Foundation.HRESULT get_borderTopColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2617 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2623 return winmdroot.Foundation.HRESULT.S_OK; 2627 return (winmdroot.Foundation.HRESULT)ex.HResult; 2634 private static winmdroot.Foundation.HRESULT put_borderRightColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2638 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2644 return winmdroot.Foundation.HRESULT.S_OK; 2648 return (winmdroot.Foundation.HRESULT)ex.HResult; 2656 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[97])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2661 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[98])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2669 private static winmdroot.Foundation.HRESULT get_borderRightColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2673 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2679 return winmdroot.Foundation.HRESULT.S_OK; 2683 return (winmdroot.Foundation.HRESULT)ex.HResult; 2690 private static winmdroot.Foundation.HRESULT put_borderBottomColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2694 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2700 return winmdroot.Foundation.HRESULT.S_OK; 2704 return (winmdroot.Foundation.HRESULT)ex.HResult; 2712 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[99])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2717 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[100])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2725 private static winmdroot.Foundation.HRESULT get_borderBottomColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2729 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2735 return winmdroot.Foundation.HRESULT.S_OK; 2739 return (winmdroot.Foundation.HRESULT)ex.HResult; 2746 private static winmdroot.Foundation.HRESULT put_borderLeftColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2750 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2756 return winmdroot.Foundation.HRESULT.S_OK; 2760 return (winmdroot.Foundation.HRESULT)ex.HResult; 2768 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[101])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2773 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[102])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2781 private static winmdroot.Foundation.HRESULT get_borderLeftColor(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2785 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2791 return winmdroot.Foundation.HRESULT.S_OK; 2795 return (winmdroot.Foundation.HRESULT)ex.HResult; 2802 private static winmdroot.Foundation.HRESULT put_borderWidth(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 2806 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2812 return winmdroot.Foundation.HRESULT.S_OK; 2816 return (winmdroot.Foundation.HRESULT)ex.HResult; 2824 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[103])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2829 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[104])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2837 private static winmdroot.Foundation.HRESULT get_borderWidth(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 2841 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2847 return winmdroot.Foundation.HRESULT.S_OK; 2851 return (winmdroot.Foundation.HRESULT)ex.HResult; 2858 private static winmdroot.Foundation.HRESULT put_borderTopWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2862 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2868 return winmdroot.Foundation.HRESULT.S_OK; 2872 return (winmdroot.Foundation.HRESULT)ex.HResult; 2880 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[105])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2885 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[106])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2893 private static winmdroot.Foundation.HRESULT get_borderTopWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2897 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2903 return winmdroot.Foundation.HRESULT.S_OK; 2907 return (winmdroot.Foundation.HRESULT)ex.HResult; 2914 private static winmdroot.Foundation.HRESULT put_borderRightWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2918 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2924 return winmdroot.Foundation.HRESULT.S_OK; 2928 return (winmdroot.Foundation.HRESULT)ex.HResult; 2936 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[107])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2941 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[108])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2949 private static winmdroot.Foundation.HRESULT get_borderRightWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2953 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2959 return winmdroot.Foundation.HRESULT.S_OK; 2963 return (winmdroot.Foundation.HRESULT)ex.HResult; 2970 private static winmdroot.Foundation.HRESULT put_borderBottomWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 2974 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2980 return winmdroot.Foundation.HRESULT.S_OK; 2984 return (winmdroot.Foundation.HRESULT)ex.HResult; 2992 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[109])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2997 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[110])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3005 private static winmdroot.Foundation.HRESULT get_borderBottomWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3009 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3015 return winmdroot.Foundation.HRESULT.S_OK; 3019 return (winmdroot.Foundation.HRESULT)ex.HResult; 3026 private static winmdroot.Foundation.HRESULT put_borderLeftWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 3030 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3036 return winmdroot.Foundation.HRESULT.S_OK; 3040 return (winmdroot.Foundation.HRESULT)ex.HResult; 3048 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[111])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3053 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[112])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3061 private static winmdroot.Foundation.HRESULT get_borderLeftWidth(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3065 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3071 return winmdroot.Foundation.HRESULT.S_OK; 3075 return (winmdroot.Foundation.HRESULT)ex.HResult; 3082 private static winmdroot.Foundation.HRESULT put_borderStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3086 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3092 return winmdroot.Foundation.HRESULT.S_OK; 3096 return (winmdroot.Foundation.HRESULT)ex.HResult; 3104 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[113])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3109 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[114])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3117 private static winmdroot.Foundation.HRESULT get_borderStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3121 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3127 return winmdroot.Foundation.HRESULT.S_OK; 3131 return (winmdroot.Foundation.HRESULT)ex.HResult; 3138 private static winmdroot.Foundation.HRESULT put_borderTopStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3142 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3148 return winmdroot.Foundation.HRESULT.S_OK; 3152 return (winmdroot.Foundation.HRESULT)ex.HResult; 3160 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[115])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3165 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[116])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3173 private static winmdroot.Foundation.HRESULT get_borderTopStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3177 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3183 return winmdroot.Foundation.HRESULT.S_OK; 3187 return (winmdroot.Foundation.HRESULT)ex.HResult; 3194 private static winmdroot.Foundation.HRESULT put_borderRightStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3198 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3204 return winmdroot.Foundation.HRESULT.S_OK; 3208 return (winmdroot.Foundation.HRESULT)ex.HResult; 3216 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[117])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3221 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[118])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3229 private static winmdroot.Foundation.HRESULT get_borderRightStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3233 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3239 return winmdroot.Foundation.HRESULT.S_OK; 3243 return (winmdroot.Foundation.HRESULT)ex.HResult; 3250 private static winmdroot.Foundation.HRESULT put_borderBottomStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3254 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3260 return winmdroot.Foundation.HRESULT.S_OK; 3264 return (winmdroot.Foundation.HRESULT)ex.HResult; 3272 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[119])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3277 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[120])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3285 private static winmdroot.Foundation.HRESULT get_borderBottomStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3289 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3295 return winmdroot.Foundation.HRESULT.S_OK; 3299 return (winmdroot.Foundation.HRESULT)ex.HResult; 3306 private static winmdroot.Foundation.HRESULT put_borderLeftStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3310 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3316 return winmdroot.Foundation.HRESULT.S_OK; 3320 return (winmdroot.Foundation.HRESULT)ex.HResult; 3328 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[121])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3333 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[122])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3341 private static winmdroot.Foundation.HRESULT get_borderLeftStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3345 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3351 return winmdroot.Foundation.HRESULT.S_OK; 3355 return (winmdroot.Foundation.HRESULT)ex.HResult; 3362 private static winmdroot.Foundation.HRESULT put_width(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 3366 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3372 return winmdroot.Foundation.HRESULT.S_OK; 3376 return (winmdroot.Foundation.HRESULT)ex.HResult; 3384 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[123])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3389 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[124])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3397 private static winmdroot.Foundation.HRESULT get_width(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3401 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3407 return winmdroot.Foundation.HRESULT.S_OK; 3411 return (winmdroot.Foundation.HRESULT)ex.HResult; 3418 private static winmdroot.Foundation.HRESULT put_height(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 3422 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3428 return winmdroot.Foundation.HRESULT.S_OK; 3432 return (winmdroot.Foundation.HRESULT)ex.HResult; 3440 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[125])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3445 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[126])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3453 private static winmdroot.Foundation.HRESULT get_height(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3457 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3463 return winmdroot.Foundation.HRESULT.S_OK; 3467 return (winmdroot.Foundation.HRESULT)ex.HResult; 3474 private static winmdroot.Foundation.HRESULT put_styleFloat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3478 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3484 return winmdroot.Foundation.HRESULT.S_OK; 3488 return (winmdroot.Foundation.HRESULT)ex.HResult; 3496 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[127])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3501 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[128])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3509 private static winmdroot.Foundation.HRESULT get_styleFloat(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3513 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3519 return winmdroot.Foundation.HRESULT.S_OK; 3523 return (winmdroot.Foundation.HRESULT)ex.HResult; 3530 private static winmdroot.Foundation.HRESULT put_clear(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3534 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3540 return winmdroot.Foundation.HRESULT.S_OK; 3544 return (winmdroot.Foundation.HRESULT)ex.HResult; 3552 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[129])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3557 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[130])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3565 private static winmdroot.Foundation.HRESULT get_clear(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3569 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3575 return winmdroot.Foundation.HRESULT.S_OK; 3579 return (winmdroot.Foundation.HRESULT)ex.HResult; 3586 private static winmdroot.Foundation.HRESULT put_display(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3590 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3596 return winmdroot.Foundation.HRESULT.S_OK; 3600 return (winmdroot.Foundation.HRESULT)ex.HResult; 3608 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[131])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3613 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[132])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3621 private static winmdroot.Foundation.HRESULT get_display(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3625 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3631 return winmdroot.Foundation.HRESULT.S_OK; 3635 return (winmdroot.Foundation.HRESULT)ex.HResult; 3642 private static winmdroot.Foundation.HRESULT put_visibility(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3646 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3652 return winmdroot.Foundation.HRESULT.S_OK; 3656 return (winmdroot.Foundation.HRESULT)ex.HResult; 3664 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[133])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3669 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[134])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3677 private static winmdroot.Foundation.HRESULT get_visibility(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3681 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3687 return winmdroot.Foundation.HRESULT.S_OK; 3691 return (winmdroot.Foundation.HRESULT)ex.HResult; 3698 private static winmdroot.Foundation.HRESULT put_listStyleType(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3702 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3708 return winmdroot.Foundation.HRESULT.S_OK; 3712 return (winmdroot.Foundation.HRESULT)ex.HResult; 3720 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[135])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3725 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[136])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3733 private static winmdroot.Foundation.HRESULT get_listStyleType(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3737 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3743 return winmdroot.Foundation.HRESULT.S_OK; 3747 return (winmdroot.Foundation.HRESULT)ex.HResult; 3754 private static winmdroot.Foundation.HRESULT put_listStylePosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3758 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3764 return winmdroot.Foundation.HRESULT.S_OK; 3768 return (winmdroot.Foundation.HRESULT)ex.HResult; 3776 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[137])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3781 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[138])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3789 private static winmdroot.Foundation.HRESULT get_listStylePosition(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3793 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3799 return winmdroot.Foundation.HRESULT.S_OK; 3803 return (winmdroot.Foundation.HRESULT)ex.HResult; 3810 private static winmdroot.Foundation.HRESULT put_listStyleImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3814 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3820 return winmdroot.Foundation.HRESULT.S_OK; 3824 return (winmdroot.Foundation.HRESULT)ex.HResult; 3832 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[139])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3837 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[140])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3845 private static winmdroot.Foundation.HRESULT get_listStyleImage(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3849 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3855 return winmdroot.Foundation.HRESULT.S_OK; 3859 return (winmdroot.Foundation.HRESULT)ex.HResult; 3866 private static winmdroot.Foundation.HRESULT put_listStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3870 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3876 return winmdroot.Foundation.HRESULT.S_OK; 3880 return (winmdroot.Foundation.HRESULT)ex.HResult; 3888 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[141])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3893 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[142])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3901 private static winmdroot.Foundation.HRESULT get_listStyle(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3905 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3911 return winmdroot.Foundation.HRESULT.S_OK; 3915 return (winmdroot.Foundation.HRESULT)ex.HResult; 3922 private static winmdroot.Foundation.HRESULT put_whiteSpace(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 3926 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3932 return winmdroot.Foundation.HRESULT.S_OK; 3936 return (winmdroot.Foundation.HRESULT)ex.HResult; 3944 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[143])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3949 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[144])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3957 private static winmdroot.Foundation.HRESULT get_whiteSpace(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 3961 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3967 return winmdroot.Foundation.HRESULT.S_OK; 3971 return (winmdroot.Foundation.HRESULT)ex.HResult; 3978 private static winmdroot.Foundation.HRESULT put_top(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 3982 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3988 return winmdroot.Foundation.HRESULT.S_OK; 3992 return (winmdroot.Foundation.HRESULT)ex.HResult; 4000 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[145])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4005 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[146])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4013 private static winmdroot.Foundation.HRESULT get_top(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4017 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4023 return winmdroot.Foundation.HRESULT.S_OK; 4027 return (winmdroot.Foundation.HRESULT)ex.HResult; 4034 private static winmdroot.Foundation.HRESULT put_left(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 4038 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4044 return winmdroot.Foundation.HRESULT.S_OK; 4048 return (winmdroot.Foundation.HRESULT)ex.HResult; 4056 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[147])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4061 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[148])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4069 private static winmdroot.Foundation.HRESULT get_left(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4073 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4079 return winmdroot.Foundation.HRESULT.S_OK; 4083 return (winmdroot.Foundation.HRESULT)ex.HResult; 4090 private static winmdroot.Foundation.HRESULT get_position(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4094 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4100 return winmdroot.Foundation.HRESULT.S_OK; 4104 return (winmdroot.Foundation.HRESULT)ex.HResult; 4113 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[149])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4121 private static winmdroot.Foundation.HRESULT put_zIndex(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT v) 4125 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4131 return winmdroot.Foundation.HRESULT.S_OK; 4135 return (winmdroot.Foundation.HRESULT)ex.HResult; 4143 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[150])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4148 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[151])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4156 private static winmdroot.Foundation.HRESULT get_zIndex(IHTMLRuleStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4160 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4166 return winmdroot.Foundation.HRESULT.S_OK; 4170 return (winmdroot.Foundation.HRESULT)ex.HResult; 4177 private static winmdroot.Foundation.HRESULT put_overflow(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4181 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4187 return winmdroot.Foundation.HRESULT.S_OK; 4191 return (winmdroot.Foundation.HRESULT)ex.HResult; 4199 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[152])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4204 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[153])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4212 private static winmdroot.Foundation.HRESULT get_overflow(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4216 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4222 return winmdroot.Foundation.HRESULT.S_OK; 4226 return (winmdroot.Foundation.HRESULT)ex.HResult; 4233 private static winmdroot.Foundation.HRESULT put_pageBreakBefore(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4237 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4243 return winmdroot.Foundation.HRESULT.S_OK; 4247 return (winmdroot.Foundation.HRESULT)ex.HResult; 4255 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[154])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4260 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[155])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4268 private static winmdroot.Foundation.HRESULT get_pageBreakBefore(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4272 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4278 return winmdroot.Foundation.HRESULT.S_OK; 4282 return (winmdroot.Foundation.HRESULT)ex.HResult; 4289 private static winmdroot.Foundation.HRESULT put_pageBreakAfter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4293 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4299 return winmdroot.Foundation.HRESULT.S_OK; 4303 return (winmdroot.Foundation.HRESULT)ex.HResult; 4311 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[156])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4316 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[157])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4324 private static winmdroot.Foundation.HRESULT get_pageBreakAfter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4328 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4334 return winmdroot.Foundation.HRESULT.S_OK; 4338 return (winmdroot.Foundation.HRESULT)ex.HResult; 4345 private static winmdroot.Foundation.HRESULT put_cssText(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4349 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4355 return winmdroot.Foundation.HRESULT.S_OK; 4359 return (winmdroot.Foundation.HRESULT)ex.HResult; 4367 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[158])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4372 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[159])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4380 private static winmdroot.Foundation.HRESULT get_cssText(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4384 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4390 return winmdroot.Foundation.HRESULT.S_OK; 4394 return (winmdroot.Foundation.HRESULT)ex.HResult; 4401 private static winmdroot.Foundation.HRESULT put_cursor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4405 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4411 return winmdroot.Foundation.HRESULT.S_OK; 4415 return (winmdroot.Foundation.HRESULT)ex.HResult; 4423 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[160])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4428 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[161])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4436 private static winmdroot.Foundation.HRESULT get_cursor(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4440 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4446 return winmdroot.Foundation.HRESULT.S_OK; 4450 return (winmdroot.Foundation.HRESULT)ex.HResult; 4457 private static winmdroot.Foundation.HRESULT put_clip(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4461 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4467 return winmdroot.Foundation.HRESULT.S_OK; 4471 return (winmdroot.Foundation.HRESULT)ex.HResult; 4479 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[162])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4484 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[163])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4492 private static winmdroot.Foundation.HRESULT get_clip(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4496 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4502 return winmdroot.Foundation.HRESULT.S_OK; 4506 return (winmdroot.Foundation.HRESULT)ex.HResult; 4513 private static winmdroot.Foundation.HRESULT put_filter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR v) 4517 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4523 return winmdroot.Foundation.HRESULT.S_OK; 4527 return (winmdroot.Foundation.HRESULT)ex.HResult; 4535 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[164])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4540 ((delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[165])((IHTMLRuleStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4548 private static winmdroot.Foundation.HRESULT get_filter(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR* p) 4552 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4558 return winmdroot.Foundation.HRESULT.S_OK; 4562 return (winmdroot.Foundation.HRESULT)ex.HResult; 4569 private static winmdroot.Foundation.HRESULT setAttribute(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 4573 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4582 return (winmdroot.Foundation.HRESULT)ex.HResult; 4588 ((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(); 4594 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 4598 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4607 return (winmdroot.Foundation.HRESULT)ex.HResult; 4614 ((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(); 4621 private static winmdroot.Foundation.HRESULT removeAttribute(IHTMLRuleStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 4625 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4634 return (winmdroot.Foundation.HRESULT)ex.HResult; 4641 ((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(); 4645 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 4649 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 4666 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 4672 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 4674 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 4676 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 4678 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 4680 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontFamily_8; 4682 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontFamily_9; 4684 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontStyle_10; 4686 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontStyle_11; 4688 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontVariant_12; 4690 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontVariant_13; 4692 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontWeight_14; 4694 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontWeight_15; 4696 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_fontSize_16; 4698 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_fontSize_17; 4700 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_font_18; 4702 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_font_19; 4704 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_color_20; 4706 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_color_21; 4708 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_background_22; 4710 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_background_23; 4712 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundColor_24; 4714 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundColor_25; 4716 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundImage_26; 4718 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundImage_27; 4720 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundRepeat_28; 4722 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundRepeat_29; 4724 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundAttachment_30; 4726 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundAttachment_31; 4728 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundPosition_32; 4730 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundPosition_33; 4732 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundPositionX_34; 4734 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionX_35; 4736 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundPositionY_36; 4738 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionY_37; 4740 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_wordSpacing_38; 4742 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_wordSpacing_39; 4744 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_letterSpacing_40; 4746 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_letterSpacing_41; 4748 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textDecoration_42; 4750 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_43; 4752 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationNone_44; 4754 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationNone_45; 4756 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationUnderline_46; 4758 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationUnderline_47; 4760 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationOverline_48; 4762 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationOverline_49; 4764 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationLineThrough_50; 4766 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationLineThrough_51; 4768 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationBlink_52; 4770 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationBlink_53; 4772 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_verticalAlign_54; 4774 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_verticalAlign_55; 4776 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textTransform_56; 4778 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textTransform_57; 4780 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textAlign_58; 4782 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAlign_59; 4784 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_textIndent_60; 4786 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textIndent_61; 4788 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_lineHeight_62; 4790 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_lineHeight_63; 4792 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginTop_64; 4794 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginTop_65; 4796 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginRight_66; 4798 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginRight_67; 4800 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginBottom_68; 4802 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginBottom_69; 4804 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginLeft_70; 4806 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginLeft_71; 4808 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_margin_72; 4810 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_margin_73; 4812 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingTop_74; 4814 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingTop_75; 4816 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingRight_76; 4818 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingRight_77; 4820 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingBottom_78; 4822 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingBottom_79; 4824 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingLeft_80; 4826 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingLeft_81; 4828 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_padding_82; 4830 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_padding_83; 4832 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_border_84; 4834 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_border_85; 4836 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTop_86; 4838 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTop_87; 4840 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRight_88; 4842 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRight_89; 4844 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottom_90; 4846 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottom_91; 4848 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeft_92; 4850 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeft_93; 4852 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderColor_94; 4854 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderColor_95; 4856 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderTopColor_96; 4858 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopColor_97; 4860 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderRightColor_98; 4862 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightColor_99; 4864 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderBottomColor_100; 4866 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomColor_101; 4868 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderLeftColor_102; 4870 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftColor_103; 4872 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderWidth_104; 4874 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderWidth_105; 4876 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderTopWidth_106; 4878 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopWidth_107; 4880 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderRightWidth_108; 4882 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightWidth_109; 4884 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderBottomWidth_110; 4886 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomWidth_111; 4888 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderLeftWidth_112; 4890 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftWidth_113; 4892 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderStyle_114; 4894 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderStyle_115; 4896 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTopStyle_116; 4898 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTopStyle_117; 4900 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRightStyle_118; 4902 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRightStyle_119; 4904 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottomStyle_120; 4906 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottomStyle_121; 4908 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeftStyle_122; 4910 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeftStyle_123; 4912 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_width_124; 4914 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_width_125; 4916 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_height_126; 4918 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_height_127; 4920 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_styleFloat_128; 4922 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_styleFloat_129; 4924 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clear_130; 4926 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clear_131; 4928 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_display_132; 4930 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_display_133; 4932 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_visibility_134; 4934 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_visibility_135; 4936 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleType_136; 4938 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleType_137; 4940 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStylePosition_138; 4942 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStylePosition_139; 4944 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleImage_140; 4946 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleImage_141; 4948 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyle_142; 4950 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyle_143; 4952 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_whiteSpace_144; 4954 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_whiteSpace_145; 4956 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_top_146; 4958 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_top_147; 4960 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_left_148; 4962 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_left_149; 4964 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_position_150; 4966 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_zIndex_151; 4968 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_zIndex_152; 4970 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_overflow_153; 4972 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflow_154; 4974 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakBefore_155; 4976 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakBefore_156; 4978 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakAfter_157; 4980 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakAfter_158; 4982 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cssText_159; 4984 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cssText_160; 4986 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cursor_161; 4988 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cursor_162; 4990 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clip_163; 4992 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clip_164; 4994 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_filter_165; 4996 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_filter_166; 4998 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT> setAttribute_167; 5000 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_168; 5002 internal delegate *unmanaged [Stdcall]<IHTMLRuleStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeAttribute_169; 5668winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags); 5671 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue); 5674 unsafe winmdroot.Foundation.HRESULT removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess);
Windows.Win32.IHTMLScreen.g.cs (75)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLScreen*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLScreen*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLScreen*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLScreen*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLScreen*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLScreen*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_colorDepth(IHTMLScreen* pThis, int* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT put_bufferDepth(IHTMLScreen* pThis, int v) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return winmdroot.Foundation.HRESULT.S_OK; 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 167 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLScreen*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 172 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 180 private static winmdroot.Foundation.HRESULT get_bufferDepth(IHTMLScreen* pThis, int* p) 184 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return winmdroot.Foundation.HRESULT.S_OK; 194 return (winmdroot.Foundation.HRESULT)ex.HResult; 201 private static winmdroot.Foundation.HRESULT get_width(IHTMLScreen* pThis, int* p) 205 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return winmdroot.Foundation.HRESULT.S_OK; 215 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 232 private static winmdroot.Foundation.HRESULT get_height(IHTMLScreen* pThis, int* p) 236 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 242 return winmdroot.Foundation.HRESULT.S_OK; 246 return (winmdroot.Foundation.HRESULT)ex.HResult; 255 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 263 private static winmdroot.Foundation.HRESULT put_updateInterval(IHTMLScreen* pThis, int v) 267 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 273 return winmdroot.Foundation.HRESULT.S_OK; 277 return (winmdroot.Foundation.HRESULT)ex.HResult; 285 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLScreen*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 290 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 298 private static winmdroot.Foundation.HRESULT get_updateInterval(IHTMLScreen* pThis, int* p) 302 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 308 return winmdroot.Foundation.HRESULT.S_OK; 312 return (winmdroot.Foundation.HRESULT)ex.HResult; 319 private static winmdroot.Foundation.HRESULT get_availHeight(IHTMLScreen* pThis, int* p) 323 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 329 return winmdroot.Foundation.HRESULT.S_OK; 333 return (winmdroot.Foundation.HRESULT)ex.HResult; 342 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 350 private static winmdroot.Foundation.HRESULT get_availWidth(IHTMLScreen* pThis, int* p) 354 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 360 return winmdroot.Foundation.HRESULT.S_OK; 364 return (winmdroot.Foundation.HRESULT)ex.HResult; 373 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 381 private static winmdroot.Foundation.HRESULT get_fontSmoothingEnabled(IHTMLScreen* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 385 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 391 return winmdroot.Foundation.HRESULT.S_OK; 395 return (winmdroot.Foundation.HRESULT)ex.HResult; 404 ((delegate *unmanaged [Stdcall]<IHTMLScreen*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLScreen*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 409 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 413 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 430 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 436 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 438 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 440 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 442 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 444 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_colorDepth_8; 446 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int ,winmdroot.Foundation.HRESULT> put_bufferDepth_9; 448 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_bufferDepth_10; 450 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_width_11; 452 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_height_12; 454 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int ,winmdroot.Foundation.HRESULT> put_updateInterval_13; 456 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_updateInterval_14; 458 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_availHeight_15; 460 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,int* ,winmdroot.Foundation.HRESULT> get_availWidth_16; 462 internal delegate *unmanaged [Stdcall]<IHTMLScreen*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_fontSmoothingEnabled_17;
Windows.Win32.IHTMLSelectionObject.g.cs (39)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT createRange(IHTMLSelectionObject* pThis, winmdroot.System.Com.IDispatch** range) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 141 private static winmdroot.Foundation.HRESULT empty(IHTMLSelectionObject* pThis) 145 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 154 return (winmdroot.Foundation.HRESULT)ex.HResult; 160 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 166 private static winmdroot.Foundation.HRESULT clear(IHTMLSelectionObject* pThis) 170 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 185 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 191 private static winmdroot.Foundation.HRESULT get_type(IHTMLSelectionObject* pThis, winmdroot.Foundation.BSTR* p) 195 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 201 return winmdroot.Foundation.HRESULT.S_OK; 205 return (winmdroot.Foundation.HRESULT)ex.HResult; 214 ((delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLSelectionObject*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 219 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 223 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 240 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 246 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 248 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 250 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 252 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 254 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> createRange_8; 256 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.HRESULT> empty_9; 258 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.HRESULT> clear_10; 260 internal delegate *unmanaged [Stdcall]<IHTMLSelectionObject*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_type_11; 289 unsafe winmdroot.Foundation.HRESULT createRange(winmdroot.System.Com.IDispatch** range); 292winmdroot.Foundation.HRESULT empty(); 295winmdroot.Foundation.HRESULT clear();
Windows.Win32.IHTMLStyle.g.cs (1091)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLStyle*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLStyle*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLStyle*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLStyle*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLStyle*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT put_fontFamily(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 141 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT get_fontFamily(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return winmdroot.Foundation.HRESULT.S_OK; 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 private static winmdroot.Foundation.HRESULT put_fontStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 197 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT get_fontStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 209 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return winmdroot.Foundation.HRESULT.S_OK; 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 private static winmdroot.Foundation.HRESULT put_fontVariant(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 230 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return winmdroot.Foundation.HRESULT.S_OK; 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 248 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 253 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 261 private static winmdroot.Foundation.HRESULT get_fontVariant(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 271 return winmdroot.Foundation.HRESULT.S_OK; 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 282 private static winmdroot.Foundation.HRESULT put_fontWeight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 286 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return winmdroot.Foundation.HRESULT.S_OK; 296 return (winmdroot.Foundation.HRESULT)ex.HResult; 304 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 309 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 317 private static winmdroot.Foundation.HRESULT get_fontWeight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 321 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 327 return winmdroot.Foundation.HRESULT.S_OK; 331 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 private static winmdroot.Foundation.HRESULT put_fontSize(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 342 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 348 return winmdroot.Foundation.HRESULT.S_OK; 352 return (winmdroot.Foundation.HRESULT)ex.HResult; 360 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 365 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 373 private static winmdroot.Foundation.HRESULT get_fontSize(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 377 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 383 return winmdroot.Foundation.HRESULT.S_OK; 387 return (winmdroot.Foundation.HRESULT)ex.HResult; 394 private static winmdroot.Foundation.HRESULT put_font(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 398 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 404 return winmdroot.Foundation.HRESULT.S_OK; 408 return (winmdroot.Foundation.HRESULT)ex.HResult; 416 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 421 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 429 private static winmdroot.Foundation.HRESULT get_font(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 433 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 439 return winmdroot.Foundation.HRESULT.S_OK; 443 return (winmdroot.Foundation.HRESULT)ex.HResult; 450 private static winmdroot.Foundation.HRESULT put_color(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 454 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 460 return winmdroot.Foundation.HRESULT.S_OK; 464 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 477 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 485 private static winmdroot.Foundation.HRESULT get_color(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 489 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 495 return winmdroot.Foundation.HRESULT.S_OK; 499 return (winmdroot.Foundation.HRESULT)ex.HResult; 506 private static winmdroot.Foundation.HRESULT put_background(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 510 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 516 return winmdroot.Foundation.HRESULT.S_OK; 520 return (winmdroot.Foundation.HRESULT)ex.HResult; 528 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 533 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 541 private static winmdroot.Foundation.HRESULT get_background(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 545 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 551 return winmdroot.Foundation.HRESULT.S_OK; 555 return (winmdroot.Foundation.HRESULT)ex.HResult; 562 private static winmdroot.Foundation.HRESULT put_backgroundColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 566 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 572 return winmdroot.Foundation.HRESULT.S_OK; 576 return (winmdroot.Foundation.HRESULT)ex.HResult; 584 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 589 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 597 private static winmdroot.Foundation.HRESULT get_backgroundColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 601 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 607 return winmdroot.Foundation.HRESULT.S_OK; 611 return (winmdroot.Foundation.HRESULT)ex.HResult; 618 private static winmdroot.Foundation.HRESULT put_backgroundImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 622 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 628 return winmdroot.Foundation.HRESULT.S_OK; 632 return (winmdroot.Foundation.HRESULT)ex.HResult; 640 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 645 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 653 private static winmdroot.Foundation.HRESULT get_backgroundImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 657 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 663 return winmdroot.Foundation.HRESULT.S_OK; 667 return (winmdroot.Foundation.HRESULT)ex.HResult; 674 private static winmdroot.Foundation.HRESULT put_backgroundRepeat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 678 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 684 return winmdroot.Foundation.HRESULT.S_OK; 688 return (winmdroot.Foundation.HRESULT)ex.HResult; 696 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 701 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 709 private static winmdroot.Foundation.HRESULT get_backgroundRepeat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 713 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 719 return winmdroot.Foundation.HRESULT.S_OK; 723 return (winmdroot.Foundation.HRESULT)ex.HResult; 730 private static winmdroot.Foundation.HRESULT put_backgroundAttachment(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 734 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 740 return winmdroot.Foundation.HRESULT.S_OK; 744 return (winmdroot.Foundation.HRESULT)ex.HResult; 752 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 757 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 765 private static winmdroot.Foundation.HRESULT get_backgroundAttachment(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 769 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 775 return winmdroot.Foundation.HRESULT.S_OK; 779 return (winmdroot.Foundation.HRESULT)ex.HResult; 786 private static winmdroot.Foundation.HRESULT put_backgroundPosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 790 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 796 return winmdroot.Foundation.HRESULT.S_OK; 800 return (winmdroot.Foundation.HRESULT)ex.HResult; 808 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 813 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 821 private static winmdroot.Foundation.HRESULT get_backgroundPosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 825 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 831 return winmdroot.Foundation.HRESULT.S_OK; 835 return (winmdroot.Foundation.HRESULT)ex.HResult; 842 private static winmdroot.Foundation.HRESULT put_backgroundPositionX(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 846 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 852 return winmdroot.Foundation.HRESULT.S_OK; 856 return (winmdroot.Foundation.HRESULT)ex.HResult; 864 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 869 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 877 private static winmdroot.Foundation.HRESULT get_backgroundPositionX(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 881 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 887 return winmdroot.Foundation.HRESULT.S_OK; 891 return (winmdroot.Foundation.HRESULT)ex.HResult; 898 private static winmdroot.Foundation.HRESULT put_backgroundPositionY(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 902 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 908 return winmdroot.Foundation.HRESULT.S_OK; 912 return (winmdroot.Foundation.HRESULT)ex.HResult; 920 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 925 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 933 private static winmdroot.Foundation.HRESULT get_backgroundPositionY(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 937 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 943 return winmdroot.Foundation.HRESULT.S_OK; 947 return (winmdroot.Foundation.HRESULT)ex.HResult; 954 private static winmdroot.Foundation.HRESULT put_wordSpacing(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 958 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 964 return winmdroot.Foundation.HRESULT.S_OK; 968 return (winmdroot.Foundation.HRESULT)ex.HResult; 976 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 981 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 989 private static winmdroot.Foundation.HRESULT get_wordSpacing(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 993 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 999 return winmdroot.Foundation.HRESULT.S_OK; 1003 return (winmdroot.Foundation.HRESULT)ex.HResult; 1010 private static winmdroot.Foundation.HRESULT put_letterSpacing(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1014 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1020 return winmdroot.Foundation.HRESULT.S_OK; 1024 return (winmdroot.Foundation.HRESULT)ex.HResult; 1032 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1037 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1045 private static winmdroot.Foundation.HRESULT get_letterSpacing(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1049 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1055 return winmdroot.Foundation.HRESULT.S_OK; 1059 return (winmdroot.Foundation.HRESULT)ex.HResult; 1066 private static winmdroot.Foundation.HRESULT put_textDecoration(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1070 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1076 return winmdroot.Foundation.HRESULT.S_OK; 1080 return (winmdroot.Foundation.HRESULT)ex.HResult; 1088 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1093 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1101 private static winmdroot.Foundation.HRESULT get_textDecoration(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1105 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1111 return winmdroot.Foundation.HRESULT.S_OK; 1115 return (winmdroot.Foundation.HRESULT)ex.HResult; 1122 private static winmdroot.Foundation.HRESULT put_textDecorationNone(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1126 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1132 return winmdroot.Foundation.HRESULT.S_OK; 1136 return (winmdroot.Foundation.HRESULT)ex.HResult; 1144 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1149 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1157 private static winmdroot.Foundation.HRESULT get_textDecorationNone(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1161 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1167 return winmdroot.Foundation.HRESULT.S_OK; 1171 return (winmdroot.Foundation.HRESULT)ex.HResult; 1178 private static winmdroot.Foundation.HRESULT put_textDecorationUnderline(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1182 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1188 return winmdroot.Foundation.HRESULT.S_OK; 1192 return (winmdroot.Foundation.HRESULT)ex.HResult; 1200 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1205 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1213 private static winmdroot.Foundation.HRESULT get_textDecorationUnderline(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1217 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1223 return winmdroot.Foundation.HRESULT.S_OK; 1227 return (winmdroot.Foundation.HRESULT)ex.HResult; 1234 private static winmdroot.Foundation.HRESULT put_textDecorationOverline(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1238 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1244 return winmdroot.Foundation.HRESULT.S_OK; 1248 return (winmdroot.Foundation.HRESULT)ex.HResult; 1256 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1261 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1269 private static winmdroot.Foundation.HRESULT get_textDecorationOverline(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1273 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1279 return winmdroot.Foundation.HRESULT.S_OK; 1283 return (winmdroot.Foundation.HRESULT)ex.HResult; 1290 private static winmdroot.Foundation.HRESULT put_textDecorationLineThrough(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1294 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1300 return winmdroot.Foundation.HRESULT.S_OK; 1304 return (winmdroot.Foundation.HRESULT)ex.HResult; 1312 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1317 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1325 private static winmdroot.Foundation.HRESULT get_textDecorationLineThrough(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1329 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1335 return winmdroot.Foundation.HRESULT.S_OK; 1339 return (winmdroot.Foundation.HRESULT)ex.HResult; 1346 private static winmdroot.Foundation.HRESULT put_textDecorationBlink(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL v) 1350 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1356 return winmdroot.Foundation.HRESULT.S_OK; 1360 return (winmdroot.Foundation.HRESULT)ex.HResult; 1368 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1373 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1381 private static winmdroot.Foundation.HRESULT get_textDecorationBlink(IHTMLStyle* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1385 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1391 return winmdroot.Foundation.HRESULT.S_OK; 1395 return (winmdroot.Foundation.HRESULT)ex.HResult; 1402 private static winmdroot.Foundation.HRESULT put_verticalAlign(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1406 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1412 return winmdroot.Foundation.HRESULT.S_OK; 1416 return (winmdroot.Foundation.HRESULT)ex.HResult; 1424 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1429 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1437 private static winmdroot.Foundation.HRESULT get_verticalAlign(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1441 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1447 return winmdroot.Foundation.HRESULT.S_OK; 1451 return (winmdroot.Foundation.HRESULT)ex.HResult; 1458 private static winmdroot.Foundation.HRESULT put_textTransform(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1462 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1468 return winmdroot.Foundation.HRESULT.S_OK; 1472 return (winmdroot.Foundation.HRESULT)ex.HResult; 1480 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1485 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1493 private static winmdroot.Foundation.HRESULT get_textTransform(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1497 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1503 return winmdroot.Foundation.HRESULT.S_OK; 1507 return (winmdroot.Foundation.HRESULT)ex.HResult; 1514 private static winmdroot.Foundation.HRESULT put_textAlign(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1518 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1524 return winmdroot.Foundation.HRESULT.S_OK; 1528 return (winmdroot.Foundation.HRESULT)ex.HResult; 1536 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1541 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1549 private static winmdroot.Foundation.HRESULT get_textAlign(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1553 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1559 return winmdroot.Foundation.HRESULT.S_OK; 1563 return (winmdroot.Foundation.HRESULT)ex.HResult; 1570 private static winmdroot.Foundation.HRESULT put_textIndent(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1574 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1580 return winmdroot.Foundation.HRESULT.S_OK; 1584 return (winmdroot.Foundation.HRESULT)ex.HResult; 1592 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1597 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1605 private static winmdroot.Foundation.HRESULT get_textIndent(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1609 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1615 return winmdroot.Foundation.HRESULT.S_OK; 1619 return (winmdroot.Foundation.HRESULT)ex.HResult; 1626 private static winmdroot.Foundation.HRESULT put_lineHeight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1630 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1636 return winmdroot.Foundation.HRESULT.S_OK; 1640 return (winmdroot.Foundation.HRESULT)ex.HResult; 1648 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1653 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1661 private static winmdroot.Foundation.HRESULT get_lineHeight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1665 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1671 return winmdroot.Foundation.HRESULT.S_OK; 1675 return (winmdroot.Foundation.HRESULT)ex.HResult; 1682 private static winmdroot.Foundation.HRESULT put_marginTop(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1686 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1692 return winmdroot.Foundation.HRESULT.S_OK; 1696 return (winmdroot.Foundation.HRESULT)ex.HResult; 1704 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1709 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1717 private static winmdroot.Foundation.HRESULT get_marginTop(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1721 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1727 return winmdroot.Foundation.HRESULT.S_OK; 1731 return (winmdroot.Foundation.HRESULT)ex.HResult; 1738 private static winmdroot.Foundation.HRESULT put_marginRight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1742 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1748 return winmdroot.Foundation.HRESULT.S_OK; 1752 return (winmdroot.Foundation.HRESULT)ex.HResult; 1760 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1765 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1773 private static winmdroot.Foundation.HRESULT get_marginRight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1777 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1783 return winmdroot.Foundation.HRESULT.S_OK; 1787 return (winmdroot.Foundation.HRESULT)ex.HResult; 1794 private static winmdroot.Foundation.HRESULT put_marginBottom(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1798 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1804 return winmdroot.Foundation.HRESULT.S_OK; 1808 return (winmdroot.Foundation.HRESULT)ex.HResult; 1816 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1821 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1829 private static winmdroot.Foundation.HRESULT get_marginBottom(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1833 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1839 return winmdroot.Foundation.HRESULT.S_OK; 1843 return (winmdroot.Foundation.HRESULT)ex.HResult; 1850 private static winmdroot.Foundation.HRESULT put_marginLeft(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1854 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1860 return winmdroot.Foundation.HRESULT.S_OK; 1864 return (winmdroot.Foundation.HRESULT)ex.HResult; 1872 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1877 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1885 private static winmdroot.Foundation.HRESULT get_marginLeft(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 1889 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1895 return winmdroot.Foundation.HRESULT.S_OK; 1899 return (winmdroot.Foundation.HRESULT)ex.HResult; 1906 private static winmdroot.Foundation.HRESULT put_margin(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 1910 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1916 return winmdroot.Foundation.HRESULT.S_OK; 1920 return (winmdroot.Foundation.HRESULT)ex.HResult; 1928 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1933 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1941 private static winmdroot.Foundation.HRESULT get_margin(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 1945 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1951 return winmdroot.Foundation.HRESULT.S_OK; 1955 return (winmdroot.Foundation.HRESULT)ex.HResult; 1962 private static winmdroot.Foundation.HRESULT put_paddingTop(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 1966 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1972 return winmdroot.Foundation.HRESULT.S_OK; 1976 return (winmdroot.Foundation.HRESULT)ex.HResult; 1984 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1989 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1997 private static winmdroot.Foundation.HRESULT get_paddingTop(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2001 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2007 return winmdroot.Foundation.HRESULT.S_OK; 2011 return (winmdroot.Foundation.HRESULT)ex.HResult; 2018 private static winmdroot.Foundation.HRESULT put_paddingRight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2022 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2028 return winmdroot.Foundation.HRESULT.S_OK; 2032 return (winmdroot.Foundation.HRESULT)ex.HResult; 2040 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2045 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2053 private static winmdroot.Foundation.HRESULT get_paddingRight(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2057 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2063 return winmdroot.Foundation.HRESULT.S_OK; 2067 return (winmdroot.Foundation.HRESULT)ex.HResult; 2074 private static winmdroot.Foundation.HRESULT put_paddingBottom(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2078 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2084 return winmdroot.Foundation.HRESULT.S_OK; 2088 return (winmdroot.Foundation.HRESULT)ex.HResult; 2096 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2101 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2109 private static winmdroot.Foundation.HRESULT get_paddingBottom(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2113 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2119 return winmdroot.Foundation.HRESULT.S_OK; 2123 return (winmdroot.Foundation.HRESULT)ex.HResult; 2130 private static winmdroot.Foundation.HRESULT put_paddingLeft(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2134 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2140 return winmdroot.Foundation.HRESULT.S_OK; 2144 return (winmdroot.Foundation.HRESULT)ex.HResult; 2152 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2157 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2165 private static winmdroot.Foundation.HRESULT get_paddingLeft(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2169 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2175 return winmdroot.Foundation.HRESULT.S_OK; 2179 return (winmdroot.Foundation.HRESULT)ex.HResult; 2186 private static winmdroot.Foundation.HRESULT put_padding(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2190 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2196 return winmdroot.Foundation.HRESULT.S_OK; 2200 return (winmdroot.Foundation.HRESULT)ex.HResult; 2208 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2213 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2221 private static winmdroot.Foundation.HRESULT get_padding(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2225 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2231 return winmdroot.Foundation.HRESULT.S_OK; 2235 return (winmdroot.Foundation.HRESULT)ex.HResult; 2242 private static winmdroot.Foundation.HRESULT put_border(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2246 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2252 return winmdroot.Foundation.HRESULT.S_OK; 2256 return (winmdroot.Foundation.HRESULT)ex.HResult; 2264 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2269 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2277 private static winmdroot.Foundation.HRESULT get_border(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2281 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2287 return winmdroot.Foundation.HRESULT.S_OK; 2291 return (winmdroot.Foundation.HRESULT)ex.HResult; 2298 private static winmdroot.Foundation.HRESULT put_borderTop(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2302 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2308 return winmdroot.Foundation.HRESULT.S_OK; 2312 return (winmdroot.Foundation.HRESULT)ex.HResult; 2320 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[85])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2325 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[86])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2333 private static winmdroot.Foundation.HRESULT get_borderTop(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2337 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2343 return winmdroot.Foundation.HRESULT.S_OK; 2347 return (winmdroot.Foundation.HRESULT)ex.HResult; 2354 private static winmdroot.Foundation.HRESULT put_borderRight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2358 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2364 return winmdroot.Foundation.HRESULT.S_OK; 2368 return (winmdroot.Foundation.HRESULT)ex.HResult; 2376 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[87])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2381 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[88])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2389 private static winmdroot.Foundation.HRESULT get_borderRight(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2393 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2399 return winmdroot.Foundation.HRESULT.S_OK; 2403 return (winmdroot.Foundation.HRESULT)ex.HResult; 2410 private static winmdroot.Foundation.HRESULT put_borderBottom(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2414 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2420 return winmdroot.Foundation.HRESULT.S_OK; 2424 return (winmdroot.Foundation.HRESULT)ex.HResult; 2432 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[89])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2437 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[90])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2445 private static winmdroot.Foundation.HRESULT get_borderBottom(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2449 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2455 return winmdroot.Foundation.HRESULT.S_OK; 2459 return (winmdroot.Foundation.HRESULT)ex.HResult; 2466 private static winmdroot.Foundation.HRESULT put_borderLeft(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2470 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2476 return winmdroot.Foundation.HRESULT.S_OK; 2480 return (winmdroot.Foundation.HRESULT)ex.HResult; 2488 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[91])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2493 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[92])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2501 private static winmdroot.Foundation.HRESULT get_borderLeft(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2505 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2511 return winmdroot.Foundation.HRESULT.S_OK; 2515 return (winmdroot.Foundation.HRESULT)ex.HResult; 2522 private static winmdroot.Foundation.HRESULT put_borderColor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2526 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2532 return winmdroot.Foundation.HRESULT.S_OK; 2536 return (winmdroot.Foundation.HRESULT)ex.HResult; 2544 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[93])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2549 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[94])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2557 private static winmdroot.Foundation.HRESULT get_borderColor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2561 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2567 return winmdroot.Foundation.HRESULT.S_OK; 2571 return (winmdroot.Foundation.HRESULT)ex.HResult; 2578 private static winmdroot.Foundation.HRESULT put_borderTopColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2582 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2588 return winmdroot.Foundation.HRESULT.S_OK; 2592 return (winmdroot.Foundation.HRESULT)ex.HResult; 2600 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[95])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2605 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[96])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2613 private static winmdroot.Foundation.HRESULT get_borderTopColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2617 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2623 return winmdroot.Foundation.HRESULT.S_OK; 2627 return (winmdroot.Foundation.HRESULT)ex.HResult; 2634 private static winmdroot.Foundation.HRESULT put_borderRightColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2638 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2644 return winmdroot.Foundation.HRESULT.S_OK; 2648 return (winmdroot.Foundation.HRESULT)ex.HResult; 2656 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[97])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2661 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[98])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2669 private static winmdroot.Foundation.HRESULT get_borderRightColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2673 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2679 return winmdroot.Foundation.HRESULT.S_OK; 2683 return (winmdroot.Foundation.HRESULT)ex.HResult; 2690 private static winmdroot.Foundation.HRESULT put_borderBottomColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2694 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2700 return winmdroot.Foundation.HRESULT.S_OK; 2704 return (winmdroot.Foundation.HRESULT)ex.HResult; 2712 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[99])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2717 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[100])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2725 private static winmdroot.Foundation.HRESULT get_borderBottomColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2729 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2735 return winmdroot.Foundation.HRESULT.S_OK; 2739 return (winmdroot.Foundation.HRESULT)ex.HResult; 2746 private static winmdroot.Foundation.HRESULT put_borderLeftColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2750 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2756 return winmdroot.Foundation.HRESULT.S_OK; 2760 return (winmdroot.Foundation.HRESULT)ex.HResult; 2768 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[101])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2773 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[102])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2781 private static winmdroot.Foundation.HRESULT get_borderLeftColor(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2785 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2791 return winmdroot.Foundation.HRESULT.S_OK; 2795 return (winmdroot.Foundation.HRESULT)ex.HResult; 2802 private static winmdroot.Foundation.HRESULT put_borderWidth(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 2806 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2812 return winmdroot.Foundation.HRESULT.S_OK; 2816 return (winmdroot.Foundation.HRESULT)ex.HResult; 2824 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[103])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2829 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[104])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2837 private static winmdroot.Foundation.HRESULT get_borderWidth(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 2841 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2847 return winmdroot.Foundation.HRESULT.S_OK; 2851 return (winmdroot.Foundation.HRESULT)ex.HResult; 2858 private static winmdroot.Foundation.HRESULT put_borderTopWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2862 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2868 return winmdroot.Foundation.HRESULT.S_OK; 2872 return (winmdroot.Foundation.HRESULT)ex.HResult; 2880 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[105])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2885 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[106])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2893 private static winmdroot.Foundation.HRESULT get_borderTopWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2897 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2903 return winmdroot.Foundation.HRESULT.S_OK; 2907 return (winmdroot.Foundation.HRESULT)ex.HResult; 2914 private static winmdroot.Foundation.HRESULT put_borderRightWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2918 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2924 return winmdroot.Foundation.HRESULT.S_OK; 2928 return (winmdroot.Foundation.HRESULT)ex.HResult; 2936 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[107])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2941 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[108])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2949 private static winmdroot.Foundation.HRESULT get_borderRightWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 2953 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2959 return winmdroot.Foundation.HRESULT.S_OK; 2963 return (winmdroot.Foundation.HRESULT)ex.HResult; 2970 private static winmdroot.Foundation.HRESULT put_borderBottomWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 2974 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2980 return winmdroot.Foundation.HRESULT.S_OK; 2984 return (winmdroot.Foundation.HRESULT)ex.HResult; 2992 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[109])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 2997 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[110])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3005 private static winmdroot.Foundation.HRESULT get_borderBottomWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3009 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3015 return winmdroot.Foundation.HRESULT.S_OK; 3019 return (winmdroot.Foundation.HRESULT)ex.HResult; 3026 private static winmdroot.Foundation.HRESULT put_borderLeftWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 3030 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3036 return winmdroot.Foundation.HRESULT.S_OK; 3040 return (winmdroot.Foundation.HRESULT)ex.HResult; 3048 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[111])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3053 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[112])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3061 private static winmdroot.Foundation.HRESULT get_borderLeftWidth(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3065 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3071 return winmdroot.Foundation.HRESULT.S_OK; 3075 return (winmdroot.Foundation.HRESULT)ex.HResult; 3082 private static winmdroot.Foundation.HRESULT put_borderStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3086 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3092 return winmdroot.Foundation.HRESULT.S_OK; 3096 return (winmdroot.Foundation.HRESULT)ex.HResult; 3104 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[113])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3109 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[114])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3117 private static winmdroot.Foundation.HRESULT get_borderStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3121 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3127 return winmdroot.Foundation.HRESULT.S_OK; 3131 return (winmdroot.Foundation.HRESULT)ex.HResult; 3138 private static winmdroot.Foundation.HRESULT put_borderTopStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3142 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3148 return winmdroot.Foundation.HRESULT.S_OK; 3152 return (winmdroot.Foundation.HRESULT)ex.HResult; 3160 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[115])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3165 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[116])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3173 private static winmdroot.Foundation.HRESULT get_borderTopStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3177 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3183 return winmdroot.Foundation.HRESULT.S_OK; 3187 return (winmdroot.Foundation.HRESULT)ex.HResult; 3194 private static winmdroot.Foundation.HRESULT put_borderRightStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3198 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3204 return winmdroot.Foundation.HRESULT.S_OK; 3208 return (winmdroot.Foundation.HRESULT)ex.HResult; 3216 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[117])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3221 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[118])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3229 private static winmdroot.Foundation.HRESULT get_borderRightStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3233 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3239 return winmdroot.Foundation.HRESULT.S_OK; 3243 return (winmdroot.Foundation.HRESULT)ex.HResult; 3250 private static winmdroot.Foundation.HRESULT put_borderBottomStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3254 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3260 return winmdroot.Foundation.HRESULT.S_OK; 3264 return (winmdroot.Foundation.HRESULT)ex.HResult; 3272 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[119])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3277 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[120])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3285 private static winmdroot.Foundation.HRESULT get_borderBottomStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3289 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3295 return winmdroot.Foundation.HRESULT.S_OK; 3299 return (winmdroot.Foundation.HRESULT)ex.HResult; 3306 private static winmdroot.Foundation.HRESULT put_borderLeftStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3310 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3316 return winmdroot.Foundation.HRESULT.S_OK; 3320 return (winmdroot.Foundation.HRESULT)ex.HResult; 3328 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[121])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3333 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[122])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3341 private static winmdroot.Foundation.HRESULT get_borderLeftStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3345 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3351 return winmdroot.Foundation.HRESULT.S_OK; 3355 return (winmdroot.Foundation.HRESULT)ex.HResult; 3362 private static winmdroot.Foundation.HRESULT put_width(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 3366 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3372 return winmdroot.Foundation.HRESULT.S_OK; 3376 return (winmdroot.Foundation.HRESULT)ex.HResult; 3384 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[123])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3389 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[124])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3397 private static winmdroot.Foundation.HRESULT get_width(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3401 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3407 return winmdroot.Foundation.HRESULT.S_OK; 3411 return (winmdroot.Foundation.HRESULT)ex.HResult; 3418 private static winmdroot.Foundation.HRESULT put_height(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 3422 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3428 return winmdroot.Foundation.HRESULT.S_OK; 3432 return (winmdroot.Foundation.HRESULT)ex.HResult; 3440 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[125])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3445 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[126])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3453 private static winmdroot.Foundation.HRESULT get_height(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 3457 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3463 return winmdroot.Foundation.HRESULT.S_OK; 3467 return (winmdroot.Foundation.HRESULT)ex.HResult; 3474 private static winmdroot.Foundation.HRESULT put_styleFloat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3478 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3484 return winmdroot.Foundation.HRESULT.S_OK; 3488 return (winmdroot.Foundation.HRESULT)ex.HResult; 3496 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[127])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3501 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[128])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3509 private static winmdroot.Foundation.HRESULT get_styleFloat(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3513 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3519 return winmdroot.Foundation.HRESULT.S_OK; 3523 return (winmdroot.Foundation.HRESULT)ex.HResult; 3530 private static winmdroot.Foundation.HRESULT put_clear(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3534 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3540 return winmdroot.Foundation.HRESULT.S_OK; 3544 return (winmdroot.Foundation.HRESULT)ex.HResult; 3552 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[129])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3557 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[130])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3565 private static winmdroot.Foundation.HRESULT get_clear(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3569 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3575 return winmdroot.Foundation.HRESULT.S_OK; 3579 return (winmdroot.Foundation.HRESULT)ex.HResult; 3586 private static winmdroot.Foundation.HRESULT put_display(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3590 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3596 return winmdroot.Foundation.HRESULT.S_OK; 3600 return (winmdroot.Foundation.HRESULT)ex.HResult; 3608 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[131])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3613 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[132])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3621 private static winmdroot.Foundation.HRESULT get_display(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3625 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3631 return winmdroot.Foundation.HRESULT.S_OK; 3635 return (winmdroot.Foundation.HRESULT)ex.HResult; 3642 private static winmdroot.Foundation.HRESULT put_visibility(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3646 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3652 return winmdroot.Foundation.HRESULT.S_OK; 3656 return (winmdroot.Foundation.HRESULT)ex.HResult; 3664 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[133])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3669 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[134])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3677 private static winmdroot.Foundation.HRESULT get_visibility(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3681 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3687 return winmdroot.Foundation.HRESULT.S_OK; 3691 return (winmdroot.Foundation.HRESULT)ex.HResult; 3698 private static winmdroot.Foundation.HRESULT put_listStyleType(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3702 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3708 return winmdroot.Foundation.HRESULT.S_OK; 3712 return (winmdroot.Foundation.HRESULT)ex.HResult; 3720 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[135])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3725 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[136])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3733 private static winmdroot.Foundation.HRESULT get_listStyleType(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3737 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3743 return winmdroot.Foundation.HRESULT.S_OK; 3747 return (winmdroot.Foundation.HRESULT)ex.HResult; 3754 private static winmdroot.Foundation.HRESULT put_listStylePosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3758 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3764 return winmdroot.Foundation.HRESULT.S_OK; 3768 return (winmdroot.Foundation.HRESULT)ex.HResult; 3776 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[137])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3781 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[138])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3789 private static winmdroot.Foundation.HRESULT get_listStylePosition(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3793 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3799 return winmdroot.Foundation.HRESULT.S_OK; 3803 return (winmdroot.Foundation.HRESULT)ex.HResult; 3810 private static winmdroot.Foundation.HRESULT put_listStyleImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3814 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3820 return winmdroot.Foundation.HRESULT.S_OK; 3824 return (winmdroot.Foundation.HRESULT)ex.HResult; 3832 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[139])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3837 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[140])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3845 private static winmdroot.Foundation.HRESULT get_listStyleImage(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3849 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3855 return winmdroot.Foundation.HRESULT.S_OK; 3859 return (winmdroot.Foundation.HRESULT)ex.HResult; 3866 private static winmdroot.Foundation.HRESULT put_listStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3870 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3876 return winmdroot.Foundation.HRESULT.S_OK; 3880 return (winmdroot.Foundation.HRESULT)ex.HResult; 3888 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[141])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3893 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[142])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3901 private static winmdroot.Foundation.HRESULT get_listStyle(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3905 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3911 return winmdroot.Foundation.HRESULT.S_OK; 3915 return (winmdroot.Foundation.HRESULT)ex.HResult; 3922 private static winmdroot.Foundation.HRESULT put_whiteSpace(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 3926 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3932 return winmdroot.Foundation.HRESULT.S_OK; 3936 return (winmdroot.Foundation.HRESULT)ex.HResult; 3944 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[143])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 3949 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[144])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 3957 private static winmdroot.Foundation.HRESULT get_whiteSpace(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 3961 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3967 return winmdroot.Foundation.HRESULT.S_OK; 3971 return (winmdroot.Foundation.HRESULT)ex.HResult; 3978 private static winmdroot.Foundation.HRESULT put_top(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 3982 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 3988 return winmdroot.Foundation.HRESULT.S_OK; 3992 return (winmdroot.Foundation.HRESULT)ex.HResult; 4000 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[145])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4005 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[146])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4013 private static winmdroot.Foundation.HRESULT get_top(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4017 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4023 return winmdroot.Foundation.HRESULT.S_OK; 4027 return (winmdroot.Foundation.HRESULT)ex.HResult; 4034 private static winmdroot.Foundation.HRESULT put_left(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 4038 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4044 return winmdroot.Foundation.HRESULT.S_OK; 4048 return (winmdroot.Foundation.HRESULT)ex.HResult; 4056 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[147])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4061 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[148])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4069 private static winmdroot.Foundation.HRESULT get_left(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4073 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4079 return winmdroot.Foundation.HRESULT.S_OK; 4083 return (winmdroot.Foundation.HRESULT)ex.HResult; 4090 private static winmdroot.Foundation.HRESULT get_position(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4094 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4100 return winmdroot.Foundation.HRESULT.S_OK; 4104 return (winmdroot.Foundation.HRESULT)ex.HResult; 4113 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[149])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4121 private static winmdroot.Foundation.HRESULT put_zIndex(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT v) 4125 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4131 return winmdroot.Foundation.HRESULT.S_OK; 4135 return (winmdroot.Foundation.HRESULT)ex.HResult; 4143 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[150])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4148 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[151])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4156 private static winmdroot.Foundation.HRESULT get_zIndex(IHTMLStyle* pThis, winmdroot.System.Variant.VARIANT* p) 4160 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4166 return winmdroot.Foundation.HRESULT.S_OK; 4170 return (winmdroot.Foundation.HRESULT)ex.HResult; 4177 private static winmdroot.Foundation.HRESULT put_overflow(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4181 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4187 return winmdroot.Foundation.HRESULT.S_OK; 4191 return (winmdroot.Foundation.HRESULT)ex.HResult; 4199 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[152])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4204 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[153])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4212 private static winmdroot.Foundation.HRESULT get_overflow(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4216 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4222 return winmdroot.Foundation.HRESULT.S_OK; 4226 return (winmdroot.Foundation.HRESULT)ex.HResult; 4233 private static winmdroot.Foundation.HRESULT put_pageBreakBefore(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4237 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4243 return winmdroot.Foundation.HRESULT.S_OK; 4247 return (winmdroot.Foundation.HRESULT)ex.HResult; 4255 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[154])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4260 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[155])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4268 private static winmdroot.Foundation.HRESULT get_pageBreakBefore(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4272 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4278 return winmdroot.Foundation.HRESULT.S_OK; 4282 return (winmdroot.Foundation.HRESULT)ex.HResult; 4289 private static winmdroot.Foundation.HRESULT put_pageBreakAfter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4293 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4299 return winmdroot.Foundation.HRESULT.S_OK; 4303 return (winmdroot.Foundation.HRESULT)ex.HResult; 4311 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[156])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4316 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[157])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4324 private static winmdroot.Foundation.HRESULT get_pageBreakAfter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4328 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4334 return winmdroot.Foundation.HRESULT.S_OK; 4338 return (winmdroot.Foundation.HRESULT)ex.HResult; 4345 private static winmdroot.Foundation.HRESULT put_cssText(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4349 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4358 return (winmdroot.Foundation.HRESULT)ex.HResult; 4362 public winmdroot.Foundation.HRESULT put_cssText(winmdroot.Foundation.BSTR v) 4364 return ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[158])((IHTMLStyle*)Unsafe.AsPointer(ref this), v); 4370 private static winmdroot.Foundation.HRESULT get_cssText(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4374 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4383 return (winmdroot.Foundation.HRESULT)ex.HResult; 4387 public unsafe winmdroot.Foundation.HRESULT get_cssText(winmdroot.Foundation.BSTR* p) 4389 return ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[159])((IHTMLStyle*)Unsafe.AsPointer(ref this), p); 4395 private static winmdroot.Foundation.HRESULT put_pixelTop(IHTMLStyle* pThis, int v) 4399 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4405 return winmdroot.Foundation.HRESULT.S_OK; 4409 return (winmdroot.Foundation.HRESULT)ex.HResult; 4417 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[160])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4422 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[161])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4430 private static winmdroot.Foundation.HRESULT get_pixelTop(IHTMLStyle* pThis, int* p) 4434 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4440 return winmdroot.Foundation.HRESULT.S_OK; 4444 return (winmdroot.Foundation.HRESULT)ex.HResult; 4451 private static winmdroot.Foundation.HRESULT put_pixelLeft(IHTMLStyle* pThis, int v) 4455 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4461 return winmdroot.Foundation.HRESULT.S_OK; 4465 return (winmdroot.Foundation.HRESULT)ex.HResult; 4473 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[162])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4478 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[163])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4486 private static winmdroot.Foundation.HRESULT get_pixelLeft(IHTMLStyle* pThis, int* p) 4490 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4496 return winmdroot.Foundation.HRESULT.S_OK; 4500 return (winmdroot.Foundation.HRESULT)ex.HResult; 4507 private static winmdroot.Foundation.HRESULT put_pixelWidth(IHTMLStyle* pThis, int v) 4511 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4517 return winmdroot.Foundation.HRESULT.S_OK; 4521 return (winmdroot.Foundation.HRESULT)ex.HResult; 4529 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[164])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4534 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[165])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4542 private static winmdroot.Foundation.HRESULT get_pixelWidth(IHTMLStyle* pThis, int* p) 4546 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4552 return winmdroot.Foundation.HRESULT.S_OK; 4556 return (winmdroot.Foundation.HRESULT)ex.HResult; 4563 private static winmdroot.Foundation.HRESULT put_pixelHeight(IHTMLStyle* pThis, int v) 4567 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4573 return winmdroot.Foundation.HRESULT.S_OK; 4577 return (winmdroot.Foundation.HRESULT)ex.HResult; 4585 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[166])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4590 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[167])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4598 private static winmdroot.Foundation.HRESULT get_pixelHeight(IHTMLStyle* pThis, int* p) 4602 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4608 return winmdroot.Foundation.HRESULT.S_OK; 4612 return (winmdroot.Foundation.HRESULT)ex.HResult; 4619 private static winmdroot.Foundation.HRESULT put_posTop(IHTMLStyle* pThis, float v) 4623 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4629 return winmdroot.Foundation.HRESULT.S_OK; 4633 return (winmdroot.Foundation.HRESULT)ex.HResult; 4641 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[168])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4646 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[169])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4654 private static winmdroot.Foundation.HRESULT get_posTop(IHTMLStyle* pThis, float* p) 4658 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4664 return winmdroot.Foundation.HRESULT.S_OK; 4668 return (winmdroot.Foundation.HRESULT)ex.HResult; 4675 private static winmdroot.Foundation.HRESULT put_posLeft(IHTMLStyle* pThis, float v) 4679 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4685 return winmdroot.Foundation.HRESULT.S_OK; 4689 return (winmdroot.Foundation.HRESULT)ex.HResult; 4697 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[170])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4702 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[171])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4710 private static winmdroot.Foundation.HRESULT get_posLeft(IHTMLStyle* pThis, float* p) 4714 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4720 return winmdroot.Foundation.HRESULT.S_OK; 4724 return (winmdroot.Foundation.HRESULT)ex.HResult; 4731 private static winmdroot.Foundation.HRESULT put_posWidth(IHTMLStyle* pThis, float v) 4735 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4741 return winmdroot.Foundation.HRESULT.S_OK; 4745 return (winmdroot.Foundation.HRESULT)ex.HResult; 4753 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[172])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4758 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[173])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4766 private static winmdroot.Foundation.HRESULT get_posWidth(IHTMLStyle* pThis, float* p) 4770 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4776 return winmdroot.Foundation.HRESULT.S_OK; 4780 return (winmdroot.Foundation.HRESULT)ex.HResult; 4787 private static winmdroot.Foundation.HRESULT put_posHeight(IHTMLStyle* pThis, float v) 4791 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4797 return winmdroot.Foundation.HRESULT.S_OK; 4801 return (winmdroot.Foundation.HRESULT)ex.HResult; 4809 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[174])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4814 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[175])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4822 private static winmdroot.Foundation.HRESULT get_posHeight(IHTMLStyle* pThis, float* p) 4826 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4832 return winmdroot.Foundation.HRESULT.S_OK; 4836 return (winmdroot.Foundation.HRESULT)ex.HResult; 4843 private static winmdroot.Foundation.HRESULT put_cursor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4847 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4853 return winmdroot.Foundation.HRESULT.S_OK; 4857 return (winmdroot.Foundation.HRESULT)ex.HResult; 4865 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[176])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4870 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[177])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4878 private static winmdroot.Foundation.HRESULT get_cursor(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4882 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4888 return winmdroot.Foundation.HRESULT.S_OK; 4892 return (winmdroot.Foundation.HRESULT)ex.HResult; 4899 private static winmdroot.Foundation.HRESULT put_clip(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4903 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4909 return winmdroot.Foundation.HRESULT.S_OK; 4913 return (winmdroot.Foundation.HRESULT)ex.HResult; 4921 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[178])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4926 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[179])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4934 private static winmdroot.Foundation.HRESULT get_clip(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4938 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4944 return winmdroot.Foundation.HRESULT.S_OK; 4948 return (winmdroot.Foundation.HRESULT)ex.HResult; 4955 private static winmdroot.Foundation.HRESULT put_filter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR v) 4959 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 4965 return winmdroot.Foundation.HRESULT.S_OK; 4969 return (winmdroot.Foundation.HRESULT)ex.HResult; 4977 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[180])((IHTMLStyle*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 4982 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[181])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 4990 private static winmdroot.Foundation.HRESULT get_filter(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* p) 4994 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 5000 return winmdroot.Foundation.HRESULT.S_OK; 5004 return (winmdroot.Foundation.HRESULT)ex.HResult; 5011 private static winmdroot.Foundation.HRESULT setAttribute(IHTMLStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags) 5015 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 5024 return (winmdroot.Foundation.HRESULT)ex.HResult; 5030 ((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(); 5036 private static winmdroot.Foundation.HRESULT getAttribute(IHTMLStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue) 5040 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 5049 return (winmdroot.Foundation.HRESULT)ex.HResult; 5056 ((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(); 5063 private static winmdroot.Foundation.HRESULT removeAttribute(IHTMLStyle* pThis, winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess) 5067 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 5076 return (winmdroot.Foundation.HRESULT)ex.HResult; 5083 ((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(); 5090 private static winmdroot.Foundation.HRESULT toString(IHTMLStyle* pThis, winmdroot.Foundation.BSTR* String) 5094 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 5103 return (winmdroot.Foundation.HRESULT)ex.HResult; 5110 ((delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[185])((IHTMLStyle*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 5114 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 5118 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 5135 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 5141 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 5143 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 5145 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 5147 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 5149 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontFamily_8; 5151 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontFamily_9; 5153 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontStyle_10; 5155 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontStyle_11; 5157 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontVariant_12; 5159 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontVariant_13; 5161 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_fontWeight_14; 5163 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_fontWeight_15; 5165 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_fontSize_16; 5167 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_fontSize_17; 5169 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_font_18; 5171 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_font_19; 5173 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_color_20; 5175 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_color_21; 5177 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_background_22; 5179 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_background_23; 5181 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundColor_24; 5183 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundColor_25; 5185 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundImage_26; 5187 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundImage_27; 5189 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundRepeat_28; 5191 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundRepeat_29; 5193 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundAttachment_30; 5195 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundAttachment_31; 5197 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_backgroundPosition_32; 5199 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_backgroundPosition_33; 5201 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundPositionX_34; 5203 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionX_35; 5205 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_backgroundPositionY_36; 5207 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_backgroundPositionY_37; 5209 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_wordSpacing_38; 5211 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_wordSpacing_39; 5213 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_letterSpacing_40; 5215 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_letterSpacing_41; 5217 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textDecoration_42; 5219 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textDecoration_43; 5221 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationNone_44; 5223 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationNone_45; 5225 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationUnderline_46; 5227 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationUnderline_47; 5229 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationOverline_48; 5231 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationOverline_49; 5233 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationLineThrough_50; 5235 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationLineThrough_51; 5237 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_textDecorationBlink_52; 5239 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_textDecorationBlink_53; 5241 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_verticalAlign_54; 5243 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_verticalAlign_55; 5245 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textTransform_56; 5247 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textTransform_57; 5249 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_textAlign_58; 5251 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_textAlign_59; 5253 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_textIndent_60; 5255 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_textIndent_61; 5257 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_lineHeight_62; 5259 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_lineHeight_63; 5261 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginTop_64; 5263 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginTop_65; 5265 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginRight_66; 5267 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginRight_67; 5269 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginBottom_68; 5271 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginBottom_69; 5273 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_marginLeft_70; 5275 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_marginLeft_71; 5277 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_margin_72; 5279 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_margin_73; 5281 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingTop_74; 5283 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingTop_75; 5285 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingRight_76; 5287 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingRight_77; 5289 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingBottom_78; 5291 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingBottom_79; 5293 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_paddingLeft_80; 5295 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_paddingLeft_81; 5297 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_padding_82; 5299 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_padding_83; 5301 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_border_84; 5303 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_border_85; 5305 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTop_86; 5307 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTop_87; 5309 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRight_88; 5311 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRight_89; 5313 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottom_90; 5315 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottom_91; 5317 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeft_92; 5319 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeft_93; 5321 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderColor_94; 5323 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderColor_95; 5325 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderTopColor_96; 5327 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopColor_97; 5329 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderRightColor_98; 5331 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightColor_99; 5333 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderBottomColor_100; 5335 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomColor_101; 5337 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderLeftColor_102; 5339 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftColor_103; 5341 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderWidth_104; 5343 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderWidth_105; 5345 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderTopWidth_106; 5347 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderTopWidth_107; 5349 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderRightWidth_108; 5351 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderRightWidth_109; 5353 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderBottomWidth_110; 5355 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderBottomWidth_111; 5357 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_borderLeftWidth_112; 5359 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_borderLeftWidth_113; 5361 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderStyle_114; 5363 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderStyle_115; 5365 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderTopStyle_116; 5367 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderTopStyle_117; 5369 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderRightStyle_118; 5371 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderRightStyle_119; 5373 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderBottomStyle_120; 5375 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderBottomStyle_121; 5377 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_borderLeftStyle_122; 5379 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_borderLeftStyle_123; 5381 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_width_124; 5383 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_width_125; 5385 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_height_126; 5387 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_height_127; 5389 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_styleFloat_128; 5391 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_styleFloat_129; 5393 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clear_130; 5395 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clear_131; 5397 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_display_132; 5399 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_display_133; 5401 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_visibility_134; 5403 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_visibility_135; 5405 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleType_136; 5407 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleType_137; 5409 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStylePosition_138; 5411 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStylePosition_139; 5413 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyleImage_140; 5415 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyleImage_141; 5417 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_listStyle_142; 5419 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_listStyle_143; 5421 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_whiteSpace_144; 5423 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_whiteSpace_145; 5425 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_top_146; 5427 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_top_147; 5429 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_left_148; 5431 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_left_149; 5433 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_position_150; 5435 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_zIndex_151; 5437 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_zIndex_152; 5439 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_overflow_153; 5441 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_overflow_154; 5443 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakBefore_155; 5445 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakBefore_156; 5447 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_pageBreakAfter_157; 5449 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_pageBreakAfter_158; 5451 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cssText_159; 5453 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cssText_160; 5455 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT> put_pixelTop_161; 5457 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT> get_pixelTop_162; 5459 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT> put_pixelLeft_163; 5461 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT> get_pixelLeft_164; 5463 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT> put_pixelWidth_165; 5465 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT> get_pixelWidth_166; 5467 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int ,winmdroot.Foundation.HRESULT> put_pixelHeight_167; 5469 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,int* ,winmdroot.Foundation.HRESULT> get_pixelHeight_168; 5471 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT> put_posTop_169; 5473 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT> get_posTop_170; 5475 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT> put_posLeft_171; 5477 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT> get_posLeft_172; 5479 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT> put_posWidth_173; 5481 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT> get_posWidth_174; 5483 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float ,winmdroot.Foundation.HRESULT> put_posHeight_175; 5485 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,float* ,winmdroot.Foundation.HRESULT> get_posHeight_176; 5487 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cursor_177; 5489 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cursor_178; 5491 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_clip_179; 5493 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_clip_180; 5495 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_filter_181; 5497 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_filter_182; 5499 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,int ,winmdroot.Foundation.HRESULT> setAttribute_183; 5501 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> getAttribute_184; 5503 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR ,int ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> removeAttribute_185; 5505 internal delegate *unmanaged [Stdcall]<IHTMLStyle*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_186; 6164winmdroot.Foundation.HRESULT put_cssText(winmdroot.Foundation.BSTR v); 6167 unsafe winmdroot.Foundation.HRESULT get_cssText(winmdroot.Foundation.BSTR* p); 6236winmdroot.Foundation.HRESULT setAttribute(winmdroot.Foundation.BSTR strAttributeName, winmdroot.System.Variant.VARIANT AttributeValue, int lFlags); 6239 unsafe winmdroot.Foundation.HRESULT getAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.System.Variant.VARIANT* AttributeValue); 6242 unsafe winmdroot.Foundation.HRESULT removeAttribute(winmdroot.Foundation.BSTR strAttributeName, int lFlags, winmdroot.Foundation.VARIANT_BOOL* pfSuccess); 6245 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String);
Windows.Win32.IHTMLStyleSheet.g.cs (141)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT put_title(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 141 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT get_title(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return winmdroot.Foundation.HRESULT.S_OK; 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 private static winmdroot.Foundation.HRESULT get_parentStyleSheet(IHTMLStyleSheet* pThis, winmdroot.Web.MsHtml.IHTMLStyleSheet** p) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheet** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 201 private static winmdroot.Foundation.HRESULT get_owningElement(IHTMLStyleSheet* pThis, winmdroot.Web.MsHtml.IHTMLElement** p) 205 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return winmdroot.Foundation.HRESULT.S_OK; 215 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 232 private static winmdroot.Foundation.HRESULT put_disabled(IHTMLStyleSheet* pThis, winmdroot.Foundation.VARIANT_BOOL v) 236 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 242 return winmdroot.Foundation.HRESULT.S_OK; 246 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 259 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 267 private static winmdroot.Foundation.HRESULT get_disabled(IHTMLStyleSheet* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 271 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 277 return winmdroot.Foundation.HRESULT.S_OK; 281 return (winmdroot.Foundation.HRESULT)ex.HResult; 288 private static winmdroot.Foundation.HRESULT get_readOnly(IHTMLStyleSheet* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 292 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 298 return winmdroot.Foundation.HRESULT.S_OK; 302 return (winmdroot.Foundation.HRESULT)ex.HResult; 311 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 319 private static winmdroot.Foundation.HRESULT get_imports(IHTMLStyleSheet* pThis, winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** p) 323 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 329 return winmdroot.Foundation.HRESULT.S_OK; 333 return (winmdroot.Foundation.HRESULT)ex.HResult; 342 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 350 private static winmdroot.Foundation.HRESULT put_href(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 354 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 360 return winmdroot.Foundation.HRESULT.S_OK; 364 return (winmdroot.Foundation.HRESULT)ex.HResult; 372 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 377 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 385 private static winmdroot.Foundation.HRESULT get_href(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 389 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 395 return winmdroot.Foundation.HRESULT.S_OK; 399 return (winmdroot.Foundation.HRESULT)ex.HResult; 406 private static winmdroot.Foundation.HRESULT get_type(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 410 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 416 return winmdroot.Foundation.HRESULT.S_OK; 420 return (winmdroot.Foundation.HRESULT)ex.HResult; 429 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 437 private static winmdroot.Foundation.HRESULT get_id(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 441 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 447 return winmdroot.Foundation.HRESULT.S_OK; 451 return (winmdroot.Foundation.HRESULT)ex.HResult; 460 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 468 private static winmdroot.Foundation.HRESULT addImport(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR bstrURL, int lIndex, int* plIndex) 472 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 481 return (winmdroot.Foundation.HRESULT)ex.HResult; 488 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), bstrURL, lIndex, &__retVal).ThrowOnFailure(); 495 private static winmdroot.Foundation.HRESULT addRule(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR bstrSelector, winmdroot.Foundation.BSTR bstrStyle, int lIndex, int* plNewIndex) 499 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 508 return (winmdroot.Foundation.HRESULT)ex.HResult; 515 ((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(); 522 private static winmdroot.Foundation.HRESULT removeImport(IHTMLStyleSheet* pThis, int lIndex) 526 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 535 return (winmdroot.Foundation.HRESULT)ex.HResult; 541 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), lIndex).ThrowOnFailure(); 547 private static winmdroot.Foundation.HRESULT removeRule(IHTMLStyleSheet* pThis, int lIndex) 551 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 560 return (winmdroot.Foundation.HRESULT)ex.HResult; 566 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), lIndex).ThrowOnFailure(); 572 private static winmdroot.Foundation.HRESULT put_media(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 576 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 582 return winmdroot.Foundation.HRESULT.S_OK; 586 return (winmdroot.Foundation.HRESULT)ex.HResult; 594 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 599 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 607 private static winmdroot.Foundation.HRESULT get_media(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 611 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 617 return winmdroot.Foundation.HRESULT.S_OK; 621 return (winmdroot.Foundation.HRESULT)ex.HResult; 628 private static winmdroot.Foundation.HRESULT put_cssText(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR v) 632 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 638 return winmdroot.Foundation.HRESULT.S_OK; 642 return (winmdroot.Foundation.HRESULT)ex.HResult; 650 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 655 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 663 private static winmdroot.Foundation.HRESULT get_cssText(IHTMLStyleSheet* pThis, winmdroot.Foundation.BSTR* p) 667 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 673 return winmdroot.Foundation.HRESULT.S_OK; 677 return (winmdroot.Foundation.HRESULT)ex.HResult; 684 private static winmdroot.Foundation.HRESULT get_rules(IHTMLStyleSheet* pThis, winmdroot.Web.MsHtml.IHTMLStyleSheetRulesCollection** p) 688 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 694 return winmdroot.Foundation.HRESULT.S_OK; 698 return (winmdroot.Foundation.HRESULT)ex.HResult; 707 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheetRulesCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLStyleSheet*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 712 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 716 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 733 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 739 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 741 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 743 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 745 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 747 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_title_8; 749 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_title_9; 751 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheet** ,winmdroot.Foundation.HRESULT> get_parentStyleSheet_10; 753 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLElement** ,winmdroot.Foundation.HRESULT> get_owningElement_11; 755 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_disabled_12; 757 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_disabled_13; 759 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_readOnly_14; 761 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection** ,winmdroot.Foundation.HRESULT> get_imports_15; 763 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_href_16; 765 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_href_17; 767 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_type_18; 769 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_id_19; 771 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,int ,int* ,winmdroot.Foundation.HRESULT> addImport_20; 773 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,int ,int* ,winmdroot.Foundation.HRESULT> addRule_21; 775 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,int ,winmdroot.Foundation.HRESULT> removeImport_22; 777 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,int ,winmdroot.Foundation.HRESULT> removeRule_23; 779 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_media_24; 781 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_media_25; 783 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_cssText_26; 785 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cssText_27; 787 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheet*,winmdroot.Web.MsHtml.IHTMLStyleSheetRulesCollection** ,winmdroot.Foundation.HRESULT> get_rules_28; 881 unsafe winmdroot.Foundation.HRESULT addImport(winmdroot.Foundation.BSTR bstrURL, int lIndex, int* plIndex); 884 unsafe winmdroot.Foundation.HRESULT addRule(winmdroot.Foundation.BSTR bstrSelector, winmdroot.Foundation.BSTR bstrStyle, int lIndex, int* plNewIndex); 887winmdroot.Foundation.HRESULT removeImport(int lIndex); 890winmdroot.Foundation.HRESULT removeRule(int lIndex);
Windows.Win32.IHTMLStyleSheetRule.g.cs (39)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT put_selectorText(IHTMLStyleSheetRule* pThis, winmdroot.Foundation.BSTR v) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 141 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT get_selectorText(IHTMLStyleSheetRule* pThis, winmdroot.Foundation.BSTR* p) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 159 return winmdroot.Foundation.HRESULT.S_OK; 163 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 private static winmdroot.Foundation.HRESULT get_style(IHTMLStyleSheetRule* pThis, winmdroot.Web.MsHtml.IHTMLRuleStyle** p) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return winmdroot.Foundation.HRESULT.S_OK; 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Web.MsHtml.IHTMLRuleStyle** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 201 private static winmdroot.Foundation.HRESULT get_readOnly(IHTMLStyleSheetRule* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 205 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return winmdroot.Foundation.HRESULT.S_OK; 215 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLStyleSheetRule*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 229 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 233 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 250 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 256 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 258 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 260 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 262 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 264 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_selectorText_8; 266 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_selectorText_9; 268 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Web.MsHtml.IHTMLRuleStyle** ,winmdroot.Foundation.HRESULT> get_style_10; 270 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRule*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_readOnly_11;
Windows.Win32.IHTMLStyleSheetRulesCollection.g.cs (27)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_length(IHTMLStyleSheetRulesCollection* pThis, int* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT item(IHTMLStyleSheetRulesCollection* pThis, int index, winmdroot.Web.MsHtml.IHTMLStyleSheetRule** ppHTMLStyleSheetRule) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return (winmdroot.Foundation.HRESULT)ex.HResult; 165 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,int ,winmdroot.Web.MsHtml.IHTMLStyleSheetRule** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyleSheetRulesCollection*)Unsafe.AsPointer(ref this), index, &__retVal).ThrowOnFailure(); 169 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 173 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 190 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 196 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 198 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 200 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 202 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 204 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8; 206 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetRulesCollection*,int ,winmdroot.Web.MsHtml.IHTMLStyleSheetRule** ,winmdroot.Foundation.HRESULT> item_9; 238 unsafe winmdroot.Foundation.HRESULT item(int index, winmdroot.Web.MsHtml.IHTMLStyleSheetRule** ppHTMLStyleSheetRule);
Windows.Win32.IHTMLStyleSheetsCollection.g.cs (33)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_length(IHTMLStyleSheetsCollection* pThis, int* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLStyleSheetsCollection* pThis, winmdroot.System.Com.IUnknown** p) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return winmdroot.Foundation.HRESULT.S_OK; 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 186 private static winmdroot.Foundation.HRESULT item(IHTMLStyleSheetsCollection* pThis, winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 190 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 199 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 ((delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLStyleSheetsCollection*)Unsafe.AsPointer(ref this), pvarIndex, &__retVal).ThrowOnFailure(); 210 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 214 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 231 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 237 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 239 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 241 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 243 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 245 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,int* ,winmdroot.Foundation.HRESULT> get_length_8; 247 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_9; 249 internal delegate *unmanaged [Stdcall]<IHTMLStyleSheetsCollection*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> item_10; 287 unsafe winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult);
Windows.Win32.IHTMLWindow2.g.cs (468)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLWindow2*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLWindow2*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLWindow2*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLWindow2*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLWindow2*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 124 private static winmdroot.Foundation.HRESULT item(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult) 128 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 137 return (winmdroot.Foundation.HRESULT)ex.HResult; 144 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLWindow2*)Unsafe.AsPointer(ref this), pvarIndex, &__retVal).ThrowOnFailure(); 149 internal unsafe winmdroot.Foundation.HRESULT get_length(out int p) 153 winmdroot.Foundation.HRESULT __result = this.get_length(pLocal); 161 private static winmdroot.Foundation.HRESULT get_length(IHTMLWindow2* pThis, int* p) 165 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 174 return (winmdroot.Foundation.HRESULT)ex.HResult; 178 public unsafe winmdroot.Foundation.HRESULT get_length(int* p) 180 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 186 private static winmdroot.Foundation.HRESULT get_frames(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLFramesCollection2** p) 190 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 199 return (winmdroot.Foundation.HRESULT)ex.HResult; 203 public unsafe winmdroot.Foundation.HRESULT get_frames(winmdroot.Web.MsHtml.IHTMLFramesCollection2** p) 205 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLFramesCollection2** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 211 private static winmdroot.Foundation.HRESULT put_defaultStatus(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR v) 215 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 221 return winmdroot.Foundation.HRESULT.S_OK; 225 return (winmdroot.Foundation.HRESULT)ex.HResult; 233 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 238 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 246 private static winmdroot.Foundation.HRESULT get_defaultStatus(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* p) 250 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 256 return winmdroot.Foundation.HRESULT.S_OK; 260 return (winmdroot.Foundation.HRESULT)ex.HResult; 267 private static winmdroot.Foundation.HRESULT put_status(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR v) 271 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 280 return (winmdroot.Foundation.HRESULT)ex.HResult; 284 public winmdroot.Foundation.HRESULT put_status(winmdroot.Foundation.BSTR v) 286 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLWindow2*)Unsafe.AsPointer(ref this), v); 292 private static winmdroot.Foundation.HRESULT get_status(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* p) 296 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 305 return (winmdroot.Foundation.HRESULT)ex.HResult; 309 public unsafe winmdroot.Foundation.HRESULT get_status(winmdroot.Foundation.BSTR* p) 311 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 327 private static winmdroot.Foundation.HRESULT setTimeout(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID) 331 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 340 return (winmdroot.Foundation.HRESULT)ex.HResult; 347 ((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(); 354 private static winmdroot.Foundation.HRESULT clearTimeout(IHTMLWindow2* pThis, int timerID) 358 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 367 return (winmdroot.Foundation.HRESULT)ex.HResult; 373 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLWindow2*)Unsafe.AsPointer(ref this), timerID).ThrowOnFailure(); 379 private static winmdroot.Foundation.HRESULT alert(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR message) 383 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 392 return (winmdroot.Foundation.HRESULT)ex.HResult; 396 public winmdroot.Foundation.HRESULT alert(winmdroot.Foundation.BSTR message) 398 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLWindow2*)Unsafe.AsPointer(ref this), message); 402 internal unsafe winmdroot.Foundation.HRESULT confirm(winmdroot.Foundation.BSTR message, out winmdroot.Foundation.VARIANT_BOOL confirmed) 406 winmdroot.Foundation.HRESULT __result = this.confirm(message, confirmedLocal); 414 private static winmdroot.Foundation.HRESULT confirm(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR message, winmdroot.Foundation.VARIANT_BOOL* confirmed) 418 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 427 return (winmdroot.Foundation.HRESULT)ex.HResult; 431 public unsafe winmdroot.Foundation.HRESULT confirm(winmdroot.Foundation.BSTR message, winmdroot.Foundation.VARIANT_BOOL* confirmed) 433 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLWindow2*)Unsafe.AsPointer(ref this), message, confirmed); 437 internal unsafe winmdroot.Foundation.HRESULT prompt(winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, out winmdroot.System.Variant.VARIANT textdata) 441 winmdroot.Foundation.HRESULT __result = this.prompt(message, defstr, textdataLocal); 449 private static winmdroot.Foundation.HRESULT prompt(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, winmdroot.System.Variant.VARIANT* textdata) 453 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 462 return (winmdroot.Foundation.HRESULT)ex.HResult; 466 public unsafe winmdroot.Foundation.HRESULT prompt(winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, winmdroot.System.Variant.VARIANT* textdata) 468 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); 474 private static winmdroot.Foundation.HRESULT get_Image(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLImageElementFactory** p) 478 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 484 return winmdroot.Foundation.HRESULT.S_OK; 488 return (winmdroot.Foundation.HRESULT)ex.HResult; 497 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLImageElementFactory** ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 505 private static winmdroot.Foundation.HRESULT get_location(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLLocation** p) 509 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 518 return (winmdroot.Foundation.HRESULT)ex.HResult; 522 public unsafe winmdroot.Foundation.HRESULT get_location(winmdroot.Web.MsHtml.IHTMLLocation** p) 524 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLLocation** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 530 private static winmdroot.Foundation.HRESULT get_history(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IOmHistory** p) 534 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 543 return (winmdroot.Foundation.HRESULT)ex.HResult; 547 public unsafe winmdroot.Foundation.HRESULT get_history(winmdroot.Web.MsHtml.IOmHistory** p) 549 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmHistory** ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 555 private static winmdroot.Foundation.HRESULT close(IHTMLWindow2* pThis) 559 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 568 return (winmdroot.Foundation.HRESULT)ex.HResult; 572 public winmdroot.Foundation.HRESULT close() 574 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IHTMLWindow2*)Unsafe.AsPointer(ref this)); 580 private static winmdroot.Foundation.HRESULT put_opener(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 584 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 590 return winmdroot.Foundation.HRESULT.S_OK; 594 return (winmdroot.Foundation.HRESULT)ex.HResult; 602 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 607 internal unsafe winmdroot.Foundation.HRESULT get_opener(out winmdroot.System.Variant.VARIANT p) 611 winmdroot.Foundation.HRESULT __result = this.get_opener(pLocal); 619 private static winmdroot.Foundation.HRESULT get_opener(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 623 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 632 return (winmdroot.Foundation.HRESULT)ex.HResult; 636 public unsafe winmdroot.Foundation.HRESULT get_opener(winmdroot.System.Variant.VARIANT* p) 638 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 644 private static winmdroot.Foundation.HRESULT get_navigator(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IOmNavigator** p) 648 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 654 return winmdroot.Foundation.HRESULT.S_OK; 658 return (winmdroot.Foundation.HRESULT)ex.HResult; 667 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmNavigator** ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 675 private static winmdroot.Foundation.HRESULT put_name(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR v) 679 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 688 return (winmdroot.Foundation.HRESULT)ex.HResult; 692 public winmdroot.Foundation.HRESULT put_name(winmdroot.Foundation.BSTR v) 694 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IHTMLWindow2*)Unsafe.AsPointer(ref this), v); 700 private static winmdroot.Foundation.HRESULT get_name(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* p) 704 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 713 return (winmdroot.Foundation.HRESULT)ex.HResult; 717 public unsafe winmdroot.Foundation.HRESULT get_name(winmdroot.Foundation.BSTR* p) 719 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 725 private static winmdroot.Foundation.HRESULT get_parent(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLWindow2** p) 729 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 738 return (winmdroot.Foundation.HRESULT)ex.HResult; 742 public unsafe winmdroot.Foundation.HRESULT get_parent(winmdroot.Web.MsHtml.IHTMLWindow2** p) 744 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 750 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) 754 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 763 return (winmdroot.Foundation.HRESULT)ex.HResult; 767 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) 769 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); 775 private static winmdroot.Foundation.HRESULT get_self(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLWindow2** p) 779 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 785 return winmdroot.Foundation.HRESULT.S_OK; 789 return (winmdroot.Foundation.HRESULT)ex.HResult; 798 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 806 private static winmdroot.Foundation.HRESULT get_top(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLWindow2** p) 810 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 816 return winmdroot.Foundation.HRESULT.S_OK; 820 return (winmdroot.Foundation.HRESULT)ex.HResult; 829 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 837 private static winmdroot.Foundation.HRESULT get_window(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLWindow2** p) 841 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 847 return winmdroot.Foundation.HRESULT.S_OK; 851 return (winmdroot.Foundation.HRESULT)ex.HResult; 860 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 868 private static winmdroot.Foundation.HRESULT navigate(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR url) 872 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 881 return (winmdroot.Foundation.HRESULT)ex.HResult; 885 public winmdroot.Foundation.HRESULT navigate(winmdroot.Foundation.BSTR url) 887 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IHTMLWindow2*)Unsafe.AsPointer(ref this), url); 893 private static winmdroot.Foundation.HRESULT put_onfocus(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 897 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 903 return winmdroot.Foundation.HRESULT.S_OK; 907 return (winmdroot.Foundation.HRESULT)ex.HResult; 915 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 920 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 928 private static winmdroot.Foundation.HRESULT get_onfocus(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 932 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 938 return winmdroot.Foundation.HRESULT.S_OK; 942 return (winmdroot.Foundation.HRESULT)ex.HResult; 949 private static winmdroot.Foundation.HRESULT put_onblur(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 953 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 959 return winmdroot.Foundation.HRESULT.S_OK; 963 return (winmdroot.Foundation.HRESULT)ex.HResult; 971 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 976 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 984 private static winmdroot.Foundation.HRESULT get_onblur(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 988 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 994 return winmdroot.Foundation.HRESULT.S_OK; 998 return (winmdroot.Foundation.HRESULT)ex.HResult; 1005 private static winmdroot.Foundation.HRESULT put_onload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1009 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1015 return winmdroot.Foundation.HRESULT.S_OK; 1019 return (winmdroot.Foundation.HRESULT)ex.HResult; 1027 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1032 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1040 private static winmdroot.Foundation.HRESULT get_onload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1044 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1050 return winmdroot.Foundation.HRESULT.S_OK; 1054 return (winmdroot.Foundation.HRESULT)ex.HResult; 1061 private static winmdroot.Foundation.HRESULT put_onbeforeunload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1065 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1071 return winmdroot.Foundation.HRESULT.S_OK; 1075 return (winmdroot.Foundation.HRESULT)ex.HResult; 1083 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1088 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1096 private static winmdroot.Foundation.HRESULT get_onbeforeunload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1100 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1106 return winmdroot.Foundation.HRESULT.S_OK; 1110 return (winmdroot.Foundation.HRESULT)ex.HResult; 1117 private static winmdroot.Foundation.HRESULT put_onunload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1121 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1127 return winmdroot.Foundation.HRESULT.S_OK; 1131 return (winmdroot.Foundation.HRESULT)ex.HResult; 1139 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1144 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1152 private static winmdroot.Foundation.HRESULT get_onunload(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1156 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1162 return winmdroot.Foundation.HRESULT.S_OK; 1166 return (winmdroot.Foundation.HRESULT)ex.HResult; 1173 private static winmdroot.Foundation.HRESULT put_onhelp(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1177 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1183 return winmdroot.Foundation.HRESULT.S_OK; 1187 return (winmdroot.Foundation.HRESULT)ex.HResult; 1195 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1200 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1208 private static winmdroot.Foundation.HRESULT get_onhelp(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1212 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1218 return winmdroot.Foundation.HRESULT.S_OK; 1222 return (winmdroot.Foundation.HRESULT)ex.HResult; 1229 private static winmdroot.Foundation.HRESULT put_onerror(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1233 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1239 return winmdroot.Foundation.HRESULT.S_OK; 1243 return (winmdroot.Foundation.HRESULT)ex.HResult; 1251 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1256 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1264 private static winmdroot.Foundation.HRESULT get_onerror(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1268 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1274 return winmdroot.Foundation.HRESULT.S_OK; 1278 return (winmdroot.Foundation.HRESULT)ex.HResult; 1285 private static winmdroot.Foundation.HRESULT put_onresize(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1289 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1295 return winmdroot.Foundation.HRESULT.S_OK; 1299 return (winmdroot.Foundation.HRESULT)ex.HResult; 1307 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1312 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1320 private static winmdroot.Foundation.HRESULT get_onresize(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1324 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1330 return winmdroot.Foundation.HRESULT.S_OK; 1334 return (winmdroot.Foundation.HRESULT)ex.HResult; 1341 private static winmdroot.Foundation.HRESULT put_onscroll(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1345 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1351 return winmdroot.Foundation.HRESULT.S_OK; 1355 return (winmdroot.Foundation.HRESULT)ex.HResult; 1363 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1368 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1376 private static winmdroot.Foundation.HRESULT get_onscroll(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1380 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1386 return winmdroot.Foundation.HRESULT.S_OK; 1390 return (winmdroot.Foundation.HRESULT)ex.HResult; 1397 private static winmdroot.Foundation.HRESULT get_document(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLDocument2** p) 1401 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1410 return (winmdroot.Foundation.HRESULT)ex.HResult; 1414 public unsafe winmdroot.Foundation.HRESULT get_document(winmdroot.Web.MsHtml.IHTMLDocument2** p) 1416 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 1422 private static winmdroot.Foundation.HRESULT get_event(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLEventObj** p) 1426 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1432 return winmdroot.Foundation.HRESULT.S_OK; 1436 return (winmdroot.Foundation.HRESULT)ex.HResult; 1445 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLEventObj** ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1453 private static winmdroot.Foundation.HRESULT get__newEnum(IHTMLWindow2* pThis, winmdroot.System.Com.IUnknown** p) 1457 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1463 return winmdroot.Foundation.HRESULT.S_OK; 1467 return (winmdroot.Foundation.HRESULT)ex.HResult; 1476 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1497 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) 1501 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1510 return (winmdroot.Foundation.HRESULT)ex.HResult; 1517 ((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(); 1524 private static winmdroot.Foundation.HRESULT showHelp(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR helpURL, winmdroot.System.Variant.VARIANT helpArg, winmdroot.Foundation.BSTR features) 1528 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1537 return (winmdroot.Foundation.HRESULT)ex.HResult; 1543 ((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(); 1549 private static winmdroot.Foundation.HRESULT get_screen(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLScreen** p) 1553 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1559 return winmdroot.Foundation.HRESULT.S_OK; 1563 return (winmdroot.Foundation.HRESULT)ex.HResult; 1572 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLScreen** ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1580 private static winmdroot.Foundation.HRESULT get_Option(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IHTMLOptionElementFactory** p) 1584 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1590 return winmdroot.Foundation.HRESULT.S_OK; 1594 return (winmdroot.Foundation.HRESULT)ex.HResult; 1603 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLOptionElementFactory** ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1611 private static winmdroot.Foundation.HRESULT focus(IHTMLWindow2* pThis) 1615 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1624 return (winmdroot.Foundation.HRESULT)ex.HResult; 1628 public winmdroot.Foundation.HRESULT focus() 1630 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IHTMLWindow2*)Unsafe.AsPointer(ref this)); 1634 internal unsafe winmdroot.Foundation.HRESULT get_closed(out winmdroot.Foundation.VARIANT_BOOL p) 1638 winmdroot.Foundation.HRESULT __result = this.get_closed(pLocal); 1646 private static winmdroot.Foundation.HRESULT get_closed(IHTMLWindow2* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 1650 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1659 return (winmdroot.Foundation.HRESULT)ex.HResult; 1663 public unsafe winmdroot.Foundation.HRESULT get_closed(winmdroot.Foundation.VARIANT_BOOL* p) 1665 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IHTMLWindow2*)Unsafe.AsPointer(ref this), p); 1671 private static winmdroot.Foundation.HRESULT blur(IHTMLWindow2* pThis) 1675 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1684 return (winmdroot.Foundation.HRESULT)ex.HResult; 1688 public winmdroot.Foundation.HRESULT blur() 1690 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IHTMLWindow2*)Unsafe.AsPointer(ref this)); 1696 private static winmdroot.Foundation.HRESULT scroll(IHTMLWindow2* pThis, int x, int y) 1700 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1709 return (winmdroot.Foundation.HRESULT)ex.HResult; 1715 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y).ThrowOnFailure(); 1721 private static winmdroot.Foundation.HRESULT get_clientInformation(IHTMLWindow2* pThis, winmdroot.Web.MsHtml.IOmNavigator** p) 1725 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1731 return winmdroot.Foundation.HRESULT.S_OK; 1735 return (winmdroot.Foundation.HRESULT)ex.HResult; 1744 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmNavigator** ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1762 private static winmdroot.Foundation.HRESULT setInterval(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID) 1766 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1775 return (winmdroot.Foundation.HRESULT)ex.HResult; 1782 ((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(); 1789 private static winmdroot.Foundation.HRESULT clearInterval(IHTMLWindow2* pThis, int timerID) 1793 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1802 return (winmdroot.Foundation.HRESULT)ex.HResult; 1808 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IHTMLWindow2*)Unsafe.AsPointer(ref this), timerID).ThrowOnFailure(); 1814 private static winmdroot.Foundation.HRESULT put_offscreenBuffering(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT v) 1818 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1824 return winmdroot.Foundation.HRESULT.S_OK; 1828 return (winmdroot.Foundation.HRESULT)ex.HResult; 1836 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IHTMLWindow2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1841 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1849 private static winmdroot.Foundation.HRESULT get_offscreenBuffering(IHTMLWindow2* pThis, winmdroot.System.Variant.VARIANT* p) 1853 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1859 return winmdroot.Foundation.HRESULT.S_OK; 1863 return (winmdroot.Foundation.HRESULT)ex.HResult; 1870 private static winmdroot.Foundation.HRESULT execScript(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR code, winmdroot.Foundation.BSTR language, winmdroot.System.Variant.VARIANT* pvarRet) 1874 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1883 return (winmdroot.Foundation.HRESULT)ex.HResult; 1890 ((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(); 1897 private static winmdroot.Foundation.HRESULT toString(IHTMLWindow2* pThis, winmdroot.Foundation.BSTR* String) 1901 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1910 return (winmdroot.Foundation.HRESULT)ex.HResult; 1917 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 1924 private static winmdroot.Foundation.HRESULT scrollBy(IHTMLWindow2* pThis, int x, int y) 1928 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1937 return (winmdroot.Foundation.HRESULT)ex.HResult; 1943 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y).ThrowOnFailure(); 1949 private static winmdroot.Foundation.HRESULT scrollTo(IHTMLWindow2* pThis, int x, int y) 1953 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1962 return (winmdroot.Foundation.HRESULT)ex.HResult; 1966 public winmdroot.Foundation.HRESULT scrollTo(int x, int y) 1968 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y); 1974 private static winmdroot.Foundation.HRESULT moveTo(IHTMLWindow2* pThis, int x, int y) 1978 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1987 return (winmdroot.Foundation.HRESULT)ex.HResult; 1991 public winmdroot.Foundation.HRESULT moveTo(int x, int y) 1993 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y); 1999 private static winmdroot.Foundation.HRESULT moveBy(IHTMLWindow2* pThis, int x, int y) 2003 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2012 return (winmdroot.Foundation.HRESULT)ex.HResult; 2018 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y).ThrowOnFailure(); 2024 private static winmdroot.Foundation.HRESULT resizeTo(IHTMLWindow2* pThis, int x, int y) 2028 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2037 return (winmdroot.Foundation.HRESULT)ex.HResult; 2041 public winmdroot.Foundation.HRESULT resizeTo(int x, int y) 2043 return ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y); 2049 private static winmdroot.Foundation.HRESULT resizeBy(IHTMLWindow2* pThis, int x, int y) 2053 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2062 return (winmdroot.Foundation.HRESULT)ex.HResult; 2068 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IHTMLWindow2*)Unsafe.AsPointer(ref this), x, y).ThrowOnFailure(); 2074 private static winmdroot.Foundation.HRESULT get_external(IHTMLWindow2* pThis, winmdroot.System.Com.IDispatch** p) 2078 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2084 return winmdroot.Foundation.HRESULT.S_OK; 2088 return (winmdroot.Foundation.HRESULT)ex.HResult; 2097 ((delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IHTMLWindow2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2102 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2106 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 2123 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2129 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2131 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2133 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2135 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 2137 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> item_8; 2139 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int* ,winmdroot.Foundation.HRESULT> get_length_9; 2141 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLFramesCollection2** ,winmdroot.Foundation.HRESULT> get_frames_10; 2143 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_defaultStatus_11; 2145 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_defaultStatus_12; 2147 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_status_13; 2149 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_status_14; 2151 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> setTimeout_15; 2153 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,winmdroot.Foundation.HRESULT> clearTimeout_16; 2155 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> alert_17; 2157 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> confirm_18; 2159 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> prompt_19; 2161 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLImageElementFactory** ,winmdroot.Foundation.HRESULT> get_Image_20; 2163 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLLocation** ,winmdroot.Foundation.HRESULT> get_location_21; 2165 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmHistory** ,winmdroot.Foundation.HRESULT> get_history_22; 2167 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT> close_23; 2169 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_opener_24; 2171 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_opener_25; 2173 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmNavigator** ,winmdroot.Foundation.HRESULT> get_navigator_26; 2175 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_name_27; 2177 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_name_28; 2179 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> get_parent_29; 2181 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; 2183 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> get_self_31; 2185 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> get_top_32; 2187 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLWindow2** ,winmdroot.Foundation.HRESULT> get_window_33; 2189 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> navigate_34; 2191 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onfocus_35; 2193 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onfocus_36; 2195 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onblur_37; 2197 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onblur_38; 2199 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onload_39; 2201 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onload_40; 2203 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeunload_41; 2205 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeunload_42; 2207 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onunload_43; 2209 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onunload_44; 2211 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onhelp_45; 2213 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onhelp_46; 2215 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onerror_47; 2217 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onerror_48; 2219 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onresize_49; 2221 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onresize_50; 2223 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onscroll_51; 2225 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onscroll_52; 2227 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLDocument2** ,winmdroot.Foundation.HRESULT> get_document_53; 2229 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLEventObj** ,winmdroot.Foundation.HRESULT> get_event_54; 2231 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get__newEnum_55; 2233 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; 2235 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> showHelp_57; 2237 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLScreen** ,winmdroot.Foundation.HRESULT> get_screen_58; 2239 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IHTMLOptionElementFactory** ,winmdroot.Foundation.HRESULT> get_Option_59; 2241 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT> focus_60; 2243 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_closed_61; 2245 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.HRESULT> blur_62; 2247 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> scroll_63; 2249 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Web.MsHtml.IOmNavigator** ,winmdroot.Foundation.HRESULT> get_clientInformation_64; 2251 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> setInterval_65; 2253 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,winmdroot.Foundation.HRESULT> clearInterval_66; 2255 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_offscreenBuffering_67; 2257 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_offscreenBuffering_68; 2259 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> execScript_69; 2261 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_70; 2263 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> scrollBy_71; 2265 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> scrollTo_72; 2267 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> moveTo_73; 2269 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> moveBy_74; 2271 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> resizeTo_75; 2273 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,int ,int ,winmdroot.Foundation.HRESULT> resizeBy_76; 2275 internal delegate *unmanaged [Stdcall]<IHTMLWindow2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_external_77; 2370 unsafe new winmdroot.Foundation.HRESULT item(winmdroot.System.Variant.VARIANT* pvarIndex, winmdroot.System.Variant.VARIANT* pvarResult); 2373 unsafe new winmdroot.Foundation.HRESULT get_length(int* p); 2376 unsafe winmdroot.Foundation.HRESULT get_frames(winmdroot.Web.MsHtml.IHTMLFramesCollection2** p); 2385winmdroot.Foundation.HRESULT put_status(winmdroot.Foundation.BSTR v); 2388 unsafe winmdroot.Foundation.HRESULT get_status(winmdroot.Foundation.BSTR* p); 2391 unsafe winmdroot.Foundation.HRESULT setTimeout(winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID); 2394winmdroot.Foundation.HRESULT clearTimeout(int timerID); 2397winmdroot.Foundation.HRESULT alert(winmdroot.Foundation.BSTR message); 2400 unsafe winmdroot.Foundation.HRESULT confirm(winmdroot.Foundation.BSTR message, winmdroot.Foundation.VARIANT_BOOL* confirmed); 2403 unsafe winmdroot.Foundation.HRESULT prompt(winmdroot.Foundation.BSTR message, winmdroot.Foundation.BSTR defstr, winmdroot.System.Variant.VARIANT* textdata); 2411 unsafe winmdroot.Foundation.HRESULT get_location(winmdroot.Web.MsHtml.IHTMLLocation** p); 2414 unsafe winmdroot.Foundation.HRESULT get_history(winmdroot.Web.MsHtml.IOmHistory** p); 2417winmdroot.Foundation.HRESULT close(); 2425 unsafe winmdroot.Foundation.HRESULT get_opener(winmdroot.System.Variant.VARIANT* p); 2433winmdroot.Foundation.HRESULT put_name(winmdroot.Foundation.BSTR v); 2436 unsafe winmdroot.Foundation.HRESULT get_name(winmdroot.Foundation.BSTR* p); 2439 unsafe winmdroot.Foundation.HRESULT get_parent(winmdroot.Web.MsHtml.IHTMLWindow2** p); 2442 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); 2460winmdroot.Foundation.HRESULT navigate(winmdroot.Foundation.BSTR url); 2517 unsafe winmdroot.Foundation.HRESULT get_document(winmdroot.Web.MsHtml.IHTMLDocument2** p); 2530 unsafe winmdroot.Foundation.HRESULT showModalDialog(winmdroot.Foundation.BSTR dialog, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* varOptions, winmdroot.System.Variant.VARIANT* varArgOut); 2533winmdroot.Foundation.HRESULT showHelp(winmdroot.Foundation.BSTR helpURL, winmdroot.System.Variant.VARIANT helpArg, winmdroot.Foundation.BSTR features); 2546winmdroot.Foundation.HRESULT focus(); 2549 unsafe winmdroot.Foundation.HRESULT get_closed(winmdroot.Foundation.VARIANT_BOOL* p); 2552winmdroot.Foundation.HRESULT blur(); 2555winmdroot.Foundation.HRESULT scroll(int x, int y); 2563 unsafe winmdroot.Foundation.HRESULT setInterval(winmdroot.Foundation.BSTR expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID); 2566winmdroot.Foundation.HRESULT clearInterval(int timerID); 2575 unsafe winmdroot.Foundation.HRESULT execScript(winmdroot.Foundation.BSTR code, winmdroot.Foundation.BSTR language, winmdroot.System.Variant.VARIANT* pvarRet); 2578 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* String); 2581winmdroot.Foundation.HRESULT scrollBy(int x, int y); 2584winmdroot.Foundation.HRESULT scrollTo(int x, int y); 2587winmdroot.Foundation.HRESULT moveTo(int x, int y); 2590winmdroot.Foundation.HRESULT moveBy(int x, int y); 2593winmdroot.Foundation.HRESULT resizeTo(int x, int y); 2596winmdroot.Foundation.HRESULT resizeBy(int x, int y);
Windows.Win32.IHTMLWindow3.g.cs (103)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLWindow3*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLWindow3*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLWindow3*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLWindow3*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLWindow3*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 112 internal unsafe winmdroot.Foundation.HRESULT get_screenLeft(out int p) 116 winmdroot.Foundation.HRESULT __result = this.get_screenLeft(pLocal); 124 private static winmdroot.Foundation.HRESULT get_screenLeft(IHTMLWindow3* pThis, int* p) 128 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 137 return (winmdroot.Foundation.HRESULT)ex.HResult; 141 public unsafe winmdroot.Foundation.HRESULT get_screenLeft(int* p) 143 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLWindow3*)Unsafe.AsPointer(ref this), p); 147 internal unsafe winmdroot.Foundation.HRESULT get_screenTop(out int p) 151 winmdroot.Foundation.HRESULT __result = this.get_screenTop(pLocal); 159 private static winmdroot.Foundation.HRESULT get_screenTop(IHTMLWindow3* pThis, int* p) 163 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 172 return (winmdroot.Foundation.HRESULT)ex.HResult; 176 public unsafe winmdroot.Foundation.HRESULT get_screenTop(int* p) 178 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLWindow3*)Unsafe.AsPointer(ref this), p); 182 internal unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 186 winmdroot.Foundation.HRESULT __result = this.attachEvent(@event, pDisp, pfResultLocal); 194 private static winmdroot.Foundation.HRESULT attachEvent(IHTMLWindow3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 198 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 207 return (winmdroot.Foundation.HRESULT)ex.HResult; 211 public unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult) 213 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IHTMLWindow3*)Unsafe.AsPointer(ref this), @event, pDisp, pfResult); 219 private static winmdroot.Foundation.HRESULT detachEvent(IHTMLWindow3* pThis, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 223 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 232 return (winmdroot.Foundation.HRESULT)ex.HResult; 236 public unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp) 238 return ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IHTMLWindow3*)Unsafe.AsPointer(ref this), @event, pDisp); 257 private static winmdroot.Foundation.HRESULT setTimeout(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT* expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID) 261 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 270 return (winmdroot.Foundation.HRESULT)ex.HResult; 277 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IHTMLWindow3*)Unsafe.AsPointer(ref this), expression, msec, language, &__retVal).ThrowOnFailure(); 297 private static winmdroot.Foundation.HRESULT setInterval(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT* expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID) 301 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 310 return (winmdroot.Foundation.HRESULT)ex.HResult; 317 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IHTMLWindow3*)Unsafe.AsPointer(ref this), expression, msec, language, &__retVal).ThrowOnFailure(); 324 private static winmdroot.Foundation.HRESULT print(IHTMLWindow3* pThis) 328 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 337 return (winmdroot.Foundation.HRESULT)ex.HResult; 343 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IHTMLWindow3*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 349 private static winmdroot.Foundation.HRESULT put_onbeforeprint(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT v) 353 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 359 return winmdroot.Foundation.HRESULT.S_OK; 363 return (winmdroot.Foundation.HRESULT)ex.HResult; 371 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IHTMLWindow3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 376 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IHTMLWindow3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 384 private static winmdroot.Foundation.HRESULT get_onbeforeprint(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT* p) 388 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 394 return winmdroot.Foundation.HRESULT.S_OK; 398 return (winmdroot.Foundation.HRESULT)ex.HResult; 405 private static winmdroot.Foundation.HRESULT put_onafterprint(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT v) 409 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 415 return winmdroot.Foundation.HRESULT.S_OK; 419 return (winmdroot.Foundation.HRESULT)ex.HResult; 427 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IHTMLWindow3*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 432 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IHTMLWindow3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 440 private static winmdroot.Foundation.HRESULT get_onafterprint(IHTMLWindow3* pThis, winmdroot.System.Variant.VARIANT* p) 444 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 450 return winmdroot.Foundation.HRESULT.S_OK; 454 return (winmdroot.Foundation.HRESULT)ex.HResult; 461 private static winmdroot.Foundation.HRESULT get_clipboardData(IHTMLWindow3* pThis, winmdroot.Web.MsHtml.IHTMLDataTransfer** p) 465 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 471 return winmdroot.Foundation.HRESULT.S_OK; 475 return (winmdroot.Foundation.HRESULT)ex.HResult; 484 ((delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Web.MsHtml.IHTMLDataTransfer** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IHTMLWindow3*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 505 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) 509 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 518 return (winmdroot.Foundation.HRESULT)ex.HResult; 525 ((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(); 529 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 533 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 550 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 556 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 558 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 560 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 562 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 564 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,int* ,winmdroot.Foundation.HRESULT> get_screenLeft_8; 566 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,int* ,winmdroot.Foundation.HRESULT> get_screenTop_9; 568 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> attachEvent_10; 570 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.BSTR ,winmdroot.System.Com.IDispatch* ,winmdroot.Foundation.HRESULT> detachEvent_11; 572 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> setTimeout_12; 574 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.System.Variant.VARIANT* ,int* ,winmdroot.Foundation.HRESULT> setInterval_13; 576 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Foundation.HRESULT> print_14; 578 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onbeforeprint_15; 580 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onbeforeprint_16; 582 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> put_onafterprint_17; 584 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> get_onafterprint_18; 586 internal delegate *unmanaged [Stdcall]<IHTMLWindow3*,winmdroot.Web.MsHtml.IHTMLDataTransfer** ,winmdroot.Foundation.HRESULT> get_clipboardData_19; 588 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; 626 unsafe winmdroot.Foundation.HRESULT get_screenLeft(int* p); 629 unsafe winmdroot.Foundation.HRESULT get_screenTop(int* p); 632 unsafe winmdroot.Foundation.HRESULT attachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, winmdroot.Foundation.VARIANT_BOOL* pfResult); 635 unsafe winmdroot.Foundation.HRESULT detachEvent(winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp); 638 unsafe winmdroot.Foundation.HRESULT setTimeout(winmdroot.System.Variant.VARIANT* expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID); 641 unsafe winmdroot.Foundation.HRESULT setInterval(winmdroot.System.Variant.VARIANT* expression, int msec, winmdroot.System.Variant.VARIANT* language, int* timerID); 644winmdroot.Foundation.HRESULT print(); 664 unsafe winmdroot.Foundation.HRESULT showModelessDialog(winmdroot.Foundation.BSTR url, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Variant.VARIANT* options, winmdroot.Web.MsHtml.IHTMLWindow2** pDialog);
Windows.Win32.IHTMLWindow4.g.cs (28)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IHTMLWindow4*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IHTMLWindow4*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IHTMLWindow4*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IHTMLWindow4*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IHTMLWindow4*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 124 private static winmdroot.Foundation.HRESULT createPopup(IHTMLWindow4* pThis, winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Com.IDispatch** ppPopup) 128 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 137 return (winmdroot.Foundation.HRESULT)ex.HResult; 144 ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IHTMLWindow4*)Unsafe.AsPointer(ref this), varArgIn, &__retVal).ThrowOnFailure(); 151 private static winmdroot.Foundation.HRESULT get_frameElement(IHTMLWindow4* pThis, winmdroot.Web.MsHtml.IHTMLFrameBase** p) 155 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 164 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 public unsafe winmdroot.Foundation.HRESULT get_frameElement(winmdroot.Web.MsHtml.IHTMLFrameBase** p) 170 return ((delegate *unmanaged [Stdcall]<IHTMLWindow4*,winmdroot.Web.MsHtml.IHTMLFrameBase** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IHTMLWindow4*)Unsafe.AsPointer(ref this), p); 173 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 177 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 194 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 200 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 202 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 204 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 206 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 208 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> createPopup_8; 210 internal delegate *unmanaged [Stdcall]<IHTMLWindow4*,winmdroot.Web.MsHtml.IHTMLFrameBase** ,winmdroot.Foundation.HRESULT> get_frameElement_9; 237 unsafe winmdroot.Foundation.HRESULT createPopup(winmdroot.System.Variant.VARIANT* varArgIn, winmdroot.System.Com.IDispatch** ppPopup); 240 unsafe winmdroot.Foundation.HRESULT get_frameElement(winmdroot.Web.MsHtml.IHTMLFrameBase** p);
Windows.Win32.IInvokeProvider.g.cs (13)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IInvokeProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IInvokeProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Invoke(IInvokeProvider* pThis) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<IInvokeProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IInvokeProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 92 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 96 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 113 internal delegate *unmanaged [Stdcall]<IInvokeProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 119 internal delegate *unmanaged [Stdcall]<IInvokeProvider*,winmdroot.Foundation.HRESULT> Invoke_4; 146winmdroot.Foundation.HRESULT Invoke();
Windows.Win32.ILegacyIAccessibleProvider.g.cs (106)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Select(ILegacyIAccessibleProvider* pThis, int flagsSelect) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), flagsSelect).ThrowOnFailure(); 94 private static winmdroot.Foundation.HRESULT DoDefaultAction(ILegacyIAccessibleProvider* pThis) 98 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 120 ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 135 private static winmdroot.Foundation.HRESULT SetValue(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.PCWSTR szValue) 139 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 148 return (winmdroot.Foundation.HRESULT)ex.HResult; 165 ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), szValue).ThrowOnFailure(); 171 private static winmdroot.Foundation.HRESULT GetIAccessible(ILegacyIAccessibleProvider* pThis, winmdroot.UI.Accessibility.IAccessible** ppAccessible) 175 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 184 return (winmdroot.Foundation.HRESULT)ex.HResult; 198 ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.UI.Accessibility.IAccessible** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 203 internal unsafe winmdroot.Foundation.HRESULT get_ChildId(out int pRetVal) 207 winmdroot.Foundation.HRESULT __result = this.get_ChildId(pRetValLocal); 215 private static winmdroot.Foundation.HRESULT get_ChildId(ILegacyIAccessibleProvider* pThis, int* pRetVal) 219 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 228 return (winmdroot.Foundation.HRESULT)ex.HResult; 236 public unsafe winmdroot.Foundation.HRESULT get_ChildId(int* pRetVal) 238 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pRetVal); 244 private static winmdroot.Foundation.HRESULT get_Name(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszName) 248 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 257 return (winmdroot.Foundation.HRESULT)ex.HResult; 265 public unsafe winmdroot.Foundation.HRESULT get_Name(winmdroot.Foundation.BSTR* pszName) 267 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszName); 273 private static winmdroot.Foundation.HRESULT get_Value(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszValue) 277 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 286 return (winmdroot.Foundation.HRESULT)ex.HResult; 294 public unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pszValue) 296 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszValue); 302 private static winmdroot.Foundation.HRESULT get_Description(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszDescription) 306 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 315 return (winmdroot.Foundation.HRESULT)ex.HResult; 323 public unsafe winmdroot.Foundation.HRESULT get_Description(winmdroot.Foundation.BSTR* pszDescription) 325 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszDescription); 329 internal unsafe winmdroot.Foundation.HRESULT get_Role(out uint pdwRole) 333 winmdroot.Foundation.HRESULT __result = this.get_Role(pdwRoleLocal); 341 private static winmdroot.Foundation.HRESULT get_Role(ILegacyIAccessibleProvider* pThis, uint* pdwRole) 345 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 354 return (winmdroot.Foundation.HRESULT)ex.HResult; 362 public unsafe winmdroot.Foundation.HRESULT get_Role(uint* pdwRole) 364 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pdwRole); 368 internal unsafe winmdroot.Foundation.HRESULT get_State(out uint pdwState) 372 winmdroot.Foundation.HRESULT __result = this.get_State(pdwStateLocal); 380 private static winmdroot.Foundation.HRESULT get_State(ILegacyIAccessibleProvider* pThis, uint* pdwState) 384 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 393 return (winmdroot.Foundation.HRESULT)ex.HResult; 401 public unsafe winmdroot.Foundation.HRESULT get_State(uint* pdwState) 403 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pdwState); 409 private static winmdroot.Foundation.HRESULT get_Help(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszHelp) 413 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 422 return (winmdroot.Foundation.HRESULT)ex.HResult; 430 public unsafe winmdroot.Foundation.HRESULT get_Help(winmdroot.Foundation.BSTR* pszHelp) 432 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszHelp); 438 private static winmdroot.Foundation.HRESULT get_KeyboardShortcut(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszKeyboardShortcut) 442 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 451 return (winmdroot.Foundation.HRESULT)ex.HResult; 459 public unsafe winmdroot.Foundation.HRESULT get_KeyboardShortcut(winmdroot.Foundation.BSTR* pszKeyboardShortcut) 461 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszKeyboardShortcut); 467 private static winmdroot.Foundation.HRESULT GetSelection(ILegacyIAccessibleProvider* pThis, winmdroot.System.Com.SAFEARRAY** pvarSelectedChildren) 471 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 480 return (winmdroot.Foundation.HRESULT)ex.HResult; 494 ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 501 private static winmdroot.Foundation.HRESULT get_DefaultAction(ILegacyIAccessibleProvider* pThis, winmdroot.Foundation.BSTR* pszDefaultAction) 505 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 514 return (winmdroot.Foundation.HRESULT)ex.HResult; 522 public unsafe winmdroot.Foundation.HRESULT get_DefaultAction(winmdroot.Foundation.BSTR* pszDefaultAction) 524 return ((delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ILegacyIAccessibleProvider*)Unsafe.AsPointer(ref this), pszDefaultAction); 527 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 531 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 548 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 554 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,int ,winmdroot.Foundation.HRESULT> Select_4; 556 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.HRESULT> DoDefaultAction_5; 558 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetValue_6; 560 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.UI.Accessibility.IAccessible** ,winmdroot.Foundation.HRESULT> GetIAccessible_7; 562 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,int* ,winmdroot.Foundation.HRESULT> get_ChildId_8; 564 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_9; 566 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Value_10; 568 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Description_11; 570 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,uint* ,winmdroot.Foundation.HRESULT> get_Role_12; 572 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,uint* ,winmdroot.Foundation.HRESULT> get_State_13; 574 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Help_14; 576 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_KeyboardShortcut_15; 578 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetSelection_16; 580 internal delegate *unmanaged [Stdcall]<ILegacyIAccessibleProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_DefaultAction_17; 620winmdroot.Foundation.HRESULT Select(int flagsSelect); 623winmdroot.Foundation.HRESULT DoDefaultAction(); 626winmdroot.Foundation.HRESULT SetValue(winmdroot.Foundation.PCWSTR szValue); 629 unsafe winmdroot.Foundation.HRESULT GetIAccessible(winmdroot.UI.Accessibility.IAccessible** ppAccessible); 632 unsafe winmdroot.Foundation.HRESULT get_ChildId(int* pRetVal); 635 unsafe winmdroot.Foundation.HRESULT get_Name(winmdroot.Foundation.BSTR* pszName); 638 unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pszValue); 641 unsafe winmdroot.Foundation.HRESULT get_Description(winmdroot.Foundation.BSTR* pszDescription); 644 unsafe winmdroot.Foundation.HRESULT get_Role(uint* pdwRole); 647 unsafe winmdroot.Foundation.HRESULT get_State(uint* pdwState); 650 unsafe winmdroot.Foundation.HRESULT get_Help(winmdroot.Foundation.BSTR* pszHelp); 653 unsafe winmdroot.Foundation.HRESULT get_KeyboardShortcut(winmdroot.Foundation.BSTR* pszKeyboardShortcut); 656 unsafe winmdroot.Foundation.HRESULT GetSelection(winmdroot.System.Com.SAFEARRAY** pvarSelectedChildren); 659 unsafe winmdroot.Foundation.HRESULT get_DefaultAction(winmdroot.Foundation.BSTR* pszDefaultAction);
Windows.Win32.ILockBytes.g.cs (49)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ILockBytes*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ILockBytes*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT ReadAt(ILockBytes* pThis, ulong ulOffset, void* pv, uint cb, [Optional] uint* pcbRead) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ILockBytes*)Unsafe.AsPointer(ref this), ulOffset, pv, cb, pcbRead).ThrowOnFailure(); 95 private static winmdroot.Foundation.HRESULT WriteAt(ILockBytes* pThis, ulong ulOffset, void* pv, uint cb, [Optional] uint* pcbWritten) 99 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 108 return (winmdroot.Foundation.HRESULT)ex.HResult; 126 ((delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ILockBytes*)Unsafe.AsPointer(ref this), ulOffset, pv, cb, pcbWritten).ThrowOnFailure(); 132 private static winmdroot.Foundation.HRESULT Flush(ILockBytes* pThis) 136 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 145 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 ((delegate *unmanaged [Stdcall]<ILockBytes*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ILockBytes*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 165 private static winmdroot.Foundation.HRESULT SetSize(ILockBytes* pThis, ulong cb) 169 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 178 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ILockBytes*)Unsafe.AsPointer(ref this), cb).ThrowOnFailure(); 199 private static winmdroot.Foundation.HRESULT LockRegion(ILockBytes* pThis, ulong libOffset, ulong cb, uint dwLockType) 203 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 212 return (winmdroot.Foundation.HRESULT)ex.HResult; 232 ((delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ILockBytes*)Unsafe.AsPointer(ref this), libOffset, cb, dwLockType).ThrowOnFailure(); 238 private static winmdroot.Foundation.HRESULT UnlockRegion(ILockBytes* pThis, ulong libOffset, ulong cb, uint dwLockType) 242 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 251 return (winmdroot.Foundation.HRESULT)ex.HResult; 271 ((delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ILockBytes*)Unsafe.AsPointer(ref this), libOffset, cb, dwLockType).ThrowOnFailure(); 286 private static winmdroot.Foundation.HRESULT Stat(ILockBytes* pThis, winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag) 290 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 299 return (winmdroot.Foundation.HRESULT)ex.HResult; 321 ((delegate *unmanaged [Stdcall]<ILockBytes*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ILockBytes*)Unsafe.AsPointer(ref this), pstatstg, grfStatFlag).ThrowOnFailure(); 324 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 328 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 345 internal delegate *unmanaged [Stdcall]<ILockBytes*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 351 internal delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> ReadAt_4; 353 internal delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,void* ,uint ,uint* ,winmdroot.Foundation.HRESULT> WriteAt_5; 355 internal delegate *unmanaged [Stdcall]<ILockBytes*,winmdroot.Foundation.HRESULT> Flush_6; 357 internal delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,winmdroot.Foundation.HRESULT> SetSize_7; 359 internal delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT> LockRegion_8; 361 internal delegate *unmanaged [Stdcall]<ILockBytes*,ulong ,ulong ,uint ,winmdroot.Foundation.HRESULT> UnlockRegion_9; 363 internal delegate *unmanaged [Stdcall]<ILockBytes*,winmdroot.System.Com.STATSTG* ,uint ,winmdroot.Foundation.HRESULT> Stat_10; 396 unsafe winmdroot.Foundation.HRESULT ReadAt(ulong ulOffset, void* pv, uint cb, [Optional] uint* pcbRead); 399 unsafe winmdroot.Foundation.HRESULT WriteAt(ulong ulOffset, void* pv, uint cb, [Optional] uint* pcbWritten); 402winmdroot.Foundation.HRESULT Flush(); 405winmdroot.Foundation.HRESULT SetSize(ulong cb); 408winmdroot.Foundation.HRESULT LockRegion(ulong libOffset, ulong cb, uint dwLockType); 411winmdroot.Foundation.HRESULT UnlockRegion(ulong libOffset, ulong cb, uint dwLockType); 414 unsafe winmdroot.Foundation.HRESULT Stat(winmdroot.System.Com.STATSTG* pstatstg, uint grfStatFlag);
Windows.Win32.IMessageFilter.g.cs (10)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IMessageFilter*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IMessageFilter*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 141 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 170 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 174 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 191 internal delegate *unmanaged [Stdcall]<IMessageFilter*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1;
Windows.Win32.IModalWindow.g.cs (13)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IModalWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IModalWindow*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Show(IModalWindow* pThis, winmdroot.Foundation.HWND hwndOwner) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 89 ((delegate *unmanaged [Stdcall]<IModalWindow*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IModalWindow*)Unsafe.AsPointer(ref this), hwndOwner).ThrowOnFailure(); 92 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 96 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 113 internal delegate *unmanaged [Stdcall]<IModalWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 119 internal delegate *unmanaged [Stdcall]<IModalWindow*,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> Show_4; 146winmdroot.Foundation.HRESULT Show(winmdroot.Foundation.HWND hwndOwner);
Windows.Win32.IMultipleViewProvider.g.cs (34)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IMultipleViewProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IMultipleViewProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetViewName(IMultipleViewProvider* pThis, int viewId, winmdroot.Foundation.BSTR* pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 92 ((delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IMultipleViewProvider*)Unsafe.AsPointer(ref this), viewId, &__retVal).ThrowOnFailure(); 99 private static winmdroot.Foundation.HRESULT SetCurrentView(IMultipleViewProvider* pThis, int viewId) 103 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 112 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 ((delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IMultipleViewProvider*)Unsafe.AsPointer(ref this), viewId).ThrowOnFailure(); 135 internal unsafe winmdroot.Foundation.HRESULT get_CurrentView(out int pRetVal) 139 winmdroot.Foundation.HRESULT __result = this.get_CurrentView(pRetValLocal); 147 private static winmdroot.Foundation.HRESULT get_CurrentView(IMultipleViewProvider* pThis, int* pRetVal) 151 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 160 return (winmdroot.Foundation.HRESULT)ex.HResult; 166 public unsafe winmdroot.Foundation.HRESULT get_CurrentView(int* pRetVal) 168 return ((delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IMultipleViewProvider*)Unsafe.AsPointer(ref this), pRetVal); 174 private static winmdroot.Foundation.HRESULT GetSupportedViews(IMultipleViewProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 178 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 187 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 ((delegate *unmanaged [Stdcall]<IMultipleViewProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IMultipleViewProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 208 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 212 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 229 internal delegate *unmanaged [Stdcall]<IMultipleViewProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 235 internal delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetViewName_4; 237 internal delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int ,winmdroot.Foundation.HRESULT> SetCurrentView_5; 239 internal delegate *unmanaged [Stdcall]<IMultipleViewProvider*,int* ,winmdroot.Foundation.HRESULT> get_CurrentView_6; 241 internal delegate *unmanaged [Stdcall]<IMultipleViewProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetSupportedViews_7; 271 unsafe winmdroot.Foundation.HRESULT GetViewName(int viewId, winmdroot.Foundation.BSTR* pRetVal); 274winmdroot.Foundation.HRESULT SetCurrentView(int viewId); 277 unsafe winmdroot.Foundation.HRESULT get_CurrentView(int* pRetVal); 280 unsafe winmdroot.Foundation.HRESULT GetSupportedViews(winmdroot.System.Com.SAFEARRAY** pRetVal);
Windows.Win32.IOleAdviseHolder.g.cs (49)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleAdviseHolder*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IAdviseSink* pAdvise, out uint pdwConnection) 60 winmdroot.Foundation.HRESULT __result = this.Advise(pAdvise, pdwConnectionLocal); 68 private static winmdroot.Foundation.HRESULT Advise(IOleAdviseHolder* pThis, winmdroot.System.Com.IAdviseSink* pAdvise, uint* pdwConnection) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IAdviseSink* pAdvise, uint* pdwConnection) 98 return ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleAdviseHolder*)Unsafe.AsPointer(ref this), pAdvise, pdwConnection); 104 private static winmdroot.Foundation.HRESULT Unadvise(IOleAdviseHolder* pThis, uint dwConnection) 108 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 public winmdroot.Foundation.HRESULT Unadvise(uint dwConnection) 133 return ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleAdviseHolder*)Unsafe.AsPointer(ref this), dwConnection); 139 private static winmdroot.Foundation.HRESULT EnumAdvise(IOleAdviseHolder* pThis, winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise) 143 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleAdviseHolder*)Unsafe.AsPointer(ref this), ppenumAdvise).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT SendOnRename(IOleAdviseHolder* pThis, winmdroot.System.Com.IMoniker* pmk) 178 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 187 return (winmdroot.Foundation.HRESULT)ex.HResult; 197 ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleAdviseHolder*)Unsafe.AsPointer(ref this), pmk).ThrowOnFailure(); 203 private static winmdroot.Foundation.HRESULT SendOnSave(IOleAdviseHolder* pThis) 207 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 216 return (winmdroot.Foundation.HRESULT)ex.HResult; 226 public winmdroot.Foundation.HRESULT SendOnSave() 228 return ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleAdviseHolder*)Unsafe.AsPointer(ref this)); 234 private static winmdroot.Foundation.HRESULT SendOnClose(IOleAdviseHolder* pThis) 238 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 247 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 public winmdroot.Foundation.HRESULT SendOnClose() 256 return ((delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleAdviseHolder*)Unsafe.AsPointer(ref this)); 259 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 263 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 280 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 286 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.HRESULT> Advise_4; 288 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,uint ,winmdroot.Foundation.HRESULT> Unadvise_5; 290 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT> EnumAdvise_6; 292 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT> SendOnRename_7; 294 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.Foundation.HRESULT> SendOnSave_8; 296 internal delegate *unmanaged [Stdcall]<IOleAdviseHolder*,winmdroot.Foundation.HRESULT> SendOnClose_9; 328 unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IAdviseSink* pAdvise, uint* pdwConnection); 331winmdroot.Foundation.HRESULT Unadvise(uint dwConnection); 334 unsafe winmdroot.Foundation.HRESULT EnumAdvise(winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise); 337 unsafe winmdroot.Foundation.HRESULT SendOnRename(winmdroot.System.Com.IMoniker* pmk); 340winmdroot.Foundation.HRESULT SendOnSave(); 343winmdroot.Foundation.HRESULT SendOnClose();
Windows.Win32.IOleClientSite.g.cs (43)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleClientSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleClientSite*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT SaveObject(IOleClientSite* pThis) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 ((delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleClientSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT GetMoniker(IOleClientSite* pThis, uint dwAssign, uint dwWhichMoniker, winmdroot.System.Com.IMoniker** ppmk) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 123 ((delegate *unmanaged [Stdcall]<IOleClientSite*,uint ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleClientSite*)Unsafe.AsPointer(ref this), dwAssign, dwWhichMoniker, ppmk).ThrowOnFailure(); 129 private static winmdroot.Foundation.HRESULT GetContainer(IOleClientSite* pThis, winmdroot.System.Ole.IOleContainer** ppContainer) 133 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 142 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 ((delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.System.Ole.IOleContainer** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleClientSite*)Unsafe.AsPointer(ref this), ppContainer).ThrowOnFailure(); 164 private static winmdroot.Foundation.HRESULT ShowObject(IOleClientSite* pThis) 168 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleClientSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 198 private static winmdroot.Foundation.HRESULT OnShowWindow(IOleClientSite* pThis, winmdroot.Foundation.BOOL fShow) 202 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return (winmdroot.Foundation.HRESULT)ex.HResult; 221 ((delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleClientSite*)Unsafe.AsPointer(ref this), fShow).ThrowOnFailure(); 227 private static winmdroot.Foundation.HRESULT RequestNewObjectLayout(IOleClientSite* pThis) 231 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 240 return (winmdroot.Foundation.HRESULT)ex.HResult; 252 ((delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleClientSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 255 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 259 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 276 internal delegate *unmanaged [Stdcall]<IOleClientSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 282 internal delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT> SaveObject_4; 284 internal delegate *unmanaged [Stdcall]<IOleClientSite*,uint ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> GetMoniker_5; 286 internal delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.System.Ole.IOleContainer** ,winmdroot.Foundation.HRESULT> GetContainer_6; 288 internal delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT> ShowObject_7; 290 internal delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> OnShowWindow_8; 292 internal delegate *unmanaged [Stdcall]<IOleClientSite*,winmdroot.Foundation.HRESULT> RequestNewObjectLayout_9; 324winmdroot.Foundation.HRESULT SaveObject(); 327 unsafe winmdroot.Foundation.HRESULT GetMoniker(uint dwAssign, uint dwWhichMoniker, winmdroot.System.Com.IMoniker** ppmk); 330 unsafe winmdroot.Foundation.HRESULT GetContainer(winmdroot.System.Ole.IOleContainer** ppContainer); 333winmdroot.Foundation.HRESULT ShowObject(); 336winmdroot.Foundation.HRESULT OnShowWindow(winmdroot.Foundation.BOOL fShow); 339winmdroot.Foundation.HRESULT RequestNewObjectLayout();
Windows.Win32.IOleCommandTarget.g.cs (25)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleCommandTarget*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleCommandTarget*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT QueryStatus(in global::System.Guid pguidCmdGroup, uint cCmds, ref winmdroot.System.Ole.OLECMD prgCmds, winmdroot.System.Ole.OLECMDTEXT* pCmdText) 62 winmdroot.Foundation.HRESULT __result = this.QueryStatus(pguidCmdGroupLocal, cCmds, prgCmdsLocal, pCmdText); 71 private static winmdroot.Foundation.HRESULT QueryStatus(IOleCommandTarget* pThis, global::System.Guid* pguidCmdGroup, uint cCmds, winmdroot.System.Ole.OLECMD* prgCmds, winmdroot.System.Ole.OLECMDTEXT* pCmdText) 75 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 98 public unsafe winmdroot.Foundation.HRESULT QueryStatus(global::System.Guid* pguidCmdGroup, uint cCmds, winmdroot.System.Ole.OLECMD* prgCmds, winmdroot.System.Ole.OLECMDTEXT* pCmdText) 100 return ((delegate *unmanaged [Stdcall]<IOleCommandTarget*,global::System.Guid* ,uint ,winmdroot.System.Ole.OLECMD* ,winmdroot.System.Ole.OLECMDTEXT* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleCommandTarget*)Unsafe.AsPointer(ref this), pguidCmdGroup, cCmds, prgCmds, pCmdText); 104 internal unsafe winmdroot.Foundation.HRESULT Exec(in global::System.Guid pguidCmdGroup, uint nCmdID, uint nCmdexecopt, in winmdroot.System.Variant.VARIANT pvaIn, ref winmdroot.System.Variant.VARIANT pvaOut) 112 winmdroot.Foundation.HRESULT __result = this.Exec(pguidCmdGroupLocal, nCmdID, nCmdexecopt, pvaInLocal, pvaOutLocal); 122 private static winmdroot.Foundation.HRESULT Exec(IOleCommandTarget* pThis, global::System.Guid* pguidCmdGroup, uint nCmdID, uint nCmdexecopt, winmdroot.System.Variant.VARIANT* pvaIn, winmdroot.System.Variant.VARIANT* pvaOut) 126 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 135 return (winmdroot.Foundation.HRESULT)ex.HResult; 153 public unsafe winmdroot.Foundation.HRESULT Exec(global::System.Guid* pguidCmdGroup, uint nCmdID, uint nCmdexecopt, winmdroot.System.Variant.VARIANT* pvaIn, winmdroot.System.Variant.VARIANT* pvaOut) 155 return ((delegate *unmanaged [Stdcall]<IOleCommandTarget*,global::System.Guid* ,uint ,uint ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleCommandTarget*)Unsafe.AsPointer(ref this), pguidCmdGroup, nCmdID, nCmdexecopt, pvaIn, pvaOut); 158 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 162 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 179 internal delegate *unmanaged [Stdcall]<IOleCommandTarget*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 185 internal delegate *unmanaged [Stdcall]<IOleCommandTarget*,global::System.Guid* ,uint ,winmdroot.System.Ole.OLECMD* ,winmdroot.System.Ole.OLECMDTEXT* ,winmdroot.Foundation.HRESULT> QueryStatus_4; 187 internal delegate *unmanaged [Stdcall]<IOleCommandTarget*,global::System.Guid* ,uint ,uint ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Exec_5; 215 unsafe winmdroot.Foundation.HRESULT QueryStatus(global::System.Guid* pguidCmdGroup, uint cCmds, winmdroot.System.Ole.OLECMD* prgCmds, winmdroot.System.Ole.OLECMDTEXT* pCmdText); 218 unsafe winmdroot.Foundation.HRESULT Exec(global::System.Guid* pguidCmdGroup, uint nCmdID, uint nCmdexecopt, winmdroot.System.Variant.VARIANT* pvaIn, winmdroot.System.Variant.VARIANT* pvaOut);
Windows.Win32.IOleContainer.g.cs (25)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleContainer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleContainer*)Unsafe.AsPointer(ref this), riid, ppvObject); 67 private static winmdroot.Foundation.HRESULT ParseDisplayName(IOleContainer* pThis, winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut) 71 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 80 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 ((delegate *unmanaged [Stdcall]<IOleContainer*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleContainer*)Unsafe.AsPointer(ref this), pbc, pszDisplayName, pchEaten, ppmkOut).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT EnumObjects(IOleContainer* pThis, uint grfFlags, winmdroot.System.Com.IEnumUnknown** ppenum) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 119 ((delegate *unmanaged [Stdcall]<IOleContainer*,uint ,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleContainer*)Unsafe.AsPointer(ref this), grfFlags, ppenum).ThrowOnFailure(); 125 private static winmdroot.Foundation.HRESULT LockContainer(IOleContainer* pThis, winmdroot.Foundation.BOOL fLock) 129 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 138 return (winmdroot.Foundation.HRESULT)ex.HResult; 151 ((delegate *unmanaged [Stdcall]<IOleContainer*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleContainer*)Unsafe.AsPointer(ref this), fLock).ThrowOnFailure(); 154 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 158 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 175 internal delegate *unmanaged [Stdcall]<IOleContainer*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 181 internal delegate *unmanaged [Stdcall]<IOleContainer*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> ParseDisplayName_4; 183 internal delegate *unmanaged [Stdcall]<IOleContainer*,uint ,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.HRESULT> EnumObjects_5; 185 internal delegate *unmanaged [Stdcall]<IOleContainer*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> LockContainer_6; 214 unsafe new winmdroot.Foundation.HRESULT ParseDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut); 217 unsafe winmdroot.Foundation.HRESULT EnumObjects(uint grfFlags, winmdroot.System.Com.IEnumUnknown** ppenum); 220winmdroot.Foundation.HRESULT LockContainer(winmdroot.Foundation.BOOL fLock);
Windows.Win32.IOleControl.g.cs (39)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleControl*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleControl*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetControlInfo(ref winmdroot.System.Ole.CONTROLINFO pCI) 60 winmdroot.Foundation.HRESULT __result = this.GetControlInfo(pCILocal); 68 private static winmdroot.Foundation.HRESULT GetControlInfo(IOleControl* pThis, winmdroot.System.Ole.CONTROLINFO* pCI) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 94 public unsafe winmdroot.Foundation.HRESULT GetControlInfo(winmdroot.System.Ole.CONTROLINFO* pCI) 96 return ((delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.System.Ole.CONTROLINFO* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleControl*)Unsafe.AsPointer(ref this), pCI); 100 internal unsafe winmdroot.Foundation.HRESULT OnMnemonic(in winmdroot.UI.WindowsAndMessaging.MSG pMsg) 104 winmdroot.Foundation.HRESULT __result = this.OnMnemonic(pMsgLocal); 112 private static winmdroot.Foundation.HRESULT OnMnemonic(IOleControl* pThis, winmdroot.UI.WindowsAndMessaging.MSG* pMsg) 116 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 125 return (winmdroot.Foundation.HRESULT)ex.HResult; 140 public unsafe winmdroot.Foundation.HRESULT OnMnemonic(winmdroot.UI.WindowsAndMessaging.MSG* pMsg) 142 return ((delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleControl*)Unsafe.AsPointer(ref this), pMsg); 148 private static winmdroot.Foundation.HRESULT OnAmbientPropertyChange(IOleControl* pThis, int dispID) 152 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 161 return (winmdroot.Foundation.HRESULT)ex.HResult; 172 public winmdroot.Foundation.HRESULT OnAmbientPropertyChange(int dispID) 174 return ((delegate *unmanaged [Stdcall]<IOleControl*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleControl*)Unsafe.AsPointer(ref this), dispID); 180 private static winmdroot.Foundation.HRESULT FreezeEvents(IOleControl* pThis, winmdroot.Foundation.BOOL bFreeze) 184 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 193 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 public winmdroot.Foundation.HRESULT FreezeEvents(winmdroot.Foundation.BOOL bFreeze) 206 return ((delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleControl*)Unsafe.AsPointer(ref this), bFreeze); 209 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 213 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 230 internal delegate *unmanaged [Stdcall]<IOleControl*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 236 internal delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.System.Ole.CONTROLINFO* ,winmdroot.Foundation.HRESULT> GetControlInfo_4; 238 internal delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.Foundation.HRESULT> OnMnemonic_5; 240 internal delegate *unmanaged [Stdcall]<IOleControl*,int ,winmdroot.Foundation.HRESULT> OnAmbientPropertyChange_6; 242 internal delegate *unmanaged [Stdcall]<IOleControl*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> FreezeEvents_7; 272 unsafe winmdroot.Foundation.HRESULT GetControlInfo(winmdroot.System.Ole.CONTROLINFO* pCI); 275 unsafe winmdroot.Foundation.HRESULT OnMnemonic(winmdroot.UI.WindowsAndMessaging.MSG* pMsg); 278winmdroot.Foundation.HRESULT OnAmbientPropertyChange(int dispID); 281winmdroot.Foundation.HRESULT FreezeEvents(winmdroot.Foundation.BOOL bFreeze);
Windows.Win32.IOleControlSite.g.cs (60)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleControlSite*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT OnControlInfoChanged(IOleControlSite* pThis) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 80 public winmdroot.Foundation.HRESULT OnControlInfoChanged() 82 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleControlSite*)Unsafe.AsPointer(ref this)); 88 private static winmdroot.Foundation.HRESULT LockInPlaceActive(IOleControlSite* pThis, winmdroot.Foundation.BOOL fLock) 92 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 101 return (winmdroot.Foundation.HRESULT)ex.HResult; 112 public winmdroot.Foundation.HRESULT LockInPlaceActive(winmdroot.Foundation.BOOL fLock) 114 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleControlSite*)Unsafe.AsPointer(ref this), fLock); 120 private static winmdroot.Foundation.HRESULT GetExtendedControl(IOleControlSite* pThis, winmdroot.System.Com.IDispatch** ppDisp) 124 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 133 return (winmdroot.Foundation.HRESULT)ex.HResult; 148 public unsafe winmdroot.Foundation.HRESULT GetExtendedControl(winmdroot.System.Com.IDispatch** ppDisp) 150 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleControlSite*)Unsafe.AsPointer(ref this), ppDisp); 154 internal unsafe winmdroot.Foundation.HRESULT TransformCoords(ref winmdroot.Foundation.POINTL pPtlHimetric, ref global::System.Drawing.PointF pPtfContainer, uint dwFlags) 160 winmdroot.Foundation.HRESULT __result = this.TransformCoords(pPtlHimetricLocal, pPtfContainerLocal, dwFlags); 169 private static winmdroot.Foundation.HRESULT TransformCoords(IOleControlSite* pThis, winmdroot.Foundation.POINTL* pPtlHimetric, global::System.Drawing.PointF* pPtfContainer, uint dwFlags) 173 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 182 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 public unsafe winmdroot.Foundation.HRESULT TransformCoords(winmdroot.Foundation.POINTL* pPtlHimetric, global::System.Drawing.PointF* pPtfContainer, uint dwFlags) 197 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.POINTL* ,global::System.Drawing.PointF* ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleControlSite*)Unsafe.AsPointer(ref this), pPtlHimetric, pPtfContainer, dwFlags); 201 internal unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(in winmdroot.UI.WindowsAndMessaging.MSG pMsg, winmdroot.System.Ole.KEYMODIFIERS grfModifiers) 205 winmdroot.Foundation.HRESULT __result = this.TranslateAccelerator(pMsgLocal, grfModifiers); 213 private static winmdroot.Foundation.HRESULT TranslateAccelerator(IOleControlSite* pThis, winmdroot.UI.WindowsAndMessaging.MSG* pMsg, winmdroot.System.Ole.KEYMODIFIERS grfModifiers) 217 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 226 return (winmdroot.Foundation.HRESULT)ex.HResult; 238 public unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(winmdroot.UI.WindowsAndMessaging.MSG* pMsg, winmdroot.System.Ole.KEYMODIFIERS grfModifiers) 240 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.System.Ole.KEYMODIFIERS ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleControlSite*)Unsafe.AsPointer(ref this), pMsg, grfModifiers); 246 private static winmdroot.Foundation.HRESULT OnFocus(IOleControlSite* pThis, winmdroot.Foundation.BOOL fGotFocus) 250 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 259 return (winmdroot.Foundation.HRESULT)ex.HResult; 267 public winmdroot.Foundation.HRESULT OnFocus(winmdroot.Foundation.BOOL fGotFocus) 269 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleControlSite*)Unsafe.AsPointer(ref this), fGotFocus); 275 private static winmdroot.Foundation.HRESULT ShowPropertyFrame(IOleControlSite* pThis) 279 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 288 return (winmdroot.Foundation.HRESULT)ex.HResult; 298 public winmdroot.Foundation.HRESULT ShowPropertyFrame() 300 return ((delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleControlSite*)Unsafe.AsPointer(ref this)); 303 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 307 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 324 internal delegate *unmanaged [Stdcall]<IOleControlSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 330 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.HRESULT> OnControlInfoChanged_4; 332 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> LockInPlaceActive_5; 334 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> GetExtendedControl_6; 336 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.POINTL* ,global::System.Drawing.PointF* ,uint ,winmdroot.Foundation.HRESULT> TransformCoords_7; 338 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.System.Ole.KEYMODIFIERS ,winmdroot.Foundation.HRESULT> TranslateAccelerator_8; 340 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> OnFocus_9; 342 internal delegate *unmanaged [Stdcall]<IOleControlSite*,winmdroot.Foundation.HRESULT> ShowPropertyFrame_10; 375winmdroot.Foundation.HRESULT OnControlInfoChanged(); 378winmdroot.Foundation.HRESULT LockInPlaceActive(winmdroot.Foundation.BOOL fLock); 381 unsafe winmdroot.Foundation.HRESULT GetExtendedControl(winmdroot.System.Com.IDispatch** ppDisp); 384 unsafe winmdroot.Foundation.HRESULT TransformCoords(winmdroot.Foundation.POINTL* pPtlHimetric, global::System.Drawing.PointF* pPtfContainer, uint dwFlags); 387 unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(winmdroot.UI.WindowsAndMessaging.MSG* pMsg, winmdroot.System.Ole.KEYMODIFIERS grfModifiers); 390winmdroot.Foundation.HRESULT OnFocus(winmdroot.Foundation.BOOL fGotFocus); 393winmdroot.Foundation.HRESULT ShowPropertyFrame();
Windows.Win32.IOleInPlaceActiveObject.g.cs (52)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 67 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.HWND* phwnd) 71 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 80 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), phwnd).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.BOOL fEnterMode) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), fEnterMode).ThrowOnFailure(); 115 internal unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(winmdroot.UI.WindowsAndMessaging.MSG? lpmsg) 118 winmdroot.Foundation.HRESULT __result = this.TranslateAccelerator(lpmsg.HasValue ? &lpmsgLocal : null); 125 private static winmdroot.Foundation.HRESULT TranslateAccelerator(IOleInPlaceActiveObject* pThis, [Optional] winmdroot.UI.WindowsAndMessaging.MSG* lpmsg) 129 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 138 return (winmdroot.Foundation.HRESULT)ex.HResult; 152 public unsafe winmdroot.Foundation.HRESULT TranslateAccelerator([Optional] winmdroot.UI.WindowsAndMessaging.MSG* lpmsg) 154 return ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), lpmsg); 160 private static winmdroot.Foundation.HRESULT OnFrameWindowActivate(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.BOOL fActivate) 164 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 173 return (winmdroot.Foundation.HRESULT)ex.HResult; 185 ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), fActivate).ThrowOnFailure(); 191 private static winmdroot.Foundation.HRESULT OnDocWindowActivate(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.BOOL fActivate) 195 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 204 return (winmdroot.Foundation.HRESULT)ex.HResult; 217 ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), fActivate).ThrowOnFailure(); 232 private static winmdroot.Foundation.HRESULT ResizeBorder(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.RECT* prcBorder, winmdroot.System.Ole.IOleInPlaceUIWindow* pUIWindow, winmdroot.Foundation.BOOL fFrameWindow) 236 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 245 return (winmdroot.Foundation.HRESULT)ex.HResult; 264 ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.RECT* ,winmdroot.System.Ole.IOleInPlaceUIWindow* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), prcBorder, pUIWindow, fFrameWindow).ThrowOnFailure(); 270 private static winmdroot.Foundation.HRESULT EnableModeless(IOleInPlaceActiveObject* pThis, winmdroot.Foundation.BOOL fEnable) 274 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 283 return (winmdroot.Foundation.HRESULT)ex.HResult; 295 ((delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleInPlaceActiveObject*)Unsafe.AsPointer(ref this), fEnable).ThrowOnFailure(); 298 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 302 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 319 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 325 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 327 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 329 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.Foundation.HRESULT> TranslateAccelerator_6; 331 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> OnFrameWindowActivate_7; 333 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> OnDocWindowActivate_8; 335 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.RECT* ,winmdroot.System.Ole.IOleInPlaceUIWindow* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ResizeBorder_9; 337 internal delegate *unmanaged [Stdcall]<IOleInPlaceActiveObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> EnableModeless_10; 370 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 373 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 376 unsafe winmdroot.Foundation.HRESULT TranslateAccelerator([Optional] winmdroot.UI.WindowsAndMessaging.MSG* lpmsg); 379winmdroot.Foundation.HRESULT OnFrameWindowActivate(winmdroot.Foundation.BOOL fActivate); 382winmdroot.Foundation.HRESULT OnDocWindowActivate(winmdroot.Foundation.BOOL fActivate); 385 unsafe winmdroot.Foundation.HRESULT ResizeBorder(winmdroot.Foundation.RECT* prcBorder, winmdroot.System.Ole.IOleInPlaceUIWindow* pUIWindow, winmdroot.Foundation.BOOL fFrameWindow); 388winmdroot.Foundation.HRESULT EnableModeless(winmdroot.Foundation.BOOL fEnable);
Windows.Win32.IOleInPlaceFrame.g.cs (107)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetWindow(out winmdroot.Foundation.HWND phwnd) 60 winmdroot.Foundation.HRESULT __result = this.GetWindow(phwndLocal); 68 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceFrame* pThis, winmdroot.Foundation.HWND* phwnd) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd) 87 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), phwnd); 93 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceFrame* pThis, winmdroot.Foundation.BOOL fEnterMode) 97 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 110 public winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode) 112 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), fEnterMode); 116 internal unsafe winmdroot.Foundation.HRESULT GetBorder(out winmdroot.Foundation.RECT lprectBorder) 120 winmdroot.Foundation.HRESULT __result = this.GetBorder(lprectBorderLocal); 128 private static winmdroot.Foundation.HRESULT GetBorder(IOleInPlaceFrame* pThis, winmdroot.Foundation.RECT* lprectBorder) 132 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 141 return (winmdroot.Foundation.HRESULT)ex.HResult; 145 public unsafe winmdroot.Foundation.HRESULT GetBorder(winmdroot.Foundation.RECT* lprectBorder) 147 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), lprectBorder); 151 internal unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(in winmdroot.Foundation.RECT pborderwidths) 155 winmdroot.Foundation.HRESULT __result = this.RequestBorderSpace(pborderwidthsLocal); 163 private static winmdroot.Foundation.HRESULT RequestBorderSpace(IOleInPlaceFrame* pThis, winmdroot.Foundation.RECT* pborderwidths) 167 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 180 public unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(winmdroot.Foundation.RECT* pborderwidths) 182 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), pborderwidths); 186 internal unsafe winmdroot.Foundation.HRESULT SetBorderSpace(in winmdroot.Foundation.RECT pborderwidths) 190 winmdroot.Foundation.HRESULT __result = this.SetBorderSpace(pborderwidthsLocal); 198 private static winmdroot.Foundation.HRESULT SetBorderSpace(IOleInPlaceFrame* pThis, winmdroot.Foundation.RECT* pborderwidths) 202 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return (winmdroot.Foundation.HRESULT)ex.HResult; 215 public unsafe winmdroot.Foundation.HRESULT SetBorderSpace(winmdroot.Foundation.RECT* pborderwidths) 217 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), pborderwidths); 221 internal unsafe winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, string pszObjName) 225 winmdroot.Foundation.HRESULT __result = this.SetActiveObject(pActiveObject, pszObjNameLocal); 233 private static winmdroot.Foundation.HRESULT SetActiveObject(IOleInPlaceFrame* pThis, winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName) 237 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 246 return (winmdroot.Foundation.HRESULT)ex.HResult; 250 public unsafe winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName) 252 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.System.Ole.IOleInPlaceActiveObject* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), pActiveObject, pszObjName); 256 internal unsafe winmdroot.Foundation.HRESULT InsertMenus(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, ref winmdroot.System.Ole.OLEMENUGROUPWIDTHS lpMenuWidths) 260 winmdroot.Foundation.HRESULT __result = this.InsertMenus(hmenuShared, lpMenuWidthsLocal); 268 private static winmdroot.Foundation.HRESULT InsertMenus(IOleInPlaceFrame* pThis, winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, winmdroot.System.Ole.OLEMENUGROUPWIDTHS* lpMenuWidths) 272 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 281 return (winmdroot.Foundation.HRESULT)ex.HResult; 296 public unsafe winmdroot.Foundation.HRESULT InsertMenus(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, winmdroot.System.Ole.OLEMENUGROUPWIDTHS* lpMenuWidths) 298 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.HMENU ,winmdroot.System.Ole.OLEMENUGROUPWIDTHS* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), hmenuShared, lpMenuWidths); 304 private static winmdroot.Foundation.HRESULT SetMenu(IOleInPlaceFrame* pThis, winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, nint holemenu, winmdroot.Foundation.HWND hwndActiveObject) 308 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 317 return (winmdroot.Foundation.HRESULT)ex.HResult; 333 public winmdroot.Foundation.HRESULT SetMenu(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, nint holemenu, winmdroot.Foundation.HWND hwndActiveObject) 335 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.HMENU ,nint ,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), hmenuShared, holemenu, hwndActiveObject); 341 private static winmdroot.Foundation.HRESULT RemoveMenus(IOleInPlaceFrame* pThis, winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared) 345 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 354 return (winmdroot.Foundation.HRESULT)ex.HResult; 368 public winmdroot.Foundation.HRESULT RemoveMenus(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared) 370 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.HMENU ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), hmenuShared); 374 internal unsafe winmdroot.Foundation.HRESULT SetStatusText(string pszStatusText) 378 winmdroot.Foundation.HRESULT __result = this.SetStatusText(pszStatusTextLocal); 386 private static winmdroot.Foundation.HRESULT SetStatusText(IOleInPlaceFrame* pThis, winmdroot.Foundation.PCWSTR pszStatusText) 390 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 399 return (winmdroot.Foundation.HRESULT)ex.HResult; 413 public winmdroot.Foundation.HRESULT SetStatusText(winmdroot.Foundation.PCWSTR pszStatusText) 415 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), pszStatusText); 421 private static winmdroot.Foundation.HRESULT EnableModeless(IOleInPlaceFrame* pThis, winmdroot.Foundation.BOOL fEnable) 425 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 434 return (winmdroot.Foundation.HRESULT)ex.HResult; 444 public winmdroot.Foundation.HRESULT EnableModeless(winmdroot.Foundation.BOOL fEnable) 446 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), fEnable); 450 internal unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(in winmdroot.UI.WindowsAndMessaging.MSG lpmsg, ushort wID) 454 winmdroot.Foundation.HRESULT __result = this.TranslateAccelerator(lpmsgLocal, wID); 462 private static winmdroot.Foundation.HRESULT TranslateAccelerator(IOleInPlaceFrame* pThis, winmdroot.UI.WindowsAndMessaging.MSG* lpmsg, ushort wID) 466 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 475 return (winmdroot.Foundation.HRESULT)ex.HResult; 492 public unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(winmdroot.UI.WindowsAndMessaging.MSG* lpmsg, ushort wID) 494 return ((delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.MSG* ,ushort ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IOleInPlaceFrame*)Unsafe.AsPointer(ref this), lpmsg, wID); 497 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 501 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 518 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 524 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 526 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 528 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> GetBorder_6; 530 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> RequestBorderSpace_7; 532 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> SetBorderSpace_8; 534 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.System.Ole.IOleInPlaceActiveObject* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetActiveObject_9; 536 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.HMENU ,winmdroot.System.Ole.OLEMENUGROUPWIDTHS* ,winmdroot.Foundation.HRESULT> InsertMenus_10; 538 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.HMENU ,nint ,winmdroot.Foundation.HWND ,winmdroot.Foundation.HRESULT> SetMenu_11; 540 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.HMENU ,winmdroot.Foundation.HRESULT> RemoveMenus_12; 542 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetStatusText_13; 544 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> EnableModeless_14; 546 internal delegate *unmanaged [Stdcall]<IOleInPlaceFrame*,winmdroot.UI.WindowsAndMessaging.MSG* ,ushort ,winmdroot.Foundation.HRESULT> TranslateAccelerator_15; 584 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 587 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 590 unsafe new winmdroot.Foundation.HRESULT GetBorder(winmdroot.Foundation.RECT* lprectBorder); 593 unsafe new winmdroot.Foundation.HRESULT RequestBorderSpace(winmdroot.Foundation.RECT* pborderwidths); 596 unsafe new winmdroot.Foundation.HRESULT SetBorderSpace(winmdroot.Foundation.RECT* pborderwidths); 599 unsafe new winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName); 602 unsafe winmdroot.Foundation.HRESULT InsertMenus(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, winmdroot.System.Ole.OLEMENUGROUPWIDTHS* lpMenuWidths); 605winmdroot.Foundation.HRESULT SetMenu(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, nint holemenu, winmdroot.Foundation.HWND hwndActiveObject); 608winmdroot.Foundation.HRESULT RemoveMenus(winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared); 611winmdroot.Foundation.HRESULT SetStatusText(winmdroot.Foundation.PCWSTR pszStatusText); 614winmdroot.Foundation.HRESULT EnableModeless(winmdroot.Foundation.BOOL fEnable); 617 unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(winmdroot.UI.WindowsAndMessaging.MSG* lpmsg, ushort wID);
Windows.Win32.IOleInPlaceObject.g.cs (51)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetWindow(out winmdroot.Foundation.HWND phwnd) 60 winmdroot.Foundation.HRESULT __result = this.GetWindow(phwndLocal); 68 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceObject* pThis, winmdroot.Foundation.HWND* phwnd) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd) 87 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceObject*)Unsafe.AsPointer(ref this), phwnd); 93 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceObject* pThis, winmdroot.Foundation.BOOL fEnterMode) 97 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 112 ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceObject*)Unsafe.AsPointer(ref this), fEnterMode).ThrowOnFailure(); 118 private static winmdroot.Foundation.HRESULT InPlaceDeactivate(IOleInPlaceObject* pThis) 122 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 131 return (winmdroot.Foundation.HRESULT)ex.HResult; 145 public winmdroot.Foundation.HRESULT InPlaceDeactivate() 147 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceObject*)Unsafe.AsPointer(ref this)); 153 private static winmdroot.Foundation.HRESULT UIDeactivate(IOleInPlaceObject* pThis) 157 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 166 return (winmdroot.Foundation.HRESULT)ex.HResult; 179 public winmdroot.Foundation.HRESULT UIDeactivate() 181 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceObject*)Unsafe.AsPointer(ref this)); 185 internal unsafe winmdroot.Foundation.HRESULT SetObjectRects(in winmdroot.Foundation.RECT lprcPosRect, in winmdroot.Foundation.RECT lprcClipRect) 191 winmdroot.Foundation.HRESULT __result = this.SetObjectRects(lprcPosRectLocal, lprcClipRectLocal); 200 private static winmdroot.Foundation.HRESULT SetObjectRects(IOleInPlaceObject* pThis, winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect) 204 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 213 return (winmdroot.Foundation.HRESULT)ex.HResult; 228 public unsafe winmdroot.Foundation.HRESULT SetObjectRects(winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect) 230 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceObject*)Unsafe.AsPointer(ref this), lprcPosRect, lprcClipRect); 236 private static winmdroot.Foundation.HRESULT ReactivateAndUndo(IOleInPlaceObject* pThis) 240 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 249 return (winmdroot.Foundation.HRESULT)ex.HResult; 261 ((delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleInPlaceObject*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 264 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 268 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 285 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 291 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 293 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 295 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT> InPlaceDeactivate_6; 297 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT> UIDeactivate_7; 299 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> SetObjectRects_8; 301 internal delegate *unmanaged [Stdcall]<IOleInPlaceObject*,winmdroot.Foundation.HRESULT> ReactivateAndUndo_9; 333 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 336 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 339winmdroot.Foundation.HRESULT InPlaceDeactivate(); 342winmdroot.Foundation.HRESULT UIDeactivate(); 345 unsafe winmdroot.Foundation.HRESULT SetObjectRects(winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect); 348winmdroot.Foundation.HRESULT ReactivateAndUndo();
Windows.Win32.IOleInPlaceObjectWindowless.g.cs (55)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this), riid, ppvObject); 67 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceObjectWindowless* pThis, winmdroot.Foundation.HWND* phwnd) 71 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 80 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this), phwnd).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceObjectWindowless* pThis, winmdroot.Foundation.BOOL fEnterMode) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this), fEnterMode).ThrowOnFailure(); 117 private static winmdroot.Foundation.HRESULT InPlaceDeactivate(IOleInPlaceObjectWindowless* pThis) 121 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 130 return (winmdroot.Foundation.HRESULT)ex.HResult; 136 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 142 private static winmdroot.Foundation.HRESULT UIDeactivate(IOleInPlaceObjectWindowless* pThis) 146 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 179 private static winmdroot.Foundation.HRESULT SetObjectRects(IOleInPlaceObjectWindowless* pThis, winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect) 183 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 192 return (winmdroot.Foundation.HRESULT)ex.HResult; 198 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this), lprcPosRect, lprcClipRect).ThrowOnFailure(); 204 private static winmdroot.Foundation.HRESULT ReactivateAndUndo(IOleInPlaceObjectWindowless* pThis) 208 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 217 return (winmdroot.Foundation.HRESULT)ex.HResult; 223 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 238 private static winmdroot.Foundation.HRESULT OnWindowMessage(IOleInPlaceObjectWindowless* pThis, uint msg, winmdroot.Foundation.WPARAM wParam, winmdroot.Foundation.LPARAM lParam, winmdroot.Foundation.LRESULT* plResult) 242 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 251 return (winmdroot.Foundation.HRESULT)ex.HResult; 271 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,uint ,winmdroot.Foundation.WPARAM ,winmdroot.Foundation.LPARAM ,winmdroot.Foundation.LRESULT* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this), msg, wParam, lParam, plResult).ThrowOnFailure(); 277 private static winmdroot.Foundation.HRESULT GetDropTarget(IOleInPlaceObjectWindowless* pThis, winmdroot.System.Ole.IDropTarget** ppDropTarget) 281 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 290 return (winmdroot.Foundation.HRESULT)ex.HResult; 307 ((delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.System.Ole.IDropTarget** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOleInPlaceObjectWindowless*)Unsafe.AsPointer(ref this), ppDropTarget).ThrowOnFailure(); 310 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 314 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 331 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 337 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 339 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 341 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT> InPlaceDeactivate_6; 343 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT> UIDeactivate_7; 345 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> SetObjectRects_8; 347 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.Foundation.HRESULT> ReactivateAndUndo_9; 349 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,uint ,winmdroot.Foundation.WPARAM ,winmdroot.Foundation.LPARAM ,winmdroot.Foundation.LRESULT* ,winmdroot.Foundation.HRESULT> OnWindowMessage_10; 351 internal delegate *unmanaged [Stdcall]<IOleInPlaceObjectWindowless*,winmdroot.System.Ole.IDropTarget** ,winmdroot.Foundation.HRESULT> GetDropTarget_11; 385 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 388 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 391 new winmdroot.Foundation.HRESULT InPlaceDeactivate(); 394 new winmdroot.Foundation.HRESULT UIDeactivate(); 397 unsafe new winmdroot.Foundation.HRESULT SetObjectRects(winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect); 400 new winmdroot.Foundation.HRESULT ReactivateAndUndo(); 403 unsafe winmdroot.Foundation.HRESULT OnWindowMessage(uint msg, winmdroot.Foundation.WPARAM wParam, winmdroot.Foundation.LPARAM lParam, winmdroot.Foundation.LRESULT* plResult); 406 unsafe winmdroot.Foundation.HRESULT GetDropTarget(winmdroot.System.Ole.IDropTarget** ppDropTarget);
Windows.Win32.IOleInPlaceSite.g.cs (93)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetWindow(out winmdroot.Foundation.HWND phwnd) 60 winmdroot.Foundation.HRESULT __result = this.GetWindow(phwndLocal); 68 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceSite* pThis, winmdroot.Foundation.HWND* phwnd) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd) 87 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), phwnd); 93 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceSite* pThis, winmdroot.Foundation.BOOL fEnterMode) 97 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 110 public winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode) 112 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), fEnterMode); 118 private static winmdroot.Foundation.HRESULT CanInPlaceActivate(IOleInPlaceSite* pThis) 122 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 131 return (winmdroot.Foundation.HRESULT)ex.HResult; 145 public winmdroot.Foundation.HRESULT CanInPlaceActivate() 147 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)); 153 private static winmdroot.Foundation.HRESULT OnInPlaceActivate(IOleInPlaceSite* pThis) 157 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 166 return (winmdroot.Foundation.HRESULT)ex.HResult; 179 public winmdroot.Foundation.HRESULT OnInPlaceActivate() 181 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)); 187 private static winmdroot.Foundation.HRESULT OnUIActivate(IOleInPlaceSite* pThis) 191 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 200 return (winmdroot.Foundation.HRESULT)ex.HResult; 213 public winmdroot.Foundation.HRESULT OnUIActivate() 215 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)); 219 internal unsafe winmdroot.Foundation.HRESULT GetWindowContext(winmdroot.System.Ole.IOleInPlaceFrame** ppFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** ppDoc, out winmdroot.Foundation.RECT lprcPosRect, out winmdroot.Foundation.RECT lprcClipRect, ref winmdroot.System.Ole.OLEINPLACEFRAMEINFO lpFrameInfo) 227 winmdroot.Foundation.HRESULT __result = this.GetWindowContext(ppFrame, ppDoc, lprcPosRectLocal, lprcClipRectLocal, lpFrameInfoLocal); 237 private static winmdroot.Foundation.HRESULT GetWindowContext(IOleInPlaceSite* pThis, winmdroot.System.Ole.IOleInPlaceFrame** ppFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** ppDoc, winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect, winmdroot.System.Ole.OLEINPLACEFRAMEINFO* lpFrameInfo) 241 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 250 return (winmdroot.Foundation.HRESULT)ex.HResult; 268 public unsafe winmdroot.Foundation.HRESULT GetWindowContext(winmdroot.System.Ole.IOleInPlaceFrame** ppFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** ppDoc, winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect, winmdroot.System.Ole.OLEINPLACEFRAMEINFO* lpFrameInfo) 270 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.System.Ole.IOleInPlaceFrame** ,winmdroot.System.Ole.IOleInPlaceUIWindow** ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.System.Ole.OLEINPLACEFRAMEINFO* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), ppFrame, ppDoc, lprcPosRect, lprcClipRect, lpFrameInfo); 276 private static winmdroot.Foundation.HRESULT Scroll(IOleInPlaceSite* pThis, winmdroot.Foundation.SIZE scrollExtant) 280 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 289 return (winmdroot.Foundation.HRESULT)ex.HResult; 303 public winmdroot.Foundation.HRESULT Scroll(winmdroot.Foundation.SIZE scrollExtant) 305 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.SIZE ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), scrollExtant); 311 private static winmdroot.Foundation.HRESULT OnUIDeactivate(IOleInPlaceSite* pThis, winmdroot.Foundation.BOOL fUndoable) 315 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 324 return (winmdroot.Foundation.HRESULT)ex.HResult; 340 ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), fUndoable).ThrowOnFailure(); 346 private static winmdroot.Foundation.HRESULT OnInPlaceDeactivate(IOleInPlaceSite* pThis) 350 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 359 return (winmdroot.Foundation.HRESULT)ex.HResult; 374 ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 380 private static winmdroot.Foundation.HRESULT DiscardUndoState(IOleInPlaceSite* pThis) 384 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 393 return (winmdroot.Foundation.HRESULT)ex.HResult; 408 ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 414 private static winmdroot.Foundation.HRESULT DeactivateAndUndo(IOleInPlaceSite* pThis) 418 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 427 return (winmdroot.Foundation.HRESULT)ex.HResult; 442 ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IOleInPlaceSite*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 446 internal unsafe winmdroot.Foundation.HRESULT OnPosRectChange(in winmdroot.Foundation.RECT lprcPosRect) 450 winmdroot.Foundation.HRESULT __result = this.OnPosRectChange(lprcPosRectLocal); 458 private static winmdroot.Foundation.HRESULT OnPosRectChange(IOleInPlaceSite* pThis, winmdroot.Foundation.RECT* lprcPosRect) 462 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 471 return (winmdroot.Foundation.HRESULT)ex.HResult; 485 public unsafe winmdroot.Foundation.HRESULT OnPosRectChange(winmdroot.Foundation.RECT* lprcPosRect) 487 return ((delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IOleInPlaceSite*)Unsafe.AsPointer(ref this), lprcPosRect); 490 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 494 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 511 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 517 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 519 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 521 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> CanInPlaceActivate_6; 523 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> OnInPlaceActivate_7; 525 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> OnUIActivate_8; 527 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.System.Ole.IOleInPlaceFrame** ,winmdroot.System.Ole.IOleInPlaceUIWindow** ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.RECT* ,winmdroot.System.Ole.OLEINPLACEFRAMEINFO* ,winmdroot.Foundation.HRESULT> GetWindowContext_9; 529 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.SIZE ,winmdroot.Foundation.HRESULT> Scroll_10; 531 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> OnUIDeactivate_11; 533 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> OnInPlaceDeactivate_12; 535 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> DiscardUndoState_13; 537 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.HRESULT> DeactivateAndUndo_14; 539 internal delegate *unmanaged [Stdcall]<IOleInPlaceSite*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> OnPosRectChange_15; 577 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 580 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 583winmdroot.Foundation.HRESULT CanInPlaceActivate(); 586winmdroot.Foundation.HRESULT OnInPlaceActivate(); 589winmdroot.Foundation.HRESULT OnUIActivate(); 592 unsafe winmdroot.Foundation.HRESULT GetWindowContext(winmdroot.System.Ole.IOleInPlaceFrame** ppFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** ppDoc, winmdroot.Foundation.RECT* lprcPosRect, winmdroot.Foundation.RECT* lprcClipRect, winmdroot.System.Ole.OLEINPLACEFRAMEINFO* lpFrameInfo); 595winmdroot.Foundation.HRESULT Scroll(winmdroot.Foundation.SIZE scrollExtant); 598winmdroot.Foundation.HRESULT OnUIDeactivate(winmdroot.Foundation.BOOL fUndoable); 601winmdroot.Foundation.HRESULT OnInPlaceDeactivate(); 604winmdroot.Foundation.HRESULT DiscardUndoState(); 607winmdroot.Foundation.HRESULT DeactivateAndUndo(); 610 unsafe winmdroot.Foundation.HRESULT OnPosRectChange(winmdroot.Foundation.RECT* lprcPosRect);
Windows.Win32.IOleInPlaceUIWindow.g.cs (59)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetWindow(out winmdroot.Foundation.HWND phwnd) 60 winmdroot.Foundation.HRESULT __result = this.GetWindow(phwndLocal); 68 private static winmdroot.Foundation.HRESULT GetWindow(IOleInPlaceUIWindow* pThis, winmdroot.Foundation.HWND* phwnd) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd) 87 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), phwnd); 93 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleInPlaceUIWindow* pThis, winmdroot.Foundation.BOOL fEnterMode) 97 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 110 public winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode) 112 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), fEnterMode); 116 internal unsafe winmdroot.Foundation.HRESULT GetBorder(out winmdroot.Foundation.RECT lprectBorder) 120 winmdroot.Foundation.HRESULT __result = this.GetBorder(lprectBorderLocal); 128 private static winmdroot.Foundation.HRESULT GetBorder(IOleInPlaceUIWindow* pThis, winmdroot.Foundation.RECT* lprectBorder) 132 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 141 return (winmdroot.Foundation.HRESULT)ex.HResult; 155 public unsafe winmdroot.Foundation.HRESULT GetBorder(winmdroot.Foundation.RECT* lprectBorder) 157 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), lprectBorder); 161 internal unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(in winmdroot.Foundation.RECT pborderwidths) 165 winmdroot.Foundation.HRESULT __result = this.RequestBorderSpace(pborderwidthsLocal); 173 private static winmdroot.Foundation.HRESULT RequestBorderSpace(IOleInPlaceUIWindow* pThis, winmdroot.Foundation.RECT* pborderwidths) 177 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 186 return (winmdroot.Foundation.HRESULT)ex.HResult; 202 public unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(winmdroot.Foundation.RECT* pborderwidths) 204 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), pborderwidths); 208 internal unsafe winmdroot.Foundation.HRESULT SetBorderSpace(in winmdroot.Foundation.RECT pborderwidths) 212 winmdroot.Foundation.HRESULT __result = this.SetBorderSpace(pborderwidthsLocal); 220 private static winmdroot.Foundation.HRESULT SetBorderSpace(IOleInPlaceUIWindow* pThis, winmdroot.Foundation.RECT* pborderwidths) 224 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 233 return (winmdroot.Foundation.HRESULT)ex.HResult; 248 public unsafe winmdroot.Foundation.HRESULT SetBorderSpace(winmdroot.Foundation.RECT* pborderwidths) 250 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), pborderwidths); 254 internal unsafe winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, string pszObjName) 258 winmdroot.Foundation.HRESULT __result = this.SetActiveObject(pActiveObject, pszObjNameLocal); 266 private static winmdroot.Foundation.HRESULT SetActiveObject(IOleInPlaceUIWindow* pThis, winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName) 270 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 279 return (winmdroot.Foundation.HRESULT)ex.HResult; 294 public unsafe winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName) 296 return ((delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.System.Ole.IOleInPlaceActiveObject* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleInPlaceUIWindow*)Unsafe.AsPointer(ref this), pActiveObject, pszObjName); 299 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 303 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 320 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 326 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 328 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 330 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> GetBorder_6; 332 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> RequestBorderSpace_7; 334 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> SetBorderSpace_8; 336 internal delegate *unmanaged [Stdcall]<IOleInPlaceUIWindow*,winmdroot.System.Ole.IOleInPlaceActiveObject* ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetActiveObject_9; 368 unsafe new winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 371 new winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 374 unsafe winmdroot.Foundation.HRESULT GetBorder(winmdroot.Foundation.RECT* lprectBorder); 377 unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(winmdroot.Foundation.RECT* pborderwidths); 380 unsafe winmdroot.Foundation.HRESULT SetBorderSpace(winmdroot.Foundation.RECT* pborderwidths); 383 unsafe winmdroot.Foundation.HRESULT SetActiveObject(winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, winmdroot.Foundation.PCWSTR pszObjName);
Windows.Win32.IOleObject.g.cs (147)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT SetClientSite(IOleObject* pThis, winmdroot.System.Ole.IOleClientSite* pClientSite) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT SetClientSite(winmdroot.System.Ole.IOleClientSite* pClientSite) 87 return ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IOleClientSite* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleObject*)Unsafe.AsPointer(ref this), pClientSite); 93 private static winmdroot.Foundation.HRESULT GetClientSite(IOleObject* pThis, winmdroot.System.Ole.IOleClientSite** ppClientSite) 97 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 117 public unsafe winmdroot.Foundation.HRESULT GetClientSite(winmdroot.System.Ole.IOleClientSite** ppClientSite) 119 return ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IOleClientSite** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleObject*)Unsafe.AsPointer(ref this), ppClientSite); 137 private static winmdroot.Foundation.HRESULT SetHostNames(IOleObject* pThis, winmdroot.Foundation.PCWSTR szContainerApp, winmdroot.Foundation.PCWSTR szContainerObj) 141 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 150 return (winmdroot.Foundation.HRESULT)ex.HResult; 166 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleObject*)Unsafe.AsPointer(ref this), szContainerApp, szContainerObj).ThrowOnFailure(); 172 private static winmdroot.Foundation.HRESULT Close(IOleObject* pThis, uint dwSaveOption) 176 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 185 return (winmdroot.Foundation.HRESULT)ex.HResult; 205 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleObject*)Unsafe.AsPointer(ref this), dwSaveOption).ThrowOnFailure(); 211 private static winmdroot.Foundation.HRESULT SetMoniker(IOleObject* pThis, uint dwWhichMoniker, winmdroot.System.Com.IMoniker* pmk) 215 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 224 return (winmdroot.Foundation.HRESULT)ex.HResult; 241 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleObject*)Unsafe.AsPointer(ref this), dwWhichMoniker, pmk).ThrowOnFailure(); 247 private static winmdroot.Foundation.HRESULT GetMoniker(IOleObject* pThis, uint dwAssign, uint dwWhichMoniker, winmdroot.System.Com.IMoniker** ppmk) 251 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 260 return (winmdroot.Foundation.HRESULT)ex.HResult; 276 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleObject*)Unsafe.AsPointer(ref this), dwAssign, dwWhichMoniker, ppmk).ThrowOnFailure(); 282 private static winmdroot.Foundation.HRESULT InitFromData(IOleObject* pThis, winmdroot.System.Com.IDataObject* pDataObject, winmdroot.Foundation.BOOL fCreation, uint dwReserved) 286 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 295 return (winmdroot.Foundation.HRESULT)ex.HResult; 313 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.BOOL ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleObject*)Unsafe.AsPointer(ref this), pDataObject, fCreation, dwReserved).ThrowOnFailure(); 319 private static winmdroot.Foundation.HRESULT GetClipboardData(IOleObject* pThis, uint dwReserved, winmdroot.System.Com.IDataObject** ppDataObject) 323 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 332 return (winmdroot.Foundation.HRESULT)ex.HResult; 349 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.System.Com.IDataObject** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOleObject*)Unsafe.AsPointer(ref this), dwReserved, ppDataObject).ThrowOnFailure(); 353 internal unsafe winmdroot.Foundation.HRESULT DoVerb(int iVerb, in winmdroot.UI.WindowsAndMessaging.MSG lpmsg, winmdroot.System.Ole.IOleClientSite* pActiveSite, int lindex, winmdroot.Foundation.HWND hwndParent, in winmdroot.Foundation.RECT lprcPosRect) 359 winmdroot.Foundation.HRESULT __result = this.DoVerb(iVerb, lpmsgLocal, pActiveSite, lindex, hwndParent, lprcPosRectLocal); 368 private static winmdroot.Foundation.HRESULT DoVerb(IOleObject* pThis, int iVerb, winmdroot.UI.WindowsAndMessaging.MSG* lpmsg, winmdroot.System.Ole.IOleClientSite* pActiveSite, int lindex, winmdroot.Foundation.HWND hwndParent, winmdroot.Foundation.RECT* lprcPosRect) 372 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 381 return (winmdroot.Foundation.HRESULT)ex.HResult; 401 public unsafe winmdroot.Foundation.HRESULT DoVerb(int iVerb, winmdroot.UI.WindowsAndMessaging.MSG* lpmsg, winmdroot.System.Ole.IOleClientSite* pActiveSite, int lindex, winmdroot.Foundation.HWND hwndParent, winmdroot.Foundation.RECT* lprcPosRect) 403 return ((delegate *unmanaged [Stdcall]<IOleObject*,int ,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.System.Ole.IOleClientSite* ,int ,winmdroot.Foundation.HWND ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IOleObject*)Unsafe.AsPointer(ref this), iVerb, lpmsg, pActiveSite, lindex, hwndParent, lprcPosRect); 409 private static winmdroot.Foundation.HRESULT EnumVerbs(IOleObject* pThis, winmdroot.System.Ole.IEnumOLEVERB** ppEnumOleVerb) 413 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 422 return (winmdroot.Foundation.HRESULT)ex.HResult; 437 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IEnumOLEVERB** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IOleObject*)Unsafe.AsPointer(ref this), ppEnumOleVerb).ThrowOnFailure(); 443 private static winmdroot.Foundation.HRESULT Update(IOleObject* pThis) 447 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 456 return (winmdroot.Foundation.HRESULT)ex.HResult; 471 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IOleObject*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 477 private static winmdroot.Foundation.HRESULT IsUpToDate(IOleObject* pThis) 481 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 490 return (winmdroot.Foundation.HRESULT)ex.HResult; 506 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IOleObject*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 521 private static winmdroot.Foundation.HRESULT GetUserClassID(IOleObject* pThis, global::System.Guid* pClsid) 525 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 534 return (winmdroot.Foundation.HRESULT)ex.HResult; 547 ((delegate *unmanaged [Stdcall]<IOleObject*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IOleObject*)Unsafe.AsPointer(ref this), pClsid).ThrowOnFailure(); 562 private static winmdroot.Foundation.HRESULT GetUserType(IOleObject* pThis, uint dwFormOfType, winmdroot.Foundation.PWSTR* pszUserType) 566 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 575 return (winmdroot.Foundation.HRESULT)ex.HResult; 593 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IOleObject*)Unsafe.AsPointer(ref this), dwFormOfType, pszUserType).ThrowOnFailure(); 597 internal unsafe winmdroot.Foundation.HRESULT SetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, in winmdroot.Foundation.SIZE psizel) 601 winmdroot.Foundation.HRESULT __result = this.SetExtent(dwDrawAspect, psizelLocal); 609 private static winmdroot.Foundation.HRESULT SetExtent(IOleObject* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel) 613 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 622 return (winmdroot.Foundation.HRESULT)ex.HResult; 637 public unsafe winmdroot.Foundation.HRESULT SetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel) 639 return ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IOleObject*)Unsafe.AsPointer(ref this), dwDrawAspect, psizel); 643 internal unsafe winmdroot.Foundation.HRESULT GetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, out winmdroot.Foundation.SIZE psizel) 647 winmdroot.Foundation.HRESULT __result = this.GetExtent(dwDrawAspect, psizelLocal); 655 private static winmdroot.Foundation.HRESULT GetExtent(IOleObject* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel) 659 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 668 return (winmdroot.Foundation.HRESULT)ex.HResult; 683 public unsafe winmdroot.Foundation.HRESULT GetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel) 685 return ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IOleObject*)Unsafe.AsPointer(ref this), dwDrawAspect, psizel); 700 private static winmdroot.Foundation.HRESULT Advise(IOleObject* pThis, winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection) 704 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 713 return (winmdroot.Foundation.HRESULT)ex.HResult; 730 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IOleObject*)Unsafe.AsPointer(ref this), pAdvSink, pdwConnection).ThrowOnFailure(); 736 private static winmdroot.Foundation.HRESULT Unadvise(IOleObject* pThis, uint dwConnection) 740 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 749 return (winmdroot.Foundation.HRESULT)ex.HResult; 762 ((delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IOleObject*)Unsafe.AsPointer(ref this), dwConnection).ThrowOnFailure(); 768 private static winmdroot.Foundation.HRESULT EnumAdvise(IOleObject* pThis, winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise) 772 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 781 return (winmdroot.Foundation.HRESULT)ex.HResult; 797 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IOleObject*)Unsafe.AsPointer(ref this), ppenumAdvise).ThrowOnFailure(); 801 internal unsafe winmdroot.Foundation.HRESULT GetMiscStatus(winmdroot.System.Com.DVASPECT dwAspect, out winmdroot.System.Ole.OLEMISC pdwStatus) 805 winmdroot.Foundation.HRESULT __result = this.GetMiscStatus(dwAspect, pdwStatusLocal); 813 private static winmdroot.Foundation.HRESULT GetMiscStatus(IOleObject* pThis, winmdroot.System.Com.DVASPECT dwAspect, winmdroot.System.Ole.OLEMISC* pdwStatus) 817 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 826 return (winmdroot.Foundation.HRESULT)ex.HResult; 843 public unsafe winmdroot.Foundation.HRESULT GetMiscStatus(winmdroot.System.Com.DVASPECT dwAspect, winmdroot.System.Ole.OLEMISC* pdwStatus) 845 return ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.System.Ole.OLEMISC* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IOleObject*)Unsafe.AsPointer(ref this), dwAspect, pdwStatus); 851 private static winmdroot.Foundation.HRESULT SetColorScheme(IOleObject* pThis, winmdroot.Graphics.Gdi.LOGPALETTE* pLogpal) 855 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 864 return (winmdroot.Foundation.HRESULT)ex.HResult; 877 ((delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Graphics.Gdi.LOGPALETTE* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IOleObject*)Unsafe.AsPointer(ref this), pLogpal).ThrowOnFailure(); 880 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 884 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 901 internal delegate *unmanaged [Stdcall]<IOleObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 907 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IOleClientSite* ,winmdroot.Foundation.HRESULT> SetClientSite_4; 909 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IOleClientSite** ,winmdroot.Foundation.HRESULT> GetClientSite_5; 911 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetHostNames_6; 913 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.HRESULT> Close_7; 915 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.System.Com.IMoniker* ,winmdroot.Foundation.HRESULT> SetMoniker_8; 917 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,uint ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> GetMoniker_9; 919 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.IDataObject* ,winmdroot.Foundation.BOOL ,uint ,winmdroot.Foundation.HRESULT> InitFromData_10; 921 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.System.Com.IDataObject** ,winmdroot.Foundation.HRESULT> GetClipboardData_11; 923 internal delegate *unmanaged [Stdcall]<IOleObject*,int ,winmdroot.UI.WindowsAndMessaging.MSG* ,winmdroot.System.Ole.IOleClientSite* ,int ,winmdroot.Foundation.HWND ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> DoVerb_12; 925 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Ole.IEnumOLEVERB** ,winmdroot.Foundation.HRESULT> EnumVerbs_13; 927 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.HRESULT> Update_14; 929 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Foundation.HRESULT> IsUpToDate_15; 931 internal delegate *unmanaged [Stdcall]<IOleObject*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetUserClassID_16; 933 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetUserType_17; 935 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT> SetExtent_18; 937 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT> GetExtent_19; 939 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.IAdviseSink* ,uint* ,winmdroot.Foundation.HRESULT> Advise_20; 941 internal delegate *unmanaged [Stdcall]<IOleObject*,uint ,winmdroot.Foundation.HRESULT> Unadvise_21; 943 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.IEnumSTATDATA** ,winmdroot.Foundation.HRESULT> EnumAdvise_22; 945 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.System.Com.DVASPECT ,winmdroot.System.Ole.OLEMISC* ,winmdroot.Foundation.HRESULT> GetMiscStatus_23; 947 internal delegate *unmanaged [Stdcall]<IOleObject*,winmdroot.Graphics.Gdi.LOGPALETTE* ,winmdroot.Foundation.HRESULT> SetColorScheme_24; 994 unsafe winmdroot.Foundation.HRESULT SetClientSite(winmdroot.System.Ole.IOleClientSite* pClientSite); 997 unsafe winmdroot.Foundation.HRESULT GetClientSite(winmdroot.System.Ole.IOleClientSite** ppClientSite); 1000winmdroot.Foundation.HRESULT SetHostNames(winmdroot.Foundation.PCWSTR szContainerApp, winmdroot.Foundation.PCWSTR szContainerObj); 1003winmdroot.Foundation.HRESULT Close(uint dwSaveOption); 1006 unsafe winmdroot.Foundation.HRESULT SetMoniker(uint dwWhichMoniker, winmdroot.System.Com.IMoniker* pmk); 1009 unsafe winmdroot.Foundation.HRESULT GetMoniker(uint dwAssign, uint dwWhichMoniker, winmdroot.System.Com.IMoniker** ppmk); 1012 unsafe winmdroot.Foundation.HRESULT InitFromData(winmdroot.System.Com.IDataObject* pDataObject, winmdroot.Foundation.BOOL fCreation, uint dwReserved); 1015 unsafe winmdroot.Foundation.HRESULT GetClipboardData(uint dwReserved, winmdroot.System.Com.IDataObject** ppDataObject); 1018 unsafe winmdroot.Foundation.HRESULT DoVerb(int iVerb, winmdroot.UI.WindowsAndMessaging.MSG* lpmsg, winmdroot.System.Ole.IOleClientSite* pActiveSite, int lindex, winmdroot.Foundation.HWND hwndParent, winmdroot.Foundation.RECT* lprcPosRect); 1021 unsafe winmdroot.Foundation.HRESULT EnumVerbs(winmdroot.System.Ole.IEnumOLEVERB** ppEnumOleVerb); 1024winmdroot.Foundation.HRESULT Update(); 1027winmdroot.Foundation.HRESULT IsUpToDate(); 1030 unsafe winmdroot.Foundation.HRESULT GetUserClassID(global::System.Guid* pClsid); 1033 unsafe winmdroot.Foundation.HRESULT GetUserType(uint dwFormOfType, winmdroot.Foundation.PWSTR* pszUserType); 1036 unsafe winmdroot.Foundation.HRESULT SetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel); 1039 unsafe winmdroot.Foundation.HRESULT GetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, winmdroot.Foundation.SIZE* psizel); 1042 unsafe winmdroot.Foundation.HRESULT Advise(winmdroot.System.Com.IAdviseSink* pAdvSink, uint* pdwConnection); 1045winmdroot.Foundation.HRESULT Unadvise(uint dwConnection); 1048 unsafe winmdroot.Foundation.HRESULT EnumAdvise(winmdroot.System.Com.IEnumSTATDATA** ppenumAdvise); 1051 unsafe winmdroot.Foundation.HRESULT GetMiscStatus(winmdroot.System.Com.DVASPECT dwAspect, winmdroot.System.Ole.OLEMISC* pdwStatus); 1054 unsafe winmdroot.Foundation.HRESULT SetColorScheme(winmdroot.Graphics.Gdi.LOGPALETTE* pLogpal);
Windows.Win32.IOleParentUndoUnit.g.cs (61)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Do(IOleParentUndoUnit* pThis, winmdroot.System.Ole.IOleUndoManager* pUndoManager) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 77 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoManager* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pUndoManager).ThrowOnFailure(); 83 private static winmdroot.Foundation.HRESULT GetDescription(IOleParentUndoUnit* pThis, winmdroot.Foundation.BSTR* pBstr) 87 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 96 return (winmdroot.Foundation.HRESULT)ex.HResult; 102 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 120 private static winmdroot.Foundation.HRESULT GetUnitType(IOleParentUndoUnit* pThis, global::System.Guid* pClsid, int* plID) 124 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 133 return (winmdroot.Foundation.HRESULT)ex.HResult; 139 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,global::System.Guid* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pClsid, plID).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT OnNextAdd(IOleParentUndoUnit* pThis) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 158 return (winmdroot.Foundation.HRESULT)ex.HResult; 164 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 170 private static winmdroot.Foundation.HRESULT Open(IOleParentUndoUnit* pThis, winmdroot.System.Ole.IOleParentUndoUnit* pPUU) 174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 183 return (winmdroot.Foundation.HRESULT)ex.HResult; 196 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pPUU).ThrowOnFailure(); 202 private static winmdroot.Foundation.HRESULT Close(IOleParentUndoUnit* pThis, winmdroot.System.Ole.IOleParentUndoUnit* pPUU, winmdroot.Foundation.BOOL fCommit) 206 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 215 return (winmdroot.Foundation.HRESULT)ex.HResult; 232 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pPUU, fCommit).ThrowOnFailure(); 238 private static winmdroot.Foundation.HRESULT Add(IOleParentUndoUnit* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 242 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 251 return (winmdroot.Foundation.HRESULT)ex.HResult; 261 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 267 private static winmdroot.Foundation.HRESULT FindUnit(IOleParentUndoUnit* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 271 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 280 return (winmdroot.Foundation.HRESULT)ex.HResult; 290 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 305 private static winmdroot.Foundation.HRESULT GetParentState(IOleParentUndoUnit* pThis, uint* pdwState) 309 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 318 return (winmdroot.Foundation.HRESULT)ex.HResult; 331 ((delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IOleParentUndoUnit*)Unsafe.AsPointer(ref this), pdwState).ThrowOnFailure(); 334 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 338 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 355 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 361 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoManager* ,winmdroot.Foundation.HRESULT> Do_4; 363 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDescription_5; 365 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,global::System.Guid* ,int* ,winmdroot.Foundation.HRESULT> GetUnitType_6; 367 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.Foundation.HRESULT> OnNextAdd_7; 369 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.HRESULT> Open_8; 371 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Close_9; 373 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> Add_10; 375 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> FindUnit_11; 377 internal delegate *unmanaged [Stdcall]<IOleParentUndoUnit*,uint* ,winmdroot.Foundation.HRESULT> GetParentState_12; 412 unsafe new winmdroot.Foundation.HRESULT Do(winmdroot.System.Ole.IOleUndoManager* pUndoManager); 415 unsafe new winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstr); 418 unsafe new winmdroot.Foundation.HRESULT GetUnitType(global::System.Guid* pClsid, int* plID); 421 new winmdroot.Foundation.HRESULT OnNextAdd(); 424 unsafe winmdroot.Foundation.HRESULT Open(winmdroot.System.Ole.IOleParentUndoUnit* pPUU); 427 unsafe winmdroot.Foundation.HRESULT Close(winmdroot.System.Ole.IOleParentUndoUnit* pPUU, winmdroot.Foundation.BOOL fCommit); 430 unsafe winmdroot.Foundation.HRESULT Add(winmdroot.System.Ole.IOleUndoUnit* pUU); 433 unsafe winmdroot.Foundation.HRESULT FindUnit(winmdroot.System.Ole.IOleUndoUnit* pUU); 436 unsafe winmdroot.Foundation.HRESULT GetParentState(uint* pdwState);
Windows.Win32.IOleUndoManager.g.cs (80)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleUndoManager*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleUndoManager*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Open(IOleUndoManager* pThis, winmdroot.System.Ole.IOleParentUndoUnit* pPUU) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 84 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleUndoManager*)Unsafe.AsPointer(ref this), pPUU).ThrowOnFailure(); 90 private static winmdroot.Foundation.HRESULT Close(IOleUndoManager* pThis, winmdroot.System.Ole.IOleParentUndoUnit* pPUU, winmdroot.Foundation.BOOL fCommit) 94 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 103 return (winmdroot.Foundation.HRESULT)ex.HResult; 118 public unsafe winmdroot.Foundation.HRESULT Close(winmdroot.System.Ole.IOleParentUndoUnit* pPUU, winmdroot.Foundation.BOOL fCommit) 120 return ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleUndoManager*)Unsafe.AsPointer(ref this), pPUU, fCommit); 126 private static winmdroot.Foundation.HRESULT Add(IOleUndoManager* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 130 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 139 return (winmdroot.Foundation.HRESULT)ex.HResult; 152 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleUndoManager*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 167 private static winmdroot.Foundation.HRESULT GetOpenParentState(IOleUndoManager* pThis, uint* pdwState) 171 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 194 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleUndoManager*)Unsafe.AsPointer(ref this), pdwState).ThrowOnFailure(); 200 private static winmdroot.Foundation.HRESULT DiscardFrom(IOleUndoManager* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 204 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 213 return (winmdroot.Foundation.HRESULT)ex.HResult; 229 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOleUndoManager*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 235 private static winmdroot.Foundation.HRESULT UndoTo(IOleUndoManager* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 239 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 248 return (winmdroot.Foundation.HRESULT)ex.HResult; 265 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOleUndoManager*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 271 private static winmdroot.Foundation.HRESULT RedoTo(IOleUndoManager* pThis, winmdroot.System.Ole.IOleUndoUnit* pUU) 275 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 284 return (winmdroot.Foundation.HRESULT)ex.HResult; 300 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOleUndoManager*)Unsafe.AsPointer(ref this), pUU).ThrowOnFailure(); 306 private static winmdroot.Foundation.HRESULT EnumUndoable(IOleUndoManager* pThis, winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum) 310 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 319 return (winmdroot.Foundation.HRESULT)ex.HResult; 335 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOleUndoManager*)Unsafe.AsPointer(ref this), ppEnum).ThrowOnFailure(); 341 private static winmdroot.Foundation.HRESULT EnumRedoable(IOleUndoManager* pThis, winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum) 345 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 354 return (winmdroot.Foundation.HRESULT)ex.HResult; 370 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IOleUndoManager*)Unsafe.AsPointer(ref this), ppEnum).ThrowOnFailure(); 376 private static winmdroot.Foundation.HRESULT GetLastUndoDescription(IOleUndoManager* pThis, winmdroot.Foundation.BSTR* pBstr) 380 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 389 return (winmdroot.Foundation.HRESULT)ex.HResult; 402 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IOleUndoManager*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 408 private static winmdroot.Foundation.HRESULT GetLastRedoDescription(IOleUndoManager* pThis, winmdroot.Foundation.BSTR* pBstr) 412 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 421 return (winmdroot.Foundation.HRESULT)ex.HResult; 434 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IOleUndoManager*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 440 private static winmdroot.Foundation.HRESULT Enable(IOleUndoManager* pThis, winmdroot.Foundation.BOOL fEnable) 444 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 453 return (winmdroot.Foundation.HRESULT)ex.HResult; 469 ((delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IOleUndoManager*)Unsafe.AsPointer(ref this), fEnable).ThrowOnFailure(); 472 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 476 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 493 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 499 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.HRESULT> Open_4; 501 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleParentUndoUnit* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Close_5; 503 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> Add_6; 505 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,uint* ,winmdroot.Foundation.HRESULT> GetOpenParentState_7; 507 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> DiscardFrom_8; 509 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> UndoTo_9; 511 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IOleUndoUnit* ,winmdroot.Foundation.HRESULT> RedoTo_10; 513 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT> EnumUndoable_11; 515 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.System.Ole.IEnumOleUndoUnits** ,winmdroot.Foundation.HRESULT> EnumRedoable_12; 517 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetLastUndoDescription_13; 519 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetLastRedoDescription_14; 521 internal delegate *unmanaged [Stdcall]<IOleUndoManager*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Enable_15; 559 unsafe winmdroot.Foundation.HRESULT Open(winmdroot.System.Ole.IOleParentUndoUnit* pPUU); 562 unsafe winmdroot.Foundation.HRESULT Close(winmdroot.System.Ole.IOleParentUndoUnit* pPUU, winmdroot.Foundation.BOOL fCommit); 565 unsafe winmdroot.Foundation.HRESULT Add(winmdroot.System.Ole.IOleUndoUnit* pUU); 568 unsafe winmdroot.Foundation.HRESULT GetOpenParentState(uint* pdwState); 571 unsafe winmdroot.Foundation.HRESULT DiscardFrom(winmdroot.System.Ole.IOleUndoUnit* pUU); 574 unsafe winmdroot.Foundation.HRESULT UndoTo(winmdroot.System.Ole.IOleUndoUnit* pUU); 577 unsafe winmdroot.Foundation.HRESULT RedoTo(winmdroot.System.Ole.IOleUndoUnit* pUU); 580 unsafe winmdroot.Foundation.HRESULT EnumUndoable(winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum); 583 unsafe winmdroot.Foundation.HRESULT EnumRedoable(winmdroot.System.Ole.IEnumOleUndoUnits** ppEnum); 586 unsafe winmdroot.Foundation.HRESULT GetLastUndoDescription(winmdroot.Foundation.BSTR* pBstr); 589 unsafe winmdroot.Foundation.HRESULT GetLastRedoDescription(winmdroot.Foundation.BSTR* pBstr); 592winmdroot.Foundation.HRESULT Enable(winmdroot.Foundation.BOOL fEnable);
Windows.Win32.IOleUndoUnit.g.cs (31)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleUndoUnit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleUndoUnit*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Do(IOleUndoUnit* pThis, winmdroot.System.Ole.IOleUndoManager* pUndoManager) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 84 ((delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.System.Ole.IOleUndoManager* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleUndoUnit*)Unsafe.AsPointer(ref this), pUndoManager).ThrowOnFailure(); 90 private static winmdroot.Foundation.HRESULT GetDescription(IOleUndoUnit* pThis, winmdroot.Foundation.BSTR* pBstr) 94 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 103 return (winmdroot.Foundation.HRESULT)ex.HResult; 116 ((delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleUndoUnit*)Unsafe.AsPointer(ref this), pBstr).ThrowOnFailure(); 134 private static winmdroot.Foundation.HRESULT GetUnitType(IOleUndoUnit* pThis, global::System.Guid* pClsid, int* plID) 138 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 147 return (winmdroot.Foundation.HRESULT)ex.HResult; 161 ((delegate *unmanaged [Stdcall]<IOleUndoUnit*,global::System.Guid* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOleUndoUnit*)Unsafe.AsPointer(ref this), pClsid, plID).ThrowOnFailure(); 167 private static winmdroot.Foundation.HRESULT OnNextAdd(IOleUndoUnit* pThis) 171 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 192 ((delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOleUndoUnit*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 195 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 199 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 216 internal delegate *unmanaged [Stdcall]<IOleUndoUnit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 222 internal delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.System.Ole.IOleUndoManager* ,winmdroot.Foundation.HRESULT> Do_4; 224 internal delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDescription_5; 226 internal delegate *unmanaged [Stdcall]<IOleUndoUnit*,global::System.Guid* ,int* ,winmdroot.Foundation.HRESULT> GetUnitType_6; 228 internal delegate *unmanaged [Stdcall]<IOleUndoUnit*,winmdroot.Foundation.HRESULT> OnNextAdd_7; 258 unsafe winmdroot.Foundation.HRESULT Do(winmdroot.System.Ole.IOleUndoManager* pUndoManager); 261 unsafe winmdroot.Foundation.HRESULT GetDescription(winmdroot.Foundation.BSTR* pBstr); 264 unsafe winmdroot.Foundation.HRESULT GetUnitType(global::System.Guid* pClsid, int* plID); 267winmdroot.Foundation.HRESULT OnNextAdd();
Windows.Win32.IOleWindow.g.cs (23)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IOleWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOleWindow*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetWindow(out winmdroot.Foundation.HWND phwnd) 60 winmdroot.Foundation.HRESULT __result = this.GetWindow(phwndLocal); 68 private static winmdroot.Foundation.HRESULT GetWindow(IOleWindow* pThis, winmdroot.Foundation.HWND* phwnd) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd) 98 return ((delegate *unmanaged [Stdcall]<IOleWindow*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOleWindow*)Unsafe.AsPointer(ref this), phwnd); 104 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IOleWindow* pThis, winmdroot.Foundation.BOOL fEnterMode) 108 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 117 return (winmdroot.Foundation.HRESULT)ex.HResult; 132 public winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode) 134 return ((delegate *unmanaged [Stdcall]<IOleWindow*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOleWindow*)Unsafe.AsPointer(ref this), fEnterMode); 137 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 141 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 158 internal delegate *unmanaged [Stdcall]<IOleWindow*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 164 internal delegate *unmanaged [Stdcall]<IOleWindow*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> GetWindow_4; 166 internal delegate *unmanaged [Stdcall]<IOleWindow*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_5; 194 unsafe winmdroot.Foundation.HRESULT GetWindow(winmdroot.Foundation.HWND* phwnd); 197winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode);
Windows.Win32.IOmHistory.g.cs (42)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IOmHistory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOmHistory*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IOmHistory*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOmHistory*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IOmHistory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOmHistory*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IOmHistory*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOmHistory*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IOmHistory*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOmHistory*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_length(IOmHistory* pThis, short* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IOmHistory*,short* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOmHistory*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 154 private static winmdroot.Foundation.HRESULT back(IOmHistory* pThis, winmdroot.System.Variant.VARIANT* pvargdistance) 158 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 167 return (winmdroot.Foundation.HRESULT)ex.HResult; 173 ((delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOmHistory*)Unsafe.AsPointer(ref this), pvargdistance).ThrowOnFailure(); 188 private static winmdroot.Foundation.HRESULT forward(IOmHistory* pThis, winmdroot.System.Variant.VARIANT* pvargdistance) 192 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 201 return (winmdroot.Foundation.HRESULT)ex.HResult; 207 ((delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOmHistory*)Unsafe.AsPointer(ref this), pvargdistance).ThrowOnFailure(); 211 internal unsafe winmdroot.Foundation.HRESULT go(in winmdroot.System.Variant.VARIANT pvargdistance) 215 winmdroot.Foundation.HRESULT __result = this.go(pvargdistanceLocal); 223 private static winmdroot.Foundation.HRESULT go(IOmHistory* pThis, winmdroot.System.Variant.VARIANT* pvargdistance) 227 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 236 return (winmdroot.Foundation.HRESULT)ex.HResult; 240 public unsafe winmdroot.Foundation.HRESULT go(winmdroot.System.Variant.VARIANT* pvargdistance) 242 return ((delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOmHistory*)Unsafe.AsPointer(ref this), pvargdistance); 245 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 249 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 266 internal delegate *unmanaged [Stdcall]<IOmHistory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 272 internal delegate *unmanaged [Stdcall]<IOmHistory*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 274 internal delegate *unmanaged [Stdcall]<IOmHistory*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 276 internal delegate *unmanaged [Stdcall]<IOmHistory*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 278 internal delegate *unmanaged [Stdcall]<IOmHistory*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 280 internal delegate *unmanaged [Stdcall]<IOmHistory*,short* ,winmdroot.Foundation.HRESULT> get_length_8; 282 internal delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> back_9; 284 internal delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> forward_10; 286 internal delegate *unmanaged [Stdcall]<IOmHistory*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> go_11; 320 unsafe winmdroot.Foundation.HRESULT back(winmdroot.System.Variant.VARIANT* pvargdistance); 323 unsafe winmdroot.Foundation.HRESULT forward(winmdroot.System.Variant.VARIANT* pvargdistance); 326 unsafe winmdroot.Foundation.HRESULT go(winmdroot.System.Variant.VARIANT* pvargdistance);
Windows.Win32.IOmNavigator.g.cs (135)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IOmNavigator*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IOmNavigator*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IOmNavigator*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IOmNavigator*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IOmNavigator*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IOmNavigator*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IOmNavigator*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IOmNavigator*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IOmNavigator*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IOmNavigator*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT get_appCodeName(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 124 return winmdroot.Foundation.HRESULT.S_OK; 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 145 private static winmdroot.Foundation.HRESULT get_appName(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 149 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return winmdroot.Foundation.HRESULT.S_OK; 159 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 176 private static winmdroot.Foundation.HRESULT get_appVersion(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 180 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 186 return winmdroot.Foundation.HRESULT.S_OK; 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 199 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 207 private static winmdroot.Foundation.HRESULT get_userAgent(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 211 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 217 return winmdroot.Foundation.HRESULT.S_OK; 221 return (winmdroot.Foundation.HRESULT)ex.HResult; 230 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 238 private static winmdroot.Foundation.HRESULT javaEnabled(IOmNavigator* pThis, winmdroot.Foundation.VARIANT_BOOL* enabled) 242 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 251 return (winmdroot.Foundation.HRESULT)ex.HResult; 258 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IOmNavigator*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 265 private static winmdroot.Foundation.HRESULT taintEnabled(IOmNavigator* pThis, winmdroot.Foundation.VARIANT_BOOL* enabled) 269 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 278 return (winmdroot.Foundation.HRESULT)ex.HResult; 285 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IOmNavigator*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 292 private static winmdroot.Foundation.HRESULT get_mimeTypes(IOmNavigator* pThis, winmdroot.Web.MsHtml.IHTMLMimeTypesCollection** p) 296 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 302 return winmdroot.Foundation.HRESULT.S_OK; 306 return (winmdroot.Foundation.HRESULT)ex.HResult; 315 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLMimeTypesCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 323 private static winmdroot.Foundation.HRESULT get_plugins(IOmNavigator* pThis, winmdroot.Web.MsHtml.IHTMLPluginsCollection** p) 327 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 333 return winmdroot.Foundation.HRESULT.S_OK; 337 return (winmdroot.Foundation.HRESULT)ex.HResult; 346 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLPluginsCollection** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 354 private static winmdroot.Foundation.HRESULT get_cookieEnabled(IOmNavigator* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 358 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 364 return winmdroot.Foundation.HRESULT.S_OK; 368 return (winmdroot.Foundation.HRESULT)ex.HResult; 377 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 385 private static winmdroot.Foundation.HRESULT get_opsProfile(IOmNavigator* pThis, winmdroot.Web.MsHtml.IHTMLOpsProfile** p) 389 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 395 return winmdroot.Foundation.HRESULT.S_OK; 399 return (winmdroot.Foundation.HRESULT)ex.HResult; 408 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLOpsProfile** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 416 private static winmdroot.Foundation.HRESULT toString(IOmNavigator* pThis, winmdroot.Foundation.BSTR* @string) 420 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 429 return (winmdroot.Foundation.HRESULT)ex.HResult; 436 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IOmNavigator*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 443 private static winmdroot.Foundation.HRESULT get_cpuClass(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 447 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 453 return winmdroot.Foundation.HRESULT.S_OK; 457 return (winmdroot.Foundation.HRESULT)ex.HResult; 466 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 474 private static winmdroot.Foundation.HRESULT get_systemLanguage(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 478 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 484 return winmdroot.Foundation.HRESULT.S_OK; 488 return (winmdroot.Foundation.HRESULT)ex.HResult; 497 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 505 private static winmdroot.Foundation.HRESULT get_browserLanguage(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 509 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 515 return winmdroot.Foundation.HRESULT.S_OK; 519 return (winmdroot.Foundation.HRESULT)ex.HResult; 528 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 536 private static winmdroot.Foundation.HRESULT get_userLanguage(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 540 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 546 return winmdroot.Foundation.HRESULT.S_OK; 550 return (winmdroot.Foundation.HRESULT)ex.HResult; 559 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 567 private static winmdroot.Foundation.HRESULT get_platform(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 571 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 577 return winmdroot.Foundation.HRESULT.S_OK; 581 return (winmdroot.Foundation.HRESULT)ex.HResult; 590 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 598 private static winmdroot.Foundation.HRESULT get_appMinorVersion(IOmNavigator* pThis, winmdroot.Foundation.BSTR* p) 602 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 608 return winmdroot.Foundation.HRESULT.S_OK; 612 return (winmdroot.Foundation.HRESULT)ex.HResult; 621 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 629 private static winmdroot.Foundation.HRESULT get_connectionSpeed(IOmNavigator* pThis, int* p) 633 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 639 return winmdroot.Foundation.HRESULT.S_OK; 643 return (winmdroot.Foundation.HRESULT)ex.HResult; 652 ((delegate *unmanaged [Stdcall]<IOmNavigator*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 660 private static winmdroot.Foundation.HRESULT get_onLine(IOmNavigator* pThis, winmdroot.Foundation.VARIANT_BOOL* p) 664 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 670 return winmdroot.Foundation.HRESULT.S_OK; 674 return (winmdroot.Foundation.HRESULT)ex.HResult; 683 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 691 private static winmdroot.Foundation.HRESULT get_userProfile(IOmNavigator* pThis, winmdroot.Web.MsHtml.IHTMLOpsProfile** p) 695 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 701 return winmdroot.Foundation.HRESULT.S_OK; 705 return (winmdroot.Foundation.HRESULT)ex.HResult; 714 ((delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLOpsProfile** ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IOmNavigator*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 719 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 723 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 740 internal delegate *unmanaged [Stdcall]<IOmNavigator*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 746 internal delegate *unmanaged [Stdcall]<IOmNavigator*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 748 internal delegate *unmanaged [Stdcall]<IOmNavigator*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 750 internal delegate *unmanaged [Stdcall]<IOmNavigator*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 752 internal delegate *unmanaged [Stdcall]<IOmNavigator*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 754 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appCodeName_8; 756 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appName_9; 758 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appVersion_10; 760 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_userAgent_11; 762 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> javaEnabled_12; 764 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> taintEnabled_13; 766 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLMimeTypesCollection** ,winmdroot.Foundation.HRESULT> get_mimeTypes_14; 768 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLPluginsCollection** ,winmdroot.Foundation.HRESULT> get_plugins_15; 770 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_cookieEnabled_16; 772 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLOpsProfile** ,winmdroot.Foundation.HRESULT> get_opsProfile_17; 774 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> toString_18; 776 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_cpuClass_19; 778 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_systemLanguage_20; 780 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_browserLanguage_21; 782 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_userLanguage_22; 784 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_platform_23; 786 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_appMinorVersion_24; 788 internal delegate *unmanaged [Stdcall]<IOmNavigator*,int* ,winmdroot.Foundation.HRESULT> get_connectionSpeed_25; 790 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_onLine_26; 792 internal delegate *unmanaged [Stdcall]<IOmNavigator*,winmdroot.Web.MsHtml.IHTMLOpsProfile** ,winmdroot.Foundation.HRESULT> get_userProfile_27; 857 unsafe winmdroot.Foundation.HRESULT javaEnabled(winmdroot.Foundation.VARIANT_BOOL* enabled); 860 unsafe winmdroot.Foundation.HRESULT taintEnabled(winmdroot.Foundation.VARIANT_BOOL* enabled); 883 unsafe winmdroot.Foundation.HRESULT toString(winmdroot.Foundation.BSTR* @string);
Windows.Win32.IParseDisplayName.g.cs (13)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IParseDisplayName*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IParseDisplayName*)Unsafe.AsPointer(ref this), riid, ppvObject); 67 private static winmdroot.Foundation.HRESULT ParseDisplayName(IParseDisplayName* pThis, winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut) 71 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 80 return (winmdroot.Foundation.HRESULT)ex.HResult; 99 ((delegate *unmanaged [Stdcall]<IParseDisplayName*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IParseDisplayName*)Unsafe.AsPointer(ref this), pbc, pszDisplayName, pchEaten, ppmkOut).ThrowOnFailure(); 102 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 106 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 123 internal delegate *unmanaged [Stdcall]<IParseDisplayName*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 129 internal delegate *unmanaged [Stdcall]<IParseDisplayName*,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.System.Com.IMoniker** ,winmdroot.Foundation.HRESULT> ParseDisplayName_4; 156 unsafe winmdroot.Foundation.HRESULT ParseDisplayName(winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, uint* pchEaten, winmdroot.System.Com.IMoniker** ppmkOut);
Windows.Win32.IPerPropertyBrowsing.g.cs (41)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPerPropertyBrowsing*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetDisplayString(IPerPropertyBrowsing* pThis, int dispID, winmdroot.Foundation.BSTR* pBstr) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT GetDisplayString(int dispID, winmdroot.Foundation.BSTR* pBstr) 87 return ((delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPerPropertyBrowsing*)Unsafe.AsPointer(ref this), dispID, pBstr); 91 internal unsafe winmdroot.Foundation.HRESULT MapPropertyToPage(int dispID, out global::System.Guid pClsid) 95 winmdroot.Foundation.HRESULT __result = this.MapPropertyToPage(dispID, pClsidLocal); 103 private static winmdroot.Foundation.HRESULT MapPropertyToPage(IPerPropertyBrowsing* pThis, int dispID, global::System.Guid* pClsid) 107 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 116 return (winmdroot.Foundation.HRESULT)ex.HResult; 128 public unsafe winmdroot.Foundation.HRESULT MapPropertyToPage(int dispID, global::System.Guid* pClsid) 130 return ((delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPerPropertyBrowsing*)Unsafe.AsPointer(ref this), dispID, pClsid); 134 internal unsafe winmdroot.Foundation.HRESULT GetPredefinedStrings(int dispID, out winmdroot.System.Ole.CALPOLESTR pCaStringsOut, out winmdroot.System.Ole.CADWORD pCaCookiesOut) 140 winmdroot.Foundation.HRESULT __result = this.GetPredefinedStrings(dispID, pCaStringsOutLocal, pCaCookiesOutLocal); 149 private static winmdroot.Foundation.HRESULT GetPredefinedStrings(IPerPropertyBrowsing* pThis, int dispID, winmdroot.System.Ole.CALPOLESTR* pCaStringsOut, winmdroot.System.Ole.CADWORD* pCaCookiesOut) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 162 return (winmdroot.Foundation.HRESULT)ex.HResult; 180 public unsafe winmdroot.Foundation.HRESULT GetPredefinedStrings(int dispID, winmdroot.System.Ole.CALPOLESTR* pCaStringsOut, winmdroot.System.Ole.CADWORD* pCaCookiesOut) 182 return ((delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,winmdroot.System.Ole.CALPOLESTR* ,winmdroot.System.Ole.CADWORD* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPerPropertyBrowsing*)Unsafe.AsPointer(ref this), dispID, pCaStringsOut, pCaCookiesOut); 186 internal unsafe winmdroot.Foundation.HRESULT GetPredefinedValue(int dispID, uint dwCookie, out winmdroot.System.Variant.VARIANT pVarOut) 190 winmdroot.Foundation.HRESULT __result = this.GetPredefinedValue(dispID, dwCookie, pVarOutLocal); 198 private static winmdroot.Foundation.HRESULT GetPredefinedValue(IPerPropertyBrowsing* pThis, int dispID, uint dwCookie, winmdroot.System.Variant.VARIANT* pVarOut) 202 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return (winmdroot.Foundation.HRESULT)ex.HResult; 227 public unsafe winmdroot.Foundation.HRESULT GetPredefinedValue(int dispID, uint dwCookie, winmdroot.System.Variant.VARIANT* pVarOut) 229 return ((delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,uint ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPerPropertyBrowsing*)Unsafe.AsPointer(ref this), dispID, dwCookie, pVarOut); 232 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 236 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 253 internal delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 259 internal delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetDisplayString_4; 261 internal delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,global::System.Guid* ,winmdroot.Foundation.HRESULT> MapPropertyToPage_5; 263 internal delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,winmdroot.System.Ole.CALPOLESTR* ,winmdroot.System.Ole.CADWORD* ,winmdroot.Foundation.HRESULT> GetPredefinedStrings_6; 265 internal delegate *unmanaged [Stdcall]<IPerPropertyBrowsing*,int ,uint ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetPredefinedValue_7; 295 unsafe winmdroot.Foundation.HRESULT GetDisplayString(int dispID, winmdroot.Foundation.BSTR* pBstr); 298 unsafe winmdroot.Foundation.HRESULT MapPropertyToPage(int dispID, global::System.Guid* pClsid); 301 unsafe winmdroot.Foundation.HRESULT GetPredefinedStrings(int dispID, winmdroot.System.Ole.CALPOLESTR* pCaStringsOut, winmdroot.System.Ole.CADWORD* pCaCookiesOut); 304 unsafe winmdroot.Foundation.HRESULT GetPredefinedValue(int dispID, uint dwCookie, winmdroot.System.Variant.VARIANT* pVarOut);
Windows.Win32.IPersistPropertyBag.g.cs (34)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IPersistPropertyBag*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPersistPropertyBag*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 private static winmdroot.Foundation.HRESULT GetClassID(IPersistPropertyBag* pThis, global::System.Guid* pClassID) 70 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 79 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 ((delegate *unmanaged [Stdcall]<IPersistPropertyBag*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPersistPropertyBag*)Unsafe.AsPointer(ref this), pClassID).ThrowOnFailure(); 91 private static winmdroot.Foundation.HRESULT InitNew(IPersistPropertyBag* pThis) 95 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 104 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 public winmdroot.Foundation.HRESULT InitNew() 113 return ((delegate *unmanaged [Stdcall]<IPersistPropertyBag*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPersistPropertyBag*)Unsafe.AsPointer(ref this)); 119 private static winmdroot.Foundation.HRESULT Load(IPersistPropertyBag* pThis, winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.System.Com.IErrorLog* pErrorLog) 123 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 132 return (winmdroot.Foundation.HRESULT)ex.HResult; 144 public unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.System.Com.IErrorLog* pErrorLog) 146 return ((delegate *unmanaged [Stdcall]<IPersistPropertyBag*,winmdroot.System.Com.StructuredStorage.IPropertyBag* ,winmdroot.System.Com.IErrorLog* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPersistPropertyBag*)Unsafe.AsPointer(ref this), pPropBag, pErrorLog); 152 private static winmdroot.Foundation.HRESULT Save(IPersistPropertyBag* pThis, winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.Foundation.BOOL fClearDirty, winmdroot.Foundation.BOOL fSaveAllProperties) 156 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 165 return (winmdroot.Foundation.HRESULT)ex.HResult; 178 public unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.Foundation.BOOL fClearDirty, winmdroot.Foundation.BOOL fSaveAllProperties) 180 return ((delegate *unmanaged [Stdcall]<IPersistPropertyBag*,winmdroot.System.Com.StructuredStorage.IPropertyBag* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPersistPropertyBag*)Unsafe.AsPointer(ref this), pPropBag, fClearDirty, fSaveAllProperties); 183 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 187 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 204 internal delegate *unmanaged [Stdcall]<IPersistPropertyBag*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 210 internal delegate *unmanaged [Stdcall]<IPersistPropertyBag*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 212 internal delegate *unmanaged [Stdcall]<IPersistPropertyBag*,winmdroot.Foundation.HRESULT> InitNew_5; 214 internal delegate *unmanaged [Stdcall]<IPersistPropertyBag*,winmdroot.System.Com.StructuredStorage.IPropertyBag* ,winmdroot.System.Com.IErrorLog* ,winmdroot.Foundation.HRESULT> Load_6; 216 internal delegate *unmanaged [Stdcall]<IPersistPropertyBag*,winmdroot.System.Com.StructuredStorage.IPropertyBag* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Save_7; 245 unsafe new winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID); 248winmdroot.Foundation.HRESULT InitNew(); 251 unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.System.Com.IErrorLog* pErrorLog); 254 unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.StructuredStorage.IPropertyBag* pPropBag, winmdroot.Foundation.BOOL fClearDirty, winmdroot.Foundation.BOOL fSaveAllProperties);
Windows.Win32.IPersistStorage.g.cs (55)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPersistStorage*)Unsafe.AsPointer(ref this), riid, ppvObject); 67 private static winmdroot.Foundation.HRESULT GetClassID(IPersistStorage* pThis, global::System.Guid* pClassID) 71 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 80 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 ((delegate *unmanaged [Stdcall]<IPersistStorage*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPersistStorage*)Unsafe.AsPointer(ref this), pClassID).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT IsDirty(IPersistStorage* pThis) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 115 public winmdroot.Foundation.HRESULT IsDirty() 117 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPersistStorage*)Unsafe.AsPointer(ref this)); 123 private static winmdroot.Foundation.HRESULT InitNew(IPersistStorage* pThis, winmdroot.System.Com.StructuredStorage.IStorage* pStg) 127 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 136 return (winmdroot.Foundation.HRESULT)ex.HResult; 151 public unsafe winmdroot.Foundation.HRESULT InitNew(winmdroot.System.Com.StructuredStorage.IStorage* pStg) 153 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPersistStorage*)Unsafe.AsPointer(ref this), pStg); 159 private static winmdroot.Foundation.HRESULT Load(IPersistStorage* pThis, winmdroot.System.Com.StructuredStorage.IStorage* pStg) 163 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 172 return (winmdroot.Foundation.HRESULT)ex.HResult; 187 public unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.StructuredStorage.IStorage* pStg) 189 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPersistStorage*)Unsafe.AsPointer(ref this), pStg); 195 private static winmdroot.Foundation.HRESULT Save(IPersistStorage* pThis, winmdroot.System.Com.StructuredStorage.IStorage* pStgSave, winmdroot.Foundation.BOOL fSameAsLoad) 199 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 208 return (winmdroot.Foundation.HRESULT)ex.HResult; 227 public unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.StructuredStorage.IStorage* pStgSave, winmdroot.Foundation.BOOL fSameAsLoad) 229 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IPersistStorage*)Unsafe.AsPointer(ref this), pStgSave, fSameAsLoad); 235 private static winmdroot.Foundation.HRESULT SaveCompleted(IPersistStorage* pThis, winmdroot.System.Com.StructuredStorage.IStorage* pStgNew) 239 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 248 return (winmdroot.Foundation.HRESULT)ex.HResult; 262 public unsafe winmdroot.Foundation.HRESULT SaveCompleted(winmdroot.System.Com.StructuredStorage.IStorage* pStgNew) 264 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IPersistStorage*)Unsafe.AsPointer(ref this), pStgNew); 270 private static winmdroot.Foundation.HRESULT HandsOffStorage(IPersistStorage* pThis) 274 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 283 return (winmdroot.Foundation.HRESULT)ex.HResult; 293 public winmdroot.Foundation.HRESULT HandsOffStorage() 295 return ((delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IPersistStorage*)Unsafe.AsPointer(ref this)); 298 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 302 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 319 internal delegate *unmanaged [Stdcall]<IPersistStorage*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 325 internal delegate *unmanaged [Stdcall]<IPersistStorage*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 327 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.Foundation.HRESULT> IsDirty_5; 329 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT> InitNew_6; 331 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT> Load_7; 333 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Save_8; 335 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT> SaveCompleted_9; 337 internal delegate *unmanaged [Stdcall]<IPersistStorage*,winmdroot.Foundation.HRESULT> HandsOffStorage_10; 370 unsafe new winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID); 373winmdroot.Foundation.HRESULT IsDirty(); 376 unsafe winmdroot.Foundation.HRESULT InitNew(winmdroot.System.Com.StructuredStorage.IStorage* pStg); 379 unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.StructuredStorage.IStorage* pStg); 382 unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.StructuredStorage.IStorage* pStgSave, winmdroot.Foundation.BOOL fSameAsLoad); 385 unsafe winmdroot.Foundation.HRESULT SaveCompleted(winmdroot.System.Com.StructuredStorage.IStorage* pStgNew); 388winmdroot.Foundation.HRESULT HandsOffStorage();
Windows.Win32.IPersistStreamInit.g.cs (47)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPersistStreamInit*)Unsafe.AsPointer(ref this), riid, ppvObject); 67 private static winmdroot.Foundation.HRESULT GetClassID(IPersistStreamInit* pThis, global::System.Guid* pClassID) 71 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 80 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPersistStreamInit*)Unsafe.AsPointer(ref this), pClassID).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT IsDirty(IPersistStreamInit* pThis) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 115 public winmdroot.Foundation.HRESULT IsDirty() 117 return ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPersistStreamInit*)Unsafe.AsPointer(ref this)); 123 private static winmdroot.Foundation.HRESULT Load(IPersistStreamInit* pThis, winmdroot.System.Com.IStream* pStm) 127 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 136 return (winmdroot.Foundation.HRESULT)ex.HResult; 150 public unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm) 152 return ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPersistStreamInit*)Unsafe.AsPointer(ref this), pStm); 158 private static winmdroot.Foundation.HRESULT Save(IPersistStreamInit* pThis, winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty) 162 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 171 return (winmdroot.Foundation.HRESULT)ex.HResult; 186 public unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty) 188 return ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPersistStreamInit*)Unsafe.AsPointer(ref this), pStm, fClearDirty); 203 private static winmdroot.Foundation.HRESULT GetSizeMax(IPersistStreamInit* pThis, ulong* pCbSize) 207 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 216 return (winmdroot.Foundation.HRESULT)ex.HResult; 229 ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,ulong* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IPersistStreamInit*)Unsafe.AsPointer(ref this), pCbSize).ThrowOnFailure(); 235 private static winmdroot.Foundation.HRESULT InitNew(IPersistStreamInit* pThis) 239 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 248 return (winmdroot.Foundation.HRESULT)ex.HResult; 258 public winmdroot.Foundation.HRESULT InitNew() 260 return ((delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IPersistStreamInit*)Unsafe.AsPointer(ref this)); 263 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 267 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 284 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 290 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetClassID_4; 292 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.Foundation.HRESULT> IsDirty_5; 294 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.HRESULT> Load_6; 296 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.System.Com.IStream* ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> Save_7; 298 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,ulong* ,winmdroot.Foundation.HRESULT> GetSizeMax_8; 300 internal delegate *unmanaged [Stdcall]<IPersistStreamInit*,winmdroot.Foundation.HRESULT> InitNew_9; 332 unsafe new winmdroot.Foundation.HRESULT GetClassID(global::System.Guid* pClassID); 335winmdroot.Foundation.HRESULT IsDirty(); 338 unsafe winmdroot.Foundation.HRESULT Load(winmdroot.System.Com.IStream* pStm); 341 unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Com.IStream* pStm, winmdroot.Foundation.BOOL fClearDirty); 344 unsafe winmdroot.Foundation.HRESULT GetSizeMax(ulong* pCbSize); 347winmdroot.Foundation.HRESULT InitNew();
Windows.Win32.IPropertyBag.g.cs (22)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IPropertyBag*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPropertyBag*)Unsafe.AsPointer(ref this), riid, ppvObject); 55 internal unsafe winmdroot.Foundation.HRESULT Read(string pszPropName, ref winmdroot.System.Variant.VARIANT pVar, winmdroot.System.Com.IErrorLog* pErrorLog) 61 winmdroot.Foundation.HRESULT __result = this.Read(pszPropNameLocal, pVarLocal, pErrorLog); 70 private static winmdroot.Foundation.HRESULT Read(IPropertyBag* pThis, winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Variant.VARIANT* pVar, winmdroot.System.Com.IErrorLog* pErrorLog) 74 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT Read(winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Variant.VARIANT* pVar, winmdroot.System.Com.IErrorLog* pErrorLog) 98 return ((delegate *unmanaged [Stdcall]<IPropertyBag*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.IErrorLog* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPropertyBag*)Unsafe.AsPointer(ref this), pszPropName, pVar, pErrorLog); 116 private static winmdroot.Foundation.HRESULT Write(IPropertyBag* pThis, winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Variant.VARIANT* pVar) 120 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 129 return (winmdroot.Foundation.HRESULT)ex.HResult; 143 ((delegate *unmanaged [Stdcall]<IPropertyBag*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPropertyBag*)Unsafe.AsPointer(ref this), pszPropName, pVar).ThrowOnFailure(); 146 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 150 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 167 internal delegate *unmanaged [Stdcall]<IPropertyBag*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 173 internal delegate *unmanaged [Stdcall]<IPropertyBag*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.IErrorLog* ,winmdroot.Foundation.HRESULT> Read_4; 175 internal delegate *unmanaged [Stdcall]<IPropertyBag*,winmdroot.Foundation.PCWSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Write_5; 202 unsafe winmdroot.Foundation.HRESULT Read(winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Variant.VARIANT* pVar, winmdroot.System.Com.IErrorLog* pErrorLog); 205 unsafe winmdroot.Foundation.HRESULT Write(winmdroot.Foundation.PCWSTR pszPropName, winmdroot.System.Variant.VARIANT* pVar);
Windows.Win32.IPropertyDescriptionList.g.cs (19)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPropertyDescriptionList*)Unsafe.AsPointer(ref this), riid, ppvObject); 67 private static winmdroot.Foundation.HRESULT GetCount(IPropertyDescriptionList* pThis, uint* pcElem) 71 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 80 return (winmdroot.Foundation.HRESULT)ex.HResult; 97 ((delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPropertyDescriptionList*)Unsafe.AsPointer(ref this), pcElem).ThrowOnFailure(); 115 private static winmdroot.Foundation.HRESULT GetAt(IPropertyDescriptionList* pThis, uint iElem, global::System.Guid* riid, void** ppv) 119 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 151 ((delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,uint ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPropertyDescriptionList*)Unsafe.AsPointer(ref this), iElem, riid, ppv).ThrowOnFailure(); 154 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 158 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 175 internal delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 181 internal delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,uint* ,winmdroot.Foundation.HRESULT> GetCount_4; 183 internal delegate *unmanaged [Stdcall]<IPropertyDescriptionList*,uint ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetAt_5; 211 unsafe winmdroot.Foundation.HRESULT GetCount(uint* pcElem); 214 unsafe winmdroot.Foundation.HRESULT GetAt(uint iElem, global::System.Guid* riid, void** ppv);
Windows.Win32.IPropertyNotifySink.g.cs (21)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IPropertyNotifySink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPropertyNotifySink*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT OnChanged(IPropertyNotifySink* pThis, int dispID) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 79 public winmdroot.Foundation.HRESULT OnChanged(int dispID) 81 return ((delegate *unmanaged [Stdcall]<IPropertyNotifySink*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPropertyNotifySink*)Unsafe.AsPointer(ref this), dispID); 87 private static winmdroot.Foundation.HRESULT OnRequestEdit(IPropertyNotifySink* pThis, int dispID) 91 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 100 return (winmdroot.Foundation.HRESULT)ex.HResult; 115 public winmdroot.Foundation.HRESULT OnRequestEdit(int dispID) 117 return ((delegate *unmanaged [Stdcall]<IPropertyNotifySink*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPropertyNotifySink*)Unsafe.AsPointer(ref this), dispID); 120 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 124 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 141 internal delegate *unmanaged [Stdcall]<IPropertyNotifySink*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 147 internal delegate *unmanaged [Stdcall]<IPropertyNotifySink*,int ,winmdroot.Foundation.HRESULT> OnChanged_4; 149 internal delegate *unmanaged [Stdcall]<IPropertyNotifySink*,int ,winmdroot.Foundation.HRESULT> OnRequestEdit_5; 177winmdroot.Foundation.HRESULT OnChanged(int dispID); 180winmdroot.Foundation.HRESULT OnRequestEdit(int dispID);
Windows.Win32.IPropertyStore.g.cs (37)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IPropertyStore*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IPropertyStore*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 private static winmdroot.Foundation.HRESULT GetCount(IPropertyStore* pThis, uint* cProps) 70 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 79 return (winmdroot.Foundation.HRESULT)ex.HResult; 92 ((delegate *unmanaged [Stdcall]<IPropertyStore*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IPropertyStore*)Unsafe.AsPointer(ref this), cProps).ThrowOnFailure(); 107 private static winmdroot.Foundation.HRESULT GetAt(IPropertyStore* pThis, uint iProp, winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* pkey) 111 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 120 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 ((delegate *unmanaged [Stdcall]<IPropertyStore*,uint ,winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IPropertyStore*)Unsafe.AsPointer(ref this), iProp, pkey).ThrowOnFailure(); 149 private static winmdroot.Foundation.HRESULT GetValue(IPropertyStore* pThis, winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* key, winmdroot.System.Com.StructuredStorage.PROPVARIANT* pv) 153 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 162 return (winmdroot.Foundation.HRESULT)ex.HResult; 175 ((delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* ,winmdroot.System.Com.StructuredStorage.PROPVARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IPropertyStore*)Unsafe.AsPointer(ref this), key, pv).ThrowOnFailure(); 193 private static winmdroot.Foundation.HRESULT SetValue(IPropertyStore* pThis, winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* key, winmdroot.System.Com.StructuredStorage.PROPVARIANT* propvar) 197 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 206 return (winmdroot.Foundation.HRESULT)ex.HResult; 223 ((delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* ,winmdroot.System.Com.StructuredStorage.PROPVARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IPropertyStore*)Unsafe.AsPointer(ref this), key, propvar).ThrowOnFailure(); 229 private static winmdroot.Foundation.HRESULT Commit(IPropertyStore* pThis) 233 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 242 return (winmdroot.Foundation.HRESULT)ex.HResult; 257 ((delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IPropertyStore*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 260 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 264 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 281 internal delegate *unmanaged [Stdcall]<IPropertyStore*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 287 internal delegate *unmanaged [Stdcall]<IPropertyStore*,uint* ,winmdroot.Foundation.HRESULT> GetCount_4; 289 internal delegate *unmanaged [Stdcall]<IPropertyStore*,uint ,winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* ,winmdroot.Foundation.HRESULT> GetAt_5; 291 internal delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* ,winmdroot.System.Com.StructuredStorage.PROPVARIANT* ,winmdroot.Foundation.HRESULT> GetValue_6; 293 internal delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* ,winmdroot.System.Com.StructuredStorage.PROPVARIANT* ,winmdroot.Foundation.HRESULT> SetValue_7; 295 internal delegate *unmanaged [Stdcall]<IPropertyStore*,winmdroot.Foundation.HRESULT> Commit_8; 325 unsafe winmdroot.Foundation.HRESULT GetCount(uint* cProps); 328 unsafe winmdroot.Foundation.HRESULT GetAt(uint iProp, winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* pkey); 331 unsafe winmdroot.Foundation.HRESULT GetValue(winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* key, winmdroot.System.Com.StructuredStorage.PROPVARIANT* pv); 334 unsafe winmdroot.Foundation.HRESULT SetValue(winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* key, winmdroot.System.Com.StructuredStorage.PROPVARIANT* propvar); 337winmdroot.Foundation.HRESULT Commit();
Windows.Win32.IProvideClassInfo.g.cs (14)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IProvideClassInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IProvideClassInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetClassInfo(IProvideClassInfo* pThis, winmdroot.System.Com.ITypeInfo** ppTI) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT GetClassInfo(winmdroot.System.Com.ITypeInfo** ppTI) 87 return ((delegate *unmanaged [Stdcall]<IProvideClassInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IProvideClassInfo*)Unsafe.AsPointer(ref this), ppTI); 90 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 94 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 111 internal delegate *unmanaged [Stdcall]<IProvideClassInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 117 internal delegate *unmanaged [Stdcall]<IProvideClassInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetClassInfo_4; 144 unsafe winmdroot.Foundation.HRESULT GetClassInfo(winmdroot.System.Com.ITypeInfo** ppTI);
Windows.Win32.IProvideClassInfo2.g.cs (19)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IProvideClassInfo2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IProvideClassInfo2*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetClassInfo(IProvideClassInfo2* pThis, winmdroot.System.Com.ITypeInfo** ppTI) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 77 ((delegate *unmanaged [Stdcall]<IProvideClassInfo2*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IProvideClassInfo2*)Unsafe.AsPointer(ref this), ppTI).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT GetGUID(IProvideClassInfo2* pThis, uint dwGuidKind, global::System.Guid* pGUID) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 118 ((delegate *unmanaged [Stdcall]<IProvideClassInfo2*,uint ,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IProvideClassInfo2*)Unsafe.AsPointer(ref this), dwGuidKind, pGUID).ThrowOnFailure(); 121 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 125 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 142 internal delegate *unmanaged [Stdcall]<IProvideClassInfo2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 148 internal delegate *unmanaged [Stdcall]<IProvideClassInfo2*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetClassInfo_4; 150 internal delegate *unmanaged [Stdcall]<IProvideClassInfo2*,uint ,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetGUID_5; 178 unsafe new winmdroot.Foundation.HRESULT GetClassInfo(winmdroot.System.Com.ITypeInfo** ppTI); 181 unsafe winmdroot.Foundation.HRESULT GetGUID(uint dwGuidKind, global::System.Guid* pGUID);
Windows.Win32.IProvideMultipleClassInfo.g.cs (37)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IProvideMultipleClassInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetClassInfo(IProvideMultipleClassInfo* pThis, winmdroot.System.Com.ITypeInfo** ppTI) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 77 ((delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IProvideMultipleClassInfo*)Unsafe.AsPointer(ref this), ppTI).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT GetGUID(IProvideMultipleClassInfo* pThis, uint dwGuidKind, global::System.Guid* pGUID) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 111 ((delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,uint ,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IProvideMultipleClassInfo*)Unsafe.AsPointer(ref this), dwGuidKind, pGUID).ThrowOnFailure(); 115 internal unsafe winmdroot.Foundation.HRESULT GetMultiTypeInfoCount(out uint pcti) 119 winmdroot.Foundation.HRESULT __result = this.GetMultiTypeInfoCount(pctiLocal); 127 private static winmdroot.Foundation.HRESULT GetMultiTypeInfoCount(IProvideMultipleClassInfo* pThis, uint* pcti) 131 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 140 return (winmdroot.Foundation.HRESULT)ex.HResult; 150 public unsafe winmdroot.Foundation.HRESULT GetMultiTypeInfoCount(uint* pcti) 152 return ((delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IProvideMultipleClassInfo*)Unsafe.AsPointer(ref this), pcti); 156 internal unsafe winmdroot.Foundation.HRESULT GetInfoOfIndex(uint iti, winmdroot.System.Ole.MULTICLASSINFO_FLAGS dwFlags, winmdroot.System.Com.ITypeInfo** pptiCoClass, out uint pdwTIFlags, out uint pcdispidReserved, out global::System.Guid piidPrimary, out global::System.Guid piidSource) 166 winmdroot.Foundation.HRESULT __result = this.GetInfoOfIndex(iti, dwFlags, pptiCoClass, pdwTIFlagsLocal, pcdispidReservedLocal, piidPrimaryLocal, piidSourceLocal); 177 private static winmdroot.Foundation.HRESULT GetInfoOfIndex(IProvideMultipleClassInfo* pThis, uint iti, winmdroot.System.Ole.MULTICLASSINFO_FLAGS dwFlags, winmdroot.System.Com.ITypeInfo** pptiCoClass, uint* pdwTIFlags, uint* pcdispidReserved, global::System.Guid* piidPrimary, global::System.Guid* piidSource) 181 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 206 public unsafe winmdroot.Foundation.HRESULT GetInfoOfIndex(uint iti, winmdroot.System.Ole.MULTICLASSINFO_FLAGS dwFlags, winmdroot.System.Com.ITypeInfo** pptiCoClass, uint* pdwTIFlags, uint* pcdispidReserved, global::System.Guid* piidPrimary, global::System.Guid* piidSource) 208 return ((delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,uint ,winmdroot.System.Ole.MULTICLASSINFO_FLAGS ,winmdroot.System.Com.ITypeInfo** ,uint* ,uint* ,global::System.Guid* ,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IProvideMultipleClassInfo*)Unsafe.AsPointer(ref this), iti, dwFlags, pptiCoClass, pdwTIFlags, pcdispidReserved, piidPrimary, piidSource); 211 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 215 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 232 internal delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 238 internal delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetClassInfo_4; 240 internal delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,uint ,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetGUID_5; 242 internal delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,uint* ,winmdroot.Foundation.HRESULT> GetMultiTypeInfoCount_6; 244 internal delegate *unmanaged [Stdcall]<IProvideMultipleClassInfo*,uint ,winmdroot.System.Ole.MULTICLASSINFO_FLAGS ,winmdroot.System.Com.ITypeInfo** ,uint* ,uint* ,global::System.Guid* ,global::System.Guid* ,winmdroot.Foundation.HRESULT> GetInfoOfIndex_7; 274 unsafe new winmdroot.Foundation.HRESULT GetClassInfo(winmdroot.System.Com.ITypeInfo** ppTI); 277 unsafe new winmdroot.Foundation.HRESULT GetGUID(uint dwGuidKind, global::System.Guid* pGUID); 280 unsafe winmdroot.Foundation.HRESULT GetMultiTypeInfoCount(uint* pcti); 283 unsafe winmdroot.Foundation.HRESULT GetInfoOfIndex(uint iti, winmdroot.System.Ole.MULTICLASSINFO_FLAGS dwFlags, winmdroot.System.Com.ITypeInfo** pptiCoClass, uint* pdwTIFlags, uint* pcdispidReserved, global::System.Guid* piidPrimary, global::System.Guid* piidSource);
Windows.Win32.IQuickActivate.g.cs (34)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IQuickActivate*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IQuickActivate*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT QuickActivate(in winmdroot.System.Ole.QACONTAINER pQaContainer, ref winmdroot.System.Ole.QACONTROL pQaControl) 62 winmdroot.Foundation.HRESULT __result = this.QuickActivate(pQaContainerLocal, pQaControlLocal); 71 private static winmdroot.Foundation.HRESULT QuickActivate(IQuickActivate* pThis, winmdroot.System.Ole.QACONTAINER* pQaContainer, winmdroot.System.Ole.QACONTROL* pQaControl) 75 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 84 return (winmdroot.Foundation.HRESULT)ex.HResult; 96 public unsafe winmdroot.Foundation.HRESULT QuickActivate(winmdroot.System.Ole.QACONTAINER* pQaContainer, winmdroot.System.Ole.QACONTROL* pQaControl) 98 return ((delegate *unmanaged [Stdcall]<IQuickActivate*,winmdroot.System.Ole.QACONTAINER* ,winmdroot.System.Ole.QACONTROL* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IQuickActivate*)Unsafe.AsPointer(ref this), pQaContainer, pQaControl); 102 internal unsafe winmdroot.Foundation.HRESULT SetContentExtent(in winmdroot.Foundation.SIZE pSizel) 106 winmdroot.Foundation.HRESULT __result = this.SetContentExtent(pSizelLocal); 114 private static winmdroot.Foundation.HRESULT SetContentExtent(IQuickActivate* pThis, winmdroot.Foundation.SIZE* pSizel) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 137 public unsafe winmdroot.Foundation.HRESULT SetContentExtent(winmdroot.Foundation.SIZE* pSizel) 139 return ((delegate *unmanaged [Stdcall]<IQuickActivate*,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IQuickActivate*)Unsafe.AsPointer(ref this), pSizel); 143 internal unsafe winmdroot.Foundation.HRESULT GetContentExtent(out winmdroot.Foundation.SIZE pSizel) 147 winmdroot.Foundation.HRESULT __result = this.GetContentExtent(pSizelLocal); 155 private static winmdroot.Foundation.HRESULT GetContentExtent(IQuickActivate* pThis, winmdroot.Foundation.SIZE* pSizel) 159 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 168 return (winmdroot.Foundation.HRESULT)ex.HResult; 181 public unsafe winmdroot.Foundation.HRESULT GetContentExtent(winmdroot.Foundation.SIZE* pSizel) 183 return ((delegate *unmanaged [Stdcall]<IQuickActivate*,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IQuickActivate*)Unsafe.AsPointer(ref this), pSizel); 186 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 190 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 207 internal delegate *unmanaged [Stdcall]<IQuickActivate*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 213 internal delegate *unmanaged [Stdcall]<IQuickActivate*,winmdroot.System.Ole.QACONTAINER* ,winmdroot.System.Ole.QACONTROL* ,winmdroot.Foundation.HRESULT> QuickActivate_4; 215 internal delegate *unmanaged [Stdcall]<IQuickActivate*,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT> SetContentExtent_5; 217 internal delegate *unmanaged [Stdcall]<IQuickActivate*,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT> GetContentExtent_6; 246 unsafe winmdroot.Foundation.HRESULT QuickActivate(winmdroot.System.Ole.QACONTAINER* pQaContainer, winmdroot.System.Ole.QACONTROL* pQaControl); 249 unsafe winmdroot.Foundation.HRESULT SetContentExtent(winmdroot.Foundation.SIZE* pSizel); 252 unsafe winmdroot.Foundation.HRESULT GetContentExtent(winmdroot.Foundation.SIZE* pSizel);
Windows.Win32.IRangeValueProvider.g.cs (67)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRangeValueProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT SetValue(IRangeValueProvider* pThis, double val) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRangeValueProvider*)Unsafe.AsPointer(ref this), val).ThrowOnFailure(); 90 internal unsafe winmdroot.Foundation.HRESULT get_Value(out double pRetVal) 94 winmdroot.Foundation.HRESULT __result = this.get_Value(pRetValLocal); 102 private static winmdroot.Foundation.HRESULT get_Value(IRangeValueProvider* pThis, double* pRetVal) 106 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 115 return (winmdroot.Foundation.HRESULT)ex.HResult; 123 public unsafe winmdroot.Foundation.HRESULT get_Value(double* pRetVal) 125 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 129 internal unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(out winmdroot.Foundation.BOOL pRetVal) 133 winmdroot.Foundation.HRESULT __result = this.get_IsReadOnly(pRetValLocal); 141 private static winmdroot.Foundation.HRESULT get_IsReadOnly(IRangeValueProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 145 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 154 return (winmdroot.Foundation.HRESULT)ex.HResult; 162 public unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(winmdroot.Foundation.BOOL* pRetVal) 164 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 168 internal unsafe winmdroot.Foundation.HRESULT get_Maximum(out double pRetVal) 172 winmdroot.Foundation.HRESULT __result = this.get_Maximum(pRetValLocal); 180 private static winmdroot.Foundation.HRESULT get_Maximum(IRangeValueProvider* pThis, double* pRetVal) 184 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 193 return (winmdroot.Foundation.HRESULT)ex.HResult; 199 public unsafe winmdroot.Foundation.HRESULT get_Maximum(double* pRetVal) 201 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 205 internal unsafe winmdroot.Foundation.HRESULT get_Minimum(out double pRetVal) 209 winmdroot.Foundation.HRESULT __result = this.get_Minimum(pRetValLocal); 217 private static winmdroot.Foundation.HRESULT get_Minimum(IRangeValueProvider* pThis, double* pRetVal) 221 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 230 return (winmdroot.Foundation.HRESULT)ex.HResult; 236 public unsafe winmdroot.Foundation.HRESULT get_Minimum(double* pRetVal) 238 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 242 internal unsafe winmdroot.Foundation.HRESULT get_LargeChange(out double pRetVal) 246 winmdroot.Foundation.HRESULT __result = this.get_LargeChange(pRetValLocal); 254 private static winmdroot.Foundation.HRESULT get_LargeChange(IRangeValueProvider* pThis, double* pRetVal) 258 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 267 return (winmdroot.Foundation.HRESULT)ex.HResult; 278 public unsafe winmdroot.Foundation.HRESULT get_LargeChange(double* pRetVal) 280 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 284 internal unsafe winmdroot.Foundation.HRESULT get_SmallChange(out double pRetVal) 288 winmdroot.Foundation.HRESULT __result = this.get_SmallChange(pRetValLocal); 296 private static winmdroot.Foundation.HRESULT get_SmallChange(IRangeValueProvider* pThis, double* pRetVal) 300 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 309 return (winmdroot.Foundation.HRESULT)ex.HResult; 320 public unsafe winmdroot.Foundation.HRESULT get_SmallChange(double* pRetVal) 322 return ((delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IRangeValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 325 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 329 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 346 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 352 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double ,winmdroot.Foundation.HRESULT> SetValue_4; 354 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT> get_Value_5; 356 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_IsReadOnly_6; 358 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT> get_Maximum_7; 360 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT> get_Minimum_8; 362 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT> get_LargeChange_9; 364 internal delegate *unmanaged [Stdcall]<IRangeValueProvider*,double* ,winmdroot.Foundation.HRESULT> get_SmallChange_10; 397winmdroot.Foundation.HRESULT SetValue(double val); 400 unsafe winmdroot.Foundation.HRESULT get_Value(double* pRetVal); 403 unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(winmdroot.Foundation.BOOL* pRetVal); 406 unsafe winmdroot.Foundation.HRESULT get_Maximum(double* pRetVal); 409 unsafe winmdroot.Foundation.HRESULT get_Minimum(double* pRetVal); 412 unsafe winmdroot.Foundation.HRESULT get_LargeChange(double* pRetVal); 415 unsafe winmdroot.Foundation.HRESULT get_SmallChange(double* pRetVal);
Windows.Win32.IRawElementProviderFragment.g.cs (55)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Navigate(IRawElementProviderFragment* pThis, winmdroot.UI.Accessibility.NavigateDirection direction, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 public unsafe winmdroot.Foundation.HRESULT Navigate(winmdroot.UI.Accessibility.NavigateDirection direction, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 89 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.UI.Accessibility.NavigateDirection ,winmdroot.UI.Accessibility.IRawElementProviderFragment** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this), direction, pRetVal); 93 internal unsafe winmdroot.Foundation.HRESULT GetRuntimeId(out winmdroot.System.Com.SAFEARRAY* pRetVal) 97 winmdroot.Foundation.HRESULT __result = this.GetRuntimeId(pRetValLocal); 105 private static winmdroot.Foundation.HRESULT GetRuntimeId(IRawElementProviderFragment* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 109 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 118 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 public unsafe winmdroot.Foundation.HRESULT GetRuntimeId(winmdroot.System.Com.SAFEARRAY** pRetVal) 136 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this), pRetVal); 140 internal unsafe winmdroot.Foundation.HRESULT get_BoundingRectangle(out winmdroot.UI.Accessibility.UiaRect pRetVal) 144 winmdroot.Foundation.HRESULT __result = this.get_BoundingRectangle(pRetValLocal); 152 private static winmdroot.Foundation.HRESULT get_BoundingRectangle(IRawElementProviderFragment* pThis, winmdroot.UI.Accessibility.UiaRect* pRetVal) 156 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 165 return (winmdroot.Foundation.HRESULT)ex.HResult; 174 public unsafe winmdroot.Foundation.HRESULT get_BoundingRectangle(winmdroot.UI.Accessibility.UiaRect* pRetVal) 176 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.UI.Accessibility.UiaRect* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this), pRetVal); 180 internal unsafe winmdroot.Foundation.HRESULT GetEmbeddedFragmentRoots(out winmdroot.System.Com.SAFEARRAY* pRetVal) 184 winmdroot.Foundation.HRESULT __result = this.GetEmbeddedFragmentRoots(pRetValLocal); 192 private static winmdroot.Foundation.HRESULT GetEmbeddedFragmentRoots(IRawElementProviderFragment* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 196 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 205 return (winmdroot.Foundation.HRESULT)ex.HResult; 221 public unsafe winmdroot.Foundation.HRESULT GetEmbeddedFragmentRoots(winmdroot.System.Com.SAFEARRAY** pRetVal) 223 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this), pRetVal); 229 private static winmdroot.Foundation.HRESULT SetFocus(IRawElementProviderFragment* pThis) 233 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 242 return (winmdroot.Foundation.HRESULT)ex.HResult; 254 public winmdroot.Foundation.HRESULT SetFocus() 256 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this)); 262 private static winmdroot.Foundation.HRESULT get_FragmentRoot(IRawElementProviderFragment* pThis, winmdroot.UI.Accessibility.IRawElementProviderFragmentRoot** pRetVal) 266 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 275 return (winmdroot.Foundation.HRESULT)ex.HResult; 284 public unsafe winmdroot.Foundation.HRESULT get_FragmentRoot(winmdroot.UI.Accessibility.IRawElementProviderFragmentRoot** pRetVal) 286 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.UI.Accessibility.IRawElementProviderFragmentRoot** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IRawElementProviderFragment*)Unsafe.AsPointer(ref this), pRetVal); 289 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 293 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 310 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 316 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.UI.Accessibility.NavigateDirection ,winmdroot.UI.Accessibility.IRawElementProviderFragment** ,winmdroot.Foundation.HRESULT> Navigate_4; 318 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetRuntimeId_5; 320 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.UI.Accessibility.UiaRect* ,winmdroot.Foundation.HRESULT> get_BoundingRectangle_6; 322 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetEmbeddedFragmentRoots_7; 324 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.Foundation.HRESULT> SetFocus_8; 326 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragment*,winmdroot.UI.Accessibility.IRawElementProviderFragmentRoot** ,winmdroot.Foundation.HRESULT> get_FragmentRoot_9; 358 unsafe winmdroot.Foundation.HRESULT Navigate(winmdroot.UI.Accessibility.NavigateDirection direction, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal); 361 unsafe winmdroot.Foundation.HRESULT GetRuntimeId(winmdroot.System.Com.SAFEARRAY** pRetVal); 364 unsafe winmdroot.Foundation.HRESULT get_BoundingRectangle(winmdroot.UI.Accessibility.UiaRect* pRetVal); 367 unsafe winmdroot.Foundation.HRESULT GetEmbeddedFragmentRoots(winmdroot.System.Com.SAFEARRAY** pRetVal); 370winmdroot.Foundation.HRESULT SetFocus(); 373 unsafe winmdroot.Foundation.HRESULT get_FragmentRoot(winmdroot.UI.Accessibility.IRawElementProviderFragmentRoot** pRetVal);
Windows.Win32.IRawElementProviderFragmentRoot.g.cs (21)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRawElementProviderFragmentRoot*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT ElementProviderFromPoint(IRawElementProviderFragmentRoot* pThis, double x, double y, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 95 public unsafe winmdroot.Foundation.HRESULT ElementProviderFromPoint(double x, double y, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 97 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,double ,double ,winmdroot.UI.Accessibility.IRawElementProviderFragment** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRawElementProviderFragmentRoot*)Unsafe.AsPointer(ref this), x, y, pRetVal); 103 private static winmdroot.Foundation.HRESULT GetFocus(IRawElementProviderFragmentRoot* pThis, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 107 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 116 return (winmdroot.Foundation.HRESULT)ex.HResult; 131 public unsafe winmdroot.Foundation.HRESULT GetFocus(winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal) 133 return ((delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,winmdroot.UI.Accessibility.IRawElementProviderFragment** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRawElementProviderFragmentRoot*)Unsafe.AsPointer(ref this), pRetVal); 136 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 140 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 157 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 163 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,double ,double ,winmdroot.UI.Accessibility.IRawElementProviderFragment** ,winmdroot.Foundation.HRESULT> ElementProviderFromPoint_4; 165 internal delegate *unmanaged [Stdcall]<IRawElementProviderFragmentRoot*,winmdroot.UI.Accessibility.IRawElementProviderFragment** ,winmdroot.Foundation.HRESULT> GetFocus_5; 193 unsafe winmdroot.Foundation.HRESULT ElementProviderFromPoint(double x, double y, winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal); 196 unsafe winmdroot.Foundation.HRESULT GetFocus(winmdroot.UI.Accessibility.IRawElementProviderFragment** pRetVal);
Windows.Win32.IRawElementProviderHwndOverride.g.cs (14)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IRawElementProviderHwndOverride*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRawElementProviderHwndOverride*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetOverrideProviderForHwnd(IRawElementProviderHwndOverride* pThis, winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 91 public unsafe winmdroot.Foundation.HRESULT GetOverrideProviderForHwnd(winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 93 return ((delegate *unmanaged [Stdcall]<IRawElementProviderHwndOverride*,winmdroot.Foundation.HWND ,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRawElementProviderHwndOverride*)Unsafe.AsPointer(ref this), hwnd, pRetVal); 96 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 100 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 117 internal delegate *unmanaged [Stdcall]<IRawElementProviderHwndOverride*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 123 internal delegate *unmanaged [Stdcall]<IRawElementProviderHwndOverride*,winmdroot.Foundation.HWND ,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> GetOverrideProviderForHwnd_4; 150 unsafe winmdroot.Foundation.HRESULT GetOverrideProviderForHwnd(winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal);
Windows.Win32.IRawElementProviderSimple.g.cs (39)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRawElementProviderSimple*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT get_ProviderOptions(out winmdroot.UI.Accessibility.ProviderOptions pRetVal) 60 winmdroot.Foundation.HRESULT __result = this.get_ProviderOptions(pRetValLocal); 68 private static winmdroot.Foundation.HRESULT get_ProviderOptions(IRawElementProviderSimple* pThis, winmdroot.UI.Accessibility.ProviderOptions* pRetVal) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 90 public unsafe winmdroot.Foundation.HRESULT get_ProviderOptions(winmdroot.UI.Accessibility.ProviderOptions* pRetVal) 92 return ((delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.ProviderOptions* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRawElementProviderSimple*)Unsafe.AsPointer(ref this), pRetVal); 98 private static winmdroot.Foundation.HRESULT GetPatternProvider(IRawElementProviderSimple* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** pRetVal) 102 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 111 return (winmdroot.Foundation.HRESULT)ex.HResult; 130 public unsafe winmdroot.Foundation.HRESULT GetPatternProvider(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** pRetVal) 132 return ((delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRawElementProviderSimple*)Unsafe.AsPointer(ref this), patternId, pRetVal); 136 internal unsafe winmdroot.Foundation.HRESULT GetPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, out winmdroot.System.Variant.VARIANT pRetVal) 140 winmdroot.Foundation.HRESULT __result = this.GetPropertyValue(propertyId, pRetValLocal); 148 private static winmdroot.Foundation.HRESULT GetPropertyValue(IRawElementProviderSimple* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* pRetVal) 152 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 161 return (winmdroot.Foundation.HRESULT)ex.HResult; 183 public unsafe winmdroot.Foundation.HRESULT GetPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* pRetVal) 185 return ((delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRawElementProviderSimple*)Unsafe.AsPointer(ref this), propertyId, pRetVal); 191 private static winmdroot.Foundation.HRESULT get_HostRawElementProvider(IRawElementProviderSimple* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 195 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 204 return (winmdroot.Foundation.HRESULT)ex.HResult; 213 public unsafe winmdroot.Foundation.HRESULT get_HostRawElementProvider(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 215 return ((delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IRawElementProviderSimple*)Unsafe.AsPointer(ref this), pRetVal); 218 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 222 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 239 internal delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 245 internal delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.ProviderOptions* ,winmdroot.Foundation.HRESULT> get_ProviderOptions_4; 247 internal delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetPatternProvider_5; 249 internal delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetPropertyValue_6; 251 internal delegate *unmanaged [Stdcall]<IRawElementProviderSimple*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> get_HostRawElementProvider_7; 281 unsafe winmdroot.Foundation.HRESULT get_ProviderOptions(winmdroot.UI.Accessibility.ProviderOptions* pRetVal); 284 unsafe winmdroot.Foundation.HRESULT GetPatternProvider(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** pRetVal); 287 unsafe winmdroot.Foundation.HRESULT GetPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* pRetVal); 290 unsafe winmdroot.Foundation.HRESULT get_HostRawElementProvider(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal);
Windows.Win32.IRichEditOle.g.cs (93)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IRichEditOle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRichEditOle*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetClientSite(IRichEditOle* pThis, winmdroot.System.Ole.IOleClientSite** lplpolesite) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.System.Ole.IOleClientSite** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRichEditOle*)Unsafe.AsPointer(ref this), lplpolesite).ThrowOnFailure(); 98 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 128 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 163 private static winmdroot.Foundation.HRESULT GetObject(IRichEditOle* pThis, int iob, winmdroot.UI.Controls.RichEdit.REOBJECT* lpreobject, winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_OBJECT_FLAGS dwFlags) 167 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 198 ((delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.UI.Controls.RichEdit.REOBJECT* ,winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_OBJECT_FLAGS ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IRichEditOle*)Unsafe.AsPointer(ref this), iob, lpreobject, dwFlags).ThrowOnFailure(); 213 private static winmdroot.Foundation.HRESULT InsertObject(IRichEditOle* pThis, winmdroot.UI.Controls.RichEdit.REOBJECT* lpreobject) 217 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 226 return (winmdroot.Foundation.HRESULT)ex.HResult; 241 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.UI.Controls.RichEdit.REOBJECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRichEditOle*)Unsafe.AsPointer(ref this), lpreobject).ThrowOnFailure(); 259 private static winmdroot.Foundation.HRESULT ConvertObject(IRichEditOle* pThis, int iob, global::System.Guid* rclsidNew, winmdroot.Foundation.PCSTR lpstrUserTypeNew) 263 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 272 return (winmdroot.Foundation.HRESULT)ex.HResult; 297 ((delegate *unmanaged [Stdcall]<IRichEditOle*,int ,global::System.Guid* ,winmdroot.Foundation.PCSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IRichEditOle*)Unsafe.AsPointer(ref this), iob, rclsidNew, lpstrUserTypeNew).ThrowOnFailure(); 315 private static winmdroot.Foundation.HRESULT ActivateAs(IRichEditOle* pThis, global::System.Guid* rclsid, global::System.Guid* rclsidAs) 319 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 328 return (winmdroot.Foundation.HRESULT)ex.HResult; 349 ((delegate *unmanaged [Stdcall]<IRichEditOle*,global::System.Guid* ,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IRichEditOle*)Unsafe.AsPointer(ref this), rclsid, rclsidAs).ThrowOnFailure(); 367 private static winmdroot.Foundation.HRESULT SetHostNames(IRichEditOle* pThis, winmdroot.Foundation.PCSTR lpstrContainerApp, winmdroot.Foundation.PCSTR lpstrContainerObj) 371 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 380 return (winmdroot.Foundation.HRESULT)ex.HResult; 401 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.PCSTR ,winmdroot.Foundation.PCSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IRichEditOle*)Unsafe.AsPointer(ref this), lpstrContainerApp, lpstrContainerObj).ThrowOnFailure(); 407 private static winmdroot.Foundation.HRESULT SetLinkAvailable(IRichEditOle* pThis, int iob, winmdroot.Foundation.BOOL fAvailable) 411 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 420 return (winmdroot.Foundation.HRESULT)ex.HResult; 441 ((delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IRichEditOle*)Unsafe.AsPointer(ref this), iob, fAvailable).ThrowOnFailure(); 447 private static winmdroot.Foundation.HRESULT SetDvaspect(IRichEditOle* pThis, int iob, uint dvaspect) 451 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 460 return (winmdroot.Foundation.HRESULT)ex.HResult; 481 ((delegate *unmanaged [Stdcall]<IRichEditOle*,int ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IRichEditOle*)Unsafe.AsPointer(ref this), iob, dvaspect).ThrowOnFailure(); 487 private static winmdroot.Foundation.HRESULT HandsOffStorage(IRichEditOle* pThis, int iob) 491 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 500 return (winmdroot.Foundation.HRESULT)ex.HResult; 517 ((delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IRichEditOle*)Unsafe.AsPointer(ref this), iob).ThrowOnFailure(); 523 private static winmdroot.Foundation.HRESULT SaveCompleted(IRichEditOle* pThis, int iob, winmdroot.System.Com.StructuredStorage.IStorage* lpstg) 527 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 536 return (winmdroot.Foundation.HRESULT)ex.HResult; 557 ((delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IRichEditOle*)Unsafe.AsPointer(ref this), iob, lpstg).ThrowOnFailure(); 563 private static winmdroot.Foundation.HRESULT InPlaceDeactivate(IRichEditOle* pThis) 567 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 576 return (winmdroot.Foundation.HRESULT)ex.HResult; 589 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IRichEditOle*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 595 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IRichEditOle* pThis, winmdroot.Foundation.BOOL fEnterMode) 599 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 608 return (winmdroot.Foundation.HRESULT)ex.HResult; 625 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IRichEditOle*)Unsafe.AsPointer(ref this), fEnterMode).ThrowOnFailure(); 640 private static winmdroot.Foundation.HRESULT GetClipboardData(IRichEditOle* pThis, winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj) 644 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 653 return (winmdroot.Foundation.HRESULT)ex.HResult; 679 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.UI.Controls.RichEdit.CHARRANGE* ,uint ,winmdroot.System.Com.IDataObject** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IRichEditOle*)Unsafe.AsPointer(ref this), lpchrg, reco, lplpdataobj).ThrowOnFailure(); 685 private static winmdroot.Foundation.HRESULT ImportDataObject(IRichEditOle* pThis, winmdroot.System.Com.IDataObject* lpdataobj, ushort cf, winmdroot.Foundation.HGLOBAL hMetaPict) 689 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 698 return (winmdroot.Foundation.HRESULT)ex.HResult; 724 ((delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.System.Com.IDataObject* ,ushort ,winmdroot.Foundation.HGLOBAL ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IRichEditOle*)Unsafe.AsPointer(ref this), lpdataobj, cf, hMetaPict).ThrowOnFailure(); 727 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 731 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 748 internal delegate *unmanaged [Stdcall]<IRichEditOle*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 754 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.System.Ole.IOleClientSite** ,winmdroot.Foundation.HRESULT> GetClientSite_4; 760 internal delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.UI.Controls.RichEdit.REOBJECT* ,winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_OBJECT_FLAGS ,winmdroot.Foundation.HRESULT> GetObject_7; 762 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.UI.Controls.RichEdit.REOBJECT* ,winmdroot.Foundation.HRESULT> InsertObject_8; 764 internal delegate *unmanaged [Stdcall]<IRichEditOle*,int ,global::System.Guid* ,winmdroot.Foundation.PCSTR ,winmdroot.Foundation.HRESULT> ConvertObject_9; 766 internal delegate *unmanaged [Stdcall]<IRichEditOle*,global::System.Guid* ,global::System.Guid* ,winmdroot.Foundation.HRESULT> ActivateAs_10; 768 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.PCSTR ,winmdroot.Foundation.PCSTR ,winmdroot.Foundation.HRESULT> SetHostNames_11; 770 internal delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> SetLinkAvailable_12; 772 internal delegate *unmanaged [Stdcall]<IRichEditOle*,int ,uint ,winmdroot.Foundation.HRESULT> SetDvaspect_13; 774 internal delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.Foundation.HRESULT> HandsOffStorage_14; 776 internal delegate *unmanaged [Stdcall]<IRichEditOle*,int ,winmdroot.System.Com.StructuredStorage.IStorage* ,winmdroot.Foundation.HRESULT> SaveCompleted_15; 778 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.HRESULT> InPlaceDeactivate_16; 780 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_17; 782 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.UI.Controls.RichEdit.CHARRANGE* ,uint ,winmdroot.System.Com.IDataObject** ,winmdroot.Foundation.HRESULT> GetClipboardData_18; 784 internal delegate *unmanaged [Stdcall]<IRichEditOle*,winmdroot.System.Com.IDataObject* ,ushort ,winmdroot.Foundation.HGLOBAL ,winmdroot.Foundation.HRESULT> ImportDataObject_19; 826 unsafe winmdroot.Foundation.HRESULT GetClientSite(winmdroot.System.Ole.IOleClientSite** lplpolesite); 835 unsafe winmdroot.Foundation.HRESULT GetObject(int iob, winmdroot.UI.Controls.RichEdit.REOBJECT* lpreobject, winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_OBJECT_FLAGS dwFlags); 838 unsafe winmdroot.Foundation.HRESULT InsertObject(winmdroot.UI.Controls.RichEdit.REOBJECT* lpreobject); 841 unsafe winmdroot.Foundation.HRESULT ConvertObject(int iob, global::System.Guid* rclsidNew, winmdroot.Foundation.PCSTR lpstrUserTypeNew); 844 unsafe winmdroot.Foundation.HRESULT ActivateAs(global::System.Guid* rclsid, global::System.Guid* rclsidAs); 847winmdroot.Foundation.HRESULT SetHostNames(winmdroot.Foundation.PCSTR lpstrContainerApp, winmdroot.Foundation.PCSTR lpstrContainerObj); 850winmdroot.Foundation.HRESULT SetLinkAvailable(int iob, winmdroot.Foundation.BOOL fAvailable); 853winmdroot.Foundation.HRESULT SetDvaspect(int iob, uint dvaspect); 856winmdroot.Foundation.HRESULT HandsOffStorage(int iob); 859 unsafe winmdroot.Foundation.HRESULT SaveCompleted(int iob, winmdroot.System.Com.StructuredStorage.IStorage* lpstg); 862winmdroot.Foundation.HRESULT InPlaceDeactivate(); 865winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 868 unsafe winmdroot.Foundation.HRESULT GetClipboardData(winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj); 871 unsafe winmdroot.Foundation.HRESULT ImportDataObject(winmdroot.System.Com.IDataObject* lpdataobj, ushort cf, winmdroot.Foundation.HGLOBAL hMetaPict);
Windows.Win32.IRichEditOleCallback.g.cs (89)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetNewStorage(IRichEditOleCallback* pThis, winmdroot.System.Com.StructuredStorage.IStorage** lplpstg) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 public unsafe winmdroot.Foundation.HRESULT GetNewStorage(winmdroot.System.Com.StructuredStorage.IStorage** lplpstg) 87 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), lplpstg); 91 internal unsafe winmdroot.Foundation.HRESULT GetInPlaceContext(winmdroot.System.Ole.IOleInPlaceFrame** lplpFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** lplpDoc, ref winmdroot.System.Ole.OLEINPLACEFRAMEINFO lpFrameInfo) 95 winmdroot.Foundation.HRESULT __result = this.GetInPlaceContext(lplpFrame, lplpDoc, lpFrameInfoLocal); 103 private static winmdroot.Foundation.HRESULT GetInPlaceContext(IRichEditOleCallback* pThis, winmdroot.System.Ole.IOleInPlaceFrame** lplpFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** lplpDoc, winmdroot.System.Ole.OLEINPLACEFRAMEINFO* lpFrameInfo) 107 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 116 return (winmdroot.Foundation.HRESULT)ex.HResult; 140 public unsafe winmdroot.Foundation.HRESULT GetInPlaceContext(winmdroot.System.Ole.IOleInPlaceFrame** lplpFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** lplpDoc, winmdroot.System.Ole.OLEINPLACEFRAMEINFO* lpFrameInfo) 142 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Ole.IOleInPlaceFrame** ,winmdroot.System.Ole.IOleInPlaceUIWindow** ,winmdroot.System.Ole.OLEINPLACEFRAMEINFO* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), lplpFrame, lplpDoc, lpFrameInfo); 148 private static winmdroot.Foundation.HRESULT ShowContainerUI(IRichEditOleCallback* pThis, winmdroot.Foundation.BOOL fShow) 152 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 161 return (winmdroot.Foundation.HRESULT)ex.HResult; 178 public winmdroot.Foundation.HRESULT ShowContainerUI(winmdroot.Foundation.BOOL fShow) 180 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), fShow); 184 internal unsafe winmdroot.Foundation.HRESULT QueryInsertObject(ref global::System.Guid lpclsid, winmdroot.System.Com.StructuredStorage.IStorage* lpstg, int cp) 188 winmdroot.Foundation.HRESULT __result = this.QueryInsertObject(lpclsidLocal, lpstg, cp); 196 private static winmdroot.Foundation.HRESULT QueryInsertObject(IRichEditOleCallback* pThis, global::System.Guid* lpclsid, winmdroot.System.Com.StructuredStorage.IStorage* lpstg, int cp) 200 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 233 public unsafe winmdroot.Foundation.HRESULT QueryInsertObject(global::System.Guid* lpclsid, winmdroot.System.Com.StructuredStorage.IStorage* lpstg, int cp) 235 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,global::System.Guid* ,winmdroot.System.Com.StructuredStorage.IStorage* ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), lpclsid, lpstg, cp); 241 private static winmdroot.Foundation.HRESULT DeleteObject(IRichEditOleCallback* pThis, winmdroot.System.Ole.IOleObject* lpoleobj) 245 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 254 return (winmdroot.Foundation.HRESULT)ex.HResult; 269 public unsafe winmdroot.Foundation.HRESULT DeleteObject(winmdroot.System.Ole.IOleObject* lpoleobj) 271 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Ole.IOleObject* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), lpoleobj); 275 internal unsafe winmdroot.Foundation.HRESULT QueryAcceptData(winmdroot.System.Com.IDataObject* lpdataobj, ref ushort lpcfFormat, winmdroot.System.SystemServices.RECO_FLAGS reco, winmdroot.Foundation.BOOL fReally, winmdroot.Foundation.HGLOBAL hMetaPict) 279 winmdroot.Foundation.HRESULT __result = this.QueryAcceptData(lpdataobj, lpcfFormatLocal, reco, fReally, hMetaPict); 287 private static winmdroot.Foundation.HRESULT QueryAcceptData(IRichEditOleCallback* pThis, winmdroot.System.Com.IDataObject* lpdataobj, ushort* lpcfFormat, winmdroot.System.SystemServices.RECO_FLAGS reco, winmdroot.Foundation.BOOL fReally, winmdroot.Foundation.HGLOBAL hMetaPict) 291 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 300 return (winmdroot.Foundation.HRESULT)ex.HResult; 330 public unsafe winmdroot.Foundation.HRESULT QueryAcceptData(winmdroot.System.Com.IDataObject* lpdataobj, ushort* lpcfFormat, winmdroot.System.SystemServices.RECO_FLAGS reco, winmdroot.Foundation.BOOL fReally, winmdroot.Foundation.HGLOBAL hMetaPict) 332 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Com.IDataObject* ,ushort* ,winmdroot.System.SystemServices.RECO_FLAGS ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HGLOBAL ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), lpdataobj, lpcfFormat, reco, fReally, hMetaPict); 338 private static winmdroot.Foundation.HRESULT ContextSensitiveHelp(IRichEditOleCallback* pThis, winmdroot.Foundation.BOOL fEnterMode) 342 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 351 return (winmdroot.Foundation.HRESULT)ex.HResult; 367 public winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode) 369 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), fEnterMode); 373 internal unsafe winmdroot.Foundation.HRESULT GetClipboardData(ref winmdroot.UI.Controls.RichEdit.CHARRANGE lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj) 377 winmdroot.Foundation.HRESULT __result = this.GetClipboardData(lpchrgLocal, reco, lplpdataobj); 385 private static winmdroot.Foundation.HRESULT GetClipboardData(IRichEditOleCallback* pThis, winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj) 389 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 398 return (winmdroot.Foundation.HRESULT)ex.HResult; 423 public unsafe winmdroot.Foundation.HRESULT GetClipboardData(winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj) 425 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.UI.Controls.RichEdit.CHARRANGE* ,uint ,winmdroot.System.Com.IDataObject** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), lpchrg, reco, lplpdataobj); 429 internal unsafe winmdroot.Foundation.HRESULT GetDragDropEffect(winmdroot.Foundation.BOOL fDrag, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, ref winmdroot.System.Ole.DROPEFFECT pdwEffect) 433 winmdroot.Foundation.HRESULT __result = this.GetDragDropEffect(fDrag, grfKeyState, pdwEffectLocal); 441 private static winmdroot.Foundation.HRESULT GetDragDropEffect(IRichEditOleCallback* pThis, winmdroot.Foundation.BOOL fDrag, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 445 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 454 return (winmdroot.Foundation.HRESULT)ex.HResult; 477 public unsafe winmdroot.Foundation.HRESULT GetDragDropEffect(winmdroot.Foundation.BOOL fDrag, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.System.Ole.DROPEFFECT* pdwEffect) 479 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.Foundation.BOOL ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), fDrag, grfKeyState, pdwEffect); 483 internal unsafe winmdroot.Foundation.HRESULT GetContextMenu(winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_CONTEXT_MENU_SEL_TYPE seltype, winmdroot.System.Ole.IOleObject* lpoleobj, ref winmdroot.UI.Controls.RichEdit.CHARRANGE lpchrg, ref winmdroot.UI.WindowsAndMessaging.HMENU lphmenu) 489 winmdroot.Foundation.HRESULT __result = this.GetContextMenu(seltype, lpoleobj, lpchrgLocal, lphmenuLocal); 498 private static winmdroot.Foundation.HRESULT GetContextMenu(IRichEditOleCallback* pThis, winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_CONTEXT_MENU_SEL_TYPE seltype, winmdroot.System.Ole.IOleObject* lpoleobj, winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, winmdroot.UI.WindowsAndMessaging.HMENU* lphmenu) 502 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 511 return (winmdroot.Foundation.HRESULT)ex.HResult; 534 public unsafe winmdroot.Foundation.HRESULT GetContextMenu(winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_CONTEXT_MENU_SEL_TYPE seltype, winmdroot.System.Ole.IOleObject* lpoleobj, winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, winmdroot.UI.WindowsAndMessaging.HMENU* lphmenu) 536 return ((delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_CONTEXT_MENU_SEL_TYPE ,winmdroot.System.Ole.IOleObject* ,winmdroot.UI.Controls.RichEdit.CHARRANGE* ,winmdroot.UI.WindowsAndMessaging.HMENU* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IRichEditOleCallback*)Unsafe.AsPointer(ref this), seltype, lpoleobj, lpchrg, lphmenu); 539 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 543 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 560 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 566 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Com.StructuredStorage.IStorage** ,winmdroot.Foundation.HRESULT> GetNewStorage_4; 568 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Ole.IOleInPlaceFrame** ,winmdroot.System.Ole.IOleInPlaceUIWindow** ,winmdroot.System.Ole.OLEINPLACEFRAMEINFO* ,winmdroot.Foundation.HRESULT> GetInPlaceContext_5; 570 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ShowContainerUI_6; 572 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,global::System.Guid* ,winmdroot.System.Com.StructuredStorage.IStorage* ,int ,winmdroot.Foundation.HRESULT> QueryInsertObject_7; 574 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Ole.IOleObject* ,winmdroot.Foundation.HRESULT> DeleteObject_8; 576 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.System.Com.IDataObject* ,ushort* ,winmdroot.System.SystemServices.RECO_FLAGS ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HGLOBAL ,winmdroot.Foundation.HRESULT> QueryAcceptData_9; 578 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ContextSensitiveHelp_10; 580 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.UI.Controls.RichEdit.CHARRANGE* ,uint ,winmdroot.System.Com.IDataObject** ,winmdroot.Foundation.HRESULT> GetClipboardData_11; 582 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.Foundation.BOOL ,winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS ,winmdroot.System.Ole.DROPEFFECT* ,winmdroot.Foundation.HRESULT> GetDragDropEffect_12; 584 internal delegate *unmanaged [Stdcall]<IRichEditOleCallback*,winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_CONTEXT_MENU_SEL_TYPE ,winmdroot.System.Ole.IOleObject* ,winmdroot.UI.Controls.RichEdit.CHARRANGE* ,winmdroot.UI.WindowsAndMessaging.HMENU* ,winmdroot.Foundation.HRESULT> GetContextMenu_13; 620 unsafe winmdroot.Foundation.HRESULT GetNewStorage(winmdroot.System.Com.StructuredStorage.IStorage** lplpstg); 623 unsafe winmdroot.Foundation.HRESULT GetInPlaceContext(winmdroot.System.Ole.IOleInPlaceFrame** lplpFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** lplpDoc, winmdroot.System.Ole.OLEINPLACEFRAMEINFO* lpFrameInfo); 626winmdroot.Foundation.HRESULT ShowContainerUI(winmdroot.Foundation.BOOL fShow); 629 unsafe winmdroot.Foundation.HRESULT QueryInsertObject(global::System.Guid* lpclsid, winmdroot.System.Com.StructuredStorage.IStorage* lpstg, int cp); 632 unsafe winmdroot.Foundation.HRESULT DeleteObject(winmdroot.System.Ole.IOleObject* lpoleobj); 635 unsafe winmdroot.Foundation.HRESULT QueryAcceptData(winmdroot.System.Com.IDataObject* lpdataobj, ushort* lpcfFormat, winmdroot.System.SystemServices.RECO_FLAGS reco, winmdroot.Foundation.BOOL fReally, winmdroot.Foundation.HGLOBAL hMetaPict); 638winmdroot.Foundation.HRESULT ContextSensitiveHelp(winmdroot.Foundation.BOOL fEnterMode); 641 unsafe winmdroot.Foundation.HRESULT GetClipboardData(winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj); 644 unsafe winmdroot.Foundation.HRESULT GetDragDropEffect(winmdroot.Foundation.BOOL fDrag, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, winmdroot.System.Ole.DROPEFFECT* pdwEffect); 647 unsafe winmdroot.Foundation.HRESULT GetContextMenu(winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_CONTEXT_MENU_SEL_TYPE seltype, winmdroot.System.Ole.IOleObject* lpoleobj, winmdroot.UI.Controls.RichEdit.CHARRANGE* lpchrg, winmdroot.UI.WindowsAndMessaging.HMENU* lphmenu);
Windows.Win32.IScrollItemProvider.g.cs (13)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IScrollItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IScrollItemProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT ScrollIntoView(IScrollItemProvider* pThis) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 ((delegate *unmanaged [Stdcall]<IScrollItemProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IScrollItemProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 88 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 92 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 109 internal delegate *unmanaged [Stdcall]<IScrollItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 115 internal delegate *unmanaged [Stdcall]<IScrollItemProvider*,winmdroot.Foundation.HRESULT> ScrollIntoView_4; 142winmdroot.Foundation.HRESULT ScrollIntoView();
Windows.Win32.IScrollProvider.g.cs (55)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IScrollProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IScrollProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Scroll(IScrollProvider* pThis, winmdroot.UI.Accessibility.ScrollAmount horizontalAmount, winmdroot.UI.Accessibility.ScrollAmount verticalAmount) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 84 ((delegate *unmanaged [Stdcall]<IScrollProvider*,winmdroot.UI.Accessibility.ScrollAmount ,winmdroot.UI.Accessibility.ScrollAmount ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IScrollProvider*)Unsafe.AsPointer(ref this), horizontalAmount, verticalAmount).ThrowOnFailure(); 90 private static winmdroot.Foundation.HRESULT SetScrollPercent(IScrollProvider* pThis, double horizontalPercent, double verticalPercent) 94 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 103 return (winmdroot.Foundation.HRESULT)ex.HResult; 125 ((delegate *unmanaged [Stdcall]<IScrollProvider*,double ,double ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IScrollProvider*)Unsafe.AsPointer(ref this), horizontalPercent, verticalPercent).ThrowOnFailure(); 131 private static winmdroot.Foundation.HRESULT get_HorizontalScrollPercent(IScrollProvider* pThis, double* pRetVal) 135 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 141 return winmdroot.Foundation.HRESULT.S_OK; 145 return (winmdroot.Foundation.HRESULT)ex.HResult; 156 ((delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 164 private static winmdroot.Foundation.HRESULT get_VerticalScrollPercent(IScrollProvider* pThis, double* pRetVal) 168 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 174 return winmdroot.Foundation.HRESULT.S_OK; 178 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 ((delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 197 private static winmdroot.Foundation.HRESULT get_HorizontalViewSize(IScrollProvider* pThis, double* pRetVal) 201 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 207 return winmdroot.Foundation.HRESULT.S_OK; 211 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 ((delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 232 private static winmdroot.Foundation.HRESULT get_VerticalViewSize(IScrollProvider* pThis, double* pRetVal) 236 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 242 return winmdroot.Foundation.HRESULT.S_OK; 246 return (winmdroot.Foundation.HRESULT)ex.HResult; 259 ((delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 267 private static winmdroot.Foundation.HRESULT get_HorizontallyScrollable(IScrollProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 271 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 277 return winmdroot.Foundation.HRESULT.S_OK; 281 return (winmdroot.Foundation.HRESULT)ex.HResult; 295 ((delegate *unmanaged [Stdcall]<IScrollProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 303 private static winmdroot.Foundation.HRESULT get_VerticallyScrollable(IScrollProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 307 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 313 return winmdroot.Foundation.HRESULT.S_OK; 317 return (winmdroot.Foundation.HRESULT)ex.HResult; 331 ((delegate *unmanaged [Stdcall]<IScrollProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IScrollProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 336 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 340 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 357 internal delegate *unmanaged [Stdcall]<IScrollProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 363 internal delegate *unmanaged [Stdcall]<IScrollProvider*,winmdroot.UI.Accessibility.ScrollAmount ,winmdroot.UI.Accessibility.ScrollAmount ,winmdroot.Foundation.HRESULT> Scroll_4; 365 internal delegate *unmanaged [Stdcall]<IScrollProvider*,double ,double ,winmdroot.Foundation.HRESULT> SetScrollPercent_5; 367 internal delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT> get_HorizontalScrollPercent_6; 369 internal delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT> get_VerticalScrollPercent_7; 371 internal delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT> get_HorizontalViewSize_8; 373 internal delegate *unmanaged [Stdcall]<IScrollProvider*,double* ,winmdroot.Foundation.HRESULT> get_VerticalViewSize_9; 375 internal delegate *unmanaged [Stdcall]<IScrollProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_HorizontallyScrollable_10; 377 internal delegate *unmanaged [Stdcall]<IScrollProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_VerticallyScrollable_11; 411winmdroot.Foundation.HRESULT Scroll(winmdroot.UI.Accessibility.ScrollAmount horizontalAmount, winmdroot.UI.Accessibility.ScrollAmount verticalAmount); 414winmdroot.Foundation.HRESULT SetScrollPercent(double horizontalPercent, double verticalPercent);
Windows.Win32.ISelectionItemProvider.g.cs (41)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISelectionItemProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Select(ISelectionItemProvider* pThis) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 82 ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ISelectionItemProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 88 private static winmdroot.Foundation.HRESULT AddToSelection(ISelectionItemProvider* pThis) 92 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 101 return (winmdroot.Foundation.HRESULT)ex.HResult; 115 ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ISelectionItemProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 121 private static winmdroot.Foundation.HRESULT RemoveFromSelection(ISelectionItemProvider* pThis) 125 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 134 return (winmdroot.Foundation.HRESULT)ex.HResult; 148 ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ISelectionItemProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 152 internal unsafe winmdroot.Foundation.HRESULT get_IsSelected(out winmdroot.Foundation.BOOL pRetVal) 156 winmdroot.Foundation.HRESULT __result = this.get_IsSelected(pRetValLocal); 164 private static winmdroot.Foundation.HRESULT get_IsSelected(ISelectionItemProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 168 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 185 public unsafe winmdroot.Foundation.HRESULT get_IsSelected(winmdroot.Foundation.BOOL* pRetVal) 187 return ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ISelectionItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 193 private static winmdroot.Foundation.HRESULT get_SelectionContainer(ISelectionItemProvider* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 197 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 206 return (winmdroot.Foundation.HRESULT)ex.HResult; 214 public unsafe winmdroot.Foundation.HRESULT get_SelectionContainer(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 216 return ((delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ISelectionItemProvider*)Unsafe.AsPointer(ref this), pRetVal); 219 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 223 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 240 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 246 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT> Select_4; 248 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT> AddToSelection_5; 250 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.HRESULT> RemoveFromSelection_6; 252 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_IsSelected_7; 254 internal delegate *unmanaged [Stdcall]<ISelectionItemProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> get_SelectionContainer_8; 285winmdroot.Foundation.HRESULT Select(); 288winmdroot.Foundation.HRESULT AddToSelection(); 291winmdroot.Foundation.HRESULT RemoveFromSelection(); 294 unsafe winmdroot.Foundation.HRESULT get_IsSelected(winmdroot.Foundation.BOOL* pRetVal); 297 unsafe winmdroot.Foundation.HRESULT get_SelectionContainer(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal);
Windows.Win32.ISelectionProvider.g.cs (31)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ISelectionProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISelectionProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetSelection(ISelectionProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 ((delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ISelectionProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 90 internal unsafe winmdroot.Foundation.HRESULT get_CanSelectMultiple(out winmdroot.Foundation.BOOL pRetVal) 94 winmdroot.Foundation.HRESULT __result = this.get_CanSelectMultiple(pRetValLocal); 102 private static winmdroot.Foundation.HRESULT get_CanSelectMultiple(ISelectionProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 106 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 115 return (winmdroot.Foundation.HRESULT)ex.HResult; 124 public unsafe winmdroot.Foundation.HRESULT get_CanSelectMultiple(winmdroot.Foundation.BOOL* pRetVal) 126 return ((delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ISelectionProvider*)Unsafe.AsPointer(ref this), pRetVal); 130 internal unsafe winmdroot.Foundation.HRESULT get_IsSelectionRequired(out winmdroot.Foundation.BOOL pRetVal) 134 winmdroot.Foundation.HRESULT __result = this.get_IsSelectionRequired(pRetValLocal); 142 private static winmdroot.Foundation.HRESULT get_IsSelectionRequired(ISelectionProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 146 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return (winmdroot.Foundation.HRESULT)ex.HResult; 164 public unsafe winmdroot.Foundation.HRESULT get_IsSelectionRequired(winmdroot.Foundation.BOOL* pRetVal) 166 return ((delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ISelectionProvider*)Unsafe.AsPointer(ref this), pRetVal); 169 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 173 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 190 internal delegate *unmanaged [Stdcall]<ISelectionProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 196 internal delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetSelection_4; 198 internal delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CanSelectMultiple_5; 200 internal delegate *unmanaged [Stdcall]<ISelectionProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_IsSelectionRequired_6; 229 unsafe winmdroot.Foundation.HRESULT GetSelection(winmdroot.System.Com.SAFEARRAY** pRetVal); 232 unsafe winmdroot.Foundation.HRESULT get_CanSelectMultiple(winmdroot.Foundation.BOOL* pRetVal); 235 unsafe winmdroot.Foundation.HRESULT get_IsSelectionRequired(winmdroot.Foundation.BOOL* pRetVal);
Windows.Win32.IShellFolder.g.cs (71)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IShellFolder*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IShellFolder*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT ParseDisplayName(IShellFolder* pThis, winmdroot.Foundation.HWND hwnd, winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, [Optional] uint* pchEaten, winmdroot.UI.Shell.Common.ITEMIDLIST** ppidl, uint* pdwAttributes) 74 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 127 ((delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IShellFolder*)Unsafe.AsPointer(ref this), hwnd, pbc, pszDisplayName, pchEaten, ppidl, pdwAttributes).ThrowOnFailure(); 133 private static winmdroot.Foundation.HRESULT EnumObjects(IShellFolder* pThis, winmdroot.Foundation.HWND hwnd, uint grfFlags, winmdroot.UI.Shell.IEnumIDList** ppenumIDList) 137 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 146 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 public unsafe winmdroot.Foundation.HRESULT EnumObjects(winmdroot.Foundation.HWND hwnd, uint grfFlags, winmdroot.UI.Shell.IEnumIDList** ppenumIDList) 172 return ((delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,uint ,winmdroot.UI.Shell.IEnumIDList** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IShellFolder*)Unsafe.AsPointer(ref this), hwnd, grfFlags, ppenumIDList); 193 private static winmdroot.Foundation.HRESULT BindToObject(IShellFolder* pThis, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* riid, void** ppv) 197 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 206 return (winmdroot.Foundation.HRESULT)ex.HResult; 237 ((delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IShellFolder*)Unsafe.AsPointer(ref this), pidl, pbc, riid, ppv).ThrowOnFailure(); 258 private static winmdroot.Foundation.HRESULT BindToStorage(IShellFolder* pThis, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* riid, void** ppv) 262 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 271 return (winmdroot.Foundation.HRESULT)ex.HResult; 298 ((delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IShellFolder*)Unsafe.AsPointer(ref this), pidl, pbc, riid, ppv).ThrowOnFailure(); 302 internal unsafe winmdroot.Foundation.HRESULT CompareIDs(winmdroot.Foundation.LPARAM lParam, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl1, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl2) 308 winmdroot.Foundation.HRESULT __result = this.CompareIDs(lParam, pidl1Local, pidl2Local); 317 private static winmdroot.Foundation.HRESULT CompareIDs(IShellFolder* pThis, winmdroot.Foundation.LPARAM lParam, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl1, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl2) 321 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 330 return (winmdroot.Foundation.HRESULT)ex.HResult; 358 public unsafe winmdroot.Foundation.HRESULT CompareIDs(winmdroot.Foundation.LPARAM lParam, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl1, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl2) 360 return ((delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.LPARAM ,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IShellFolder*)Unsafe.AsPointer(ref this), lParam, pidl1, pidl2); 378 private static winmdroot.Foundation.HRESULT CreateViewObject(IShellFolder* pThis, winmdroot.Foundation.HWND hwndOwner, global::System.Guid* riid, void** ppv) 382 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 391 return (winmdroot.Foundation.HRESULT)ex.HResult; 419 ((delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IShellFolder*)Unsafe.AsPointer(ref this), hwndOwner, riid, ppv).ThrowOnFailure(); 434 private static winmdroot.Foundation.HRESULT GetAttributesOf(IShellFolder* pThis, uint cidl, winmdroot.UI.Shell.Common.ITEMIDLIST** apidl, uint* rgfInOut) 438 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 447 return (winmdroot.Foundation.HRESULT)ex.HResult; 475 ((delegate *unmanaged [Stdcall]<IShellFolder*,uint ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IShellFolder*)Unsafe.AsPointer(ref this), cidl, apidl, rgfInOut).ThrowOnFailure(); 493 private static winmdroot.Foundation.HRESULT GetUIObjectOf(IShellFolder* pThis, winmdroot.Foundation.HWND hwndOwner, uint cidl, winmdroot.UI.Shell.Common.ITEMIDLIST** apidl, global::System.Guid* riid, [Optional] uint* rgfReserved, void** ppv) 497 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 506 return (winmdroot.Foundation.HRESULT)ex.HResult; 545 ((delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,uint ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,global::System.Guid* ,uint* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IShellFolder*)Unsafe.AsPointer(ref this), hwndOwner, cidl, apidl, riid, rgfReserved, ppv).ThrowOnFailure(); 563 private static winmdroot.Foundation.HRESULT GetDisplayNameOf(IShellFolder* pThis, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.UI.Shell.SHGDNF uFlags, winmdroot.UI.Shell.Common.STRRET* pName) 567 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 576 return (winmdroot.Foundation.HRESULT)ex.HResult; 602 ((delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.UI.Shell.SHGDNF ,winmdroot.UI.Shell.Common.STRRET* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IShellFolder*)Unsafe.AsPointer(ref this), pidl, uFlags, pName).ThrowOnFailure(); 620 private static winmdroot.Foundation.HRESULT SetNameOf(IShellFolder* pThis, winmdroot.Foundation.HWND hwnd, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.Foundation.PCWSTR pszName, winmdroot.UI.Shell.SHGDNF uFlags, [Optional] winmdroot.UI.Shell.Common.ITEMIDLIST** ppidlOut) 624 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 633 return (winmdroot.Foundation.HRESULT)ex.HResult; 669 ((delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.Foundation.PCWSTR ,winmdroot.UI.Shell.SHGDNF ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IShellFolder*)Unsafe.AsPointer(ref this), hwnd, pidl, pszName, uFlags, ppidlOut).ThrowOnFailure(); 672 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 676 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 693 internal delegate *unmanaged [Stdcall]<IShellFolder*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 699 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,winmdroot.System.Com.IBindCtx* ,winmdroot.Foundation.PWSTR ,uint* ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,uint* ,winmdroot.Foundation.HRESULT> ParseDisplayName_4; 701 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,uint ,winmdroot.UI.Shell.IEnumIDList** ,winmdroot.Foundation.HRESULT> EnumObjects_5; 703 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToObject_6; 705 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToStorage_7; 707 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.LPARAM ,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.Foundation.HRESULT> CompareIDs_8; 709 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> CreateViewObject_9; 711 internal delegate *unmanaged [Stdcall]<IShellFolder*,uint ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,uint* ,winmdroot.Foundation.HRESULT> GetAttributesOf_10; 713 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,uint ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,global::System.Guid* ,uint* ,void** ,winmdroot.Foundation.HRESULT> GetUIObjectOf_11; 715 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.UI.Shell.SHGDNF ,winmdroot.UI.Shell.Common.STRRET* ,winmdroot.Foundation.HRESULT> GetDisplayNameOf_12; 717 internal delegate *unmanaged [Stdcall]<IShellFolder*,winmdroot.Foundation.HWND ,winmdroot.UI.Shell.Common.ITEMIDLIST* ,winmdroot.Foundation.PCWSTR ,winmdroot.UI.Shell.SHGDNF ,winmdroot.UI.Shell.Common.ITEMIDLIST** ,winmdroot.Foundation.HRESULT> SetNameOf_13; 753 unsafe winmdroot.Foundation.HRESULT ParseDisplayName(winmdroot.Foundation.HWND hwnd, winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, [Optional] uint* pchEaten, winmdroot.UI.Shell.Common.ITEMIDLIST** ppidl, uint* pdwAttributes); 756 unsafe winmdroot.Foundation.HRESULT EnumObjects(winmdroot.Foundation.HWND hwnd, uint grfFlags, winmdroot.UI.Shell.IEnumIDList** ppenumIDList); 759 unsafe winmdroot.Foundation.HRESULT BindToObject(winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* riid, void** ppv); 762 unsafe winmdroot.Foundation.HRESULT BindToStorage(winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* riid, void** ppv); 765 unsafe winmdroot.Foundation.HRESULT CompareIDs(winmdroot.Foundation.LPARAM lParam, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl1, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl2); 768 unsafe winmdroot.Foundation.HRESULT CreateViewObject(winmdroot.Foundation.HWND hwndOwner, global::System.Guid* riid, void** ppv); 771 unsafe winmdroot.Foundation.HRESULT GetAttributesOf(uint cidl, winmdroot.UI.Shell.Common.ITEMIDLIST** apidl, uint* rgfInOut); 774 unsafe winmdroot.Foundation.HRESULT GetUIObjectOf(winmdroot.Foundation.HWND hwndOwner, uint cidl, winmdroot.UI.Shell.Common.ITEMIDLIST** apidl, global::System.Guid* riid, [Optional] uint* rgfReserved, void** ppv); 777 unsafe winmdroot.Foundation.HRESULT GetDisplayNameOf(winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.UI.Shell.SHGDNF uFlags, winmdroot.UI.Shell.Common.STRRET* pName); 780 unsafe winmdroot.Foundation.HRESULT SetNameOf(winmdroot.Foundation.HWND hwnd, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.Foundation.PCWSTR pszName, winmdroot.UI.Shell.SHGDNF uFlags, [Optional] winmdroot.UI.Shell.Common.ITEMIDLIST** ppidlOut);
Windows.Win32.IShellItem.g.cs (37)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IShellItem*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IShellItem*)Unsafe.AsPointer(ref this), riid, ppvObject); 73 private static winmdroot.Foundation.HRESULT BindToHandler(IShellItem* pThis, winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* bhid, global::System.Guid* riid, void** ppv) 77 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 86 return (winmdroot.Foundation.HRESULT)ex.HResult; 112 ((delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IShellItem*)Unsafe.AsPointer(ref this), pbc, bhid, riid, ppv).ThrowOnFailure(); 118 private static winmdroot.Foundation.HRESULT GetParent(IShellItem* pThis, winmdroot.UI.Shell.IShellItem** ppsi) 122 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 131 return (winmdroot.Foundation.HRESULT)ex.HResult; 148 ((delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IShellItem*)Unsafe.AsPointer(ref this), ppsi).ThrowOnFailure(); 163 private static winmdroot.Foundation.HRESULT GetDisplayName(IShellItem* pThis, winmdroot.UI.Shell.SIGDN sigdnName, winmdroot.Foundation.PWSTR* ppszName) 167 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 ((delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.SIGDN ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IShellItem*)Unsafe.AsPointer(ref this), sigdnName, ppszName).ThrowOnFailure(); 210 private static winmdroot.Foundation.HRESULT GetAttributes(IShellItem* pThis, winmdroot.System.SystemServices.SFGAO_FLAGS sfgaoMask, winmdroot.System.SystemServices.SFGAO_FLAGS* psfgaoAttribs) 214 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 223 return (winmdroot.Foundation.HRESULT)ex.HResult; 244 ((delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.System.SystemServices.SFGAO_FLAGS ,winmdroot.System.SystemServices.SFGAO_FLAGS* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IShellItem*)Unsafe.AsPointer(ref this), sfgaoMask, psfgaoAttribs).ThrowOnFailure(); 259 private static winmdroot.Foundation.HRESULT Compare(IShellItem* pThis, winmdroot.UI.Shell.IShellItem* psi, uint hint, int* piOrder) 263 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 272 return (winmdroot.Foundation.HRESULT)ex.HResult; 300 ((delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.IShellItem* ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IShellItem*)Unsafe.AsPointer(ref this), psi, hint, piOrder).ThrowOnFailure(); 303 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 307 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 324 internal delegate *unmanaged [Stdcall]<IShellItem*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 330 internal delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToHandler_4; 332 internal delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetParent_5; 334 internal delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.SIGDN ,winmdroot.Foundation.PWSTR* ,winmdroot.Foundation.HRESULT> GetDisplayName_6; 336 internal delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.System.SystemServices.SFGAO_FLAGS ,winmdroot.System.SystemServices.SFGAO_FLAGS* ,winmdroot.Foundation.HRESULT> GetAttributes_7; 338 internal delegate *unmanaged [Stdcall]<IShellItem*,winmdroot.UI.Shell.IShellItem* ,uint ,int* ,winmdroot.Foundation.HRESULT> Compare_8; 369 unsafe winmdroot.Foundation.HRESULT BindToHandler(winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* bhid, global::System.Guid* riid, void** ppv); 372 unsafe winmdroot.Foundation.HRESULT GetParent(winmdroot.UI.Shell.IShellItem** ppsi); 375 unsafe winmdroot.Foundation.HRESULT GetDisplayName(winmdroot.UI.Shell.SIGDN sigdnName, winmdroot.Foundation.PWSTR* ppszName); 378 unsafe winmdroot.Foundation.HRESULT GetAttributes(winmdroot.System.SystemServices.SFGAO_FLAGS sfgaoMask, winmdroot.System.SystemServices.SFGAO_FLAGS* psfgaoAttribs); 381 unsafe winmdroot.Foundation.HRESULT Compare(winmdroot.UI.Shell.IShellItem* psi, uint hint, int* piOrder);
Windows.Win32.IShellItemArray.g.cs (49)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IShellItemArray*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IShellItemArray*)Unsafe.AsPointer(ref this), riid, ppvObject); 73 private static winmdroot.Foundation.HRESULT BindToHandler(IShellItemArray* pThis, winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* bhid, global::System.Guid* riid, void** ppvOut) 77 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 86 return (winmdroot.Foundation.HRESULT)ex.HResult; 112 ((delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IShellItemArray*)Unsafe.AsPointer(ref this), pbc, bhid, riid, ppvOut).ThrowOnFailure(); 130 private static winmdroot.Foundation.HRESULT GetPropertyStore(IShellItemArray* pThis, winmdroot.UI.Shell.PropertiesSystem.GETPROPERTYSTOREFLAGS flags, global::System.Guid* riid, void** ppv) 134 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 143 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 ((delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.PropertiesSystem.GETPROPERTYSTOREFLAGS ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IShellItemArray*)Unsafe.AsPointer(ref this), flags, riid, ppv).ThrowOnFailure(); 191 private static winmdroot.Foundation.HRESULT GetPropertyDescriptionList(IShellItemArray* pThis, winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* keyType, global::System.Guid* riid, void** ppv) 195 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 204 return (winmdroot.Foundation.HRESULT)ex.HResult; 232 ((delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IShellItemArray*)Unsafe.AsPointer(ref this), keyType, riid, ppv).ThrowOnFailure(); 247 private static winmdroot.Foundation.HRESULT GetAttributes(IShellItemArray* pThis, winmdroot.UI.Shell.SIATTRIBFLAGS AttribFlags, winmdroot.System.SystemServices.SFGAO_FLAGS sfgaoMask, winmdroot.System.SystemServices.SFGAO_FLAGS* psfgaoAttribs) 251 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 260 return (winmdroot.Foundation.HRESULT)ex.HResult; 283 ((delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.SIATTRIBFLAGS ,winmdroot.System.SystemServices.SFGAO_FLAGS ,winmdroot.System.SystemServices.SFGAO_FLAGS* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IShellItemArray*)Unsafe.AsPointer(ref this), AttribFlags, sfgaoMask, psfgaoAttribs).ThrowOnFailure(); 298 private static winmdroot.Foundation.HRESULT GetCount(IShellItemArray* pThis, uint* pdwNumItems) 302 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 311 return (winmdroot.Foundation.HRESULT)ex.HResult; 328 ((delegate *unmanaged [Stdcall]<IShellItemArray*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IShellItemArray*)Unsafe.AsPointer(ref this), pdwNumItems).ThrowOnFailure(); 334 private static winmdroot.Foundation.HRESULT GetItemAt(IShellItemArray* pThis, uint dwIndex, winmdroot.UI.Shell.IShellItem** ppsi) 338 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 347 return (winmdroot.Foundation.HRESULT)ex.HResult; 366 ((delegate *unmanaged [Stdcall]<IShellItemArray*,uint ,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IShellItemArray*)Unsafe.AsPointer(ref this), dwIndex, ppsi).ThrowOnFailure(); 372 private static winmdroot.Foundation.HRESULT EnumItems(IShellItemArray* pThis, winmdroot.UI.Shell.IEnumShellItems** ppenumShellItems) 376 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 385 return (winmdroot.Foundation.HRESULT)ex.HResult; 402 ((delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.IEnumShellItems** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IShellItemArray*)Unsafe.AsPointer(ref this), ppenumShellItems).ThrowOnFailure(); 405 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 409 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 426 internal delegate *unmanaged [Stdcall]<IShellItemArray*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 432 internal delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.System.Com.IBindCtx* ,global::System.Guid* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> BindToHandler_4; 434 internal delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.PropertiesSystem.GETPROPERTYSTOREFLAGS ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetPropertyStore_5; 436 internal delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetPropertyDescriptionList_6; 438 internal delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.SIATTRIBFLAGS ,winmdroot.System.SystemServices.SFGAO_FLAGS ,winmdroot.System.SystemServices.SFGAO_FLAGS* ,winmdroot.Foundation.HRESULT> GetAttributes_7; 440 internal delegate *unmanaged [Stdcall]<IShellItemArray*,uint* ,winmdroot.Foundation.HRESULT> GetCount_8; 442 internal delegate *unmanaged [Stdcall]<IShellItemArray*,uint ,winmdroot.UI.Shell.IShellItem** ,winmdroot.Foundation.HRESULT> GetItemAt_9; 444 internal delegate *unmanaged [Stdcall]<IShellItemArray*,winmdroot.UI.Shell.IEnumShellItems** ,winmdroot.Foundation.HRESULT> EnumItems_10; 477 unsafe winmdroot.Foundation.HRESULT BindToHandler(winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* bhid, global::System.Guid* riid, void** ppvOut); 480 unsafe winmdroot.Foundation.HRESULT GetPropertyStore(winmdroot.UI.Shell.PropertiesSystem.GETPROPERTYSTOREFLAGS flags, global::System.Guid* riid, void** ppv); 483 unsafe winmdroot.Foundation.HRESULT GetPropertyDescriptionList(winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY* keyType, global::System.Guid* riid, void** ppv); 486 unsafe winmdroot.Foundation.HRESULT GetAttributes(winmdroot.UI.Shell.SIATTRIBFLAGS AttribFlags, winmdroot.System.SystemServices.SFGAO_FLAGS sfgaoMask, winmdroot.System.SystemServices.SFGAO_FLAGS* psfgaoAttribs); 489 unsafe winmdroot.Foundation.HRESULT GetCount(uint* pdwNumItems); 492 unsafe winmdroot.Foundation.HRESULT GetItemAt(uint dwIndex, winmdroot.UI.Shell.IShellItem** ppsi); 495 unsafe winmdroot.Foundation.HRESULT EnumItems(winmdroot.UI.Shell.IEnumShellItems** ppenumShellItems);
Windows.Win32.IShellItemFilter.g.cs (19)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IShellItemFilter*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IShellItemFilter*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT IncludeItem(IShellItemFilter* pThis, winmdroot.UI.Shell.IShellItem* psi) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 86 ((delegate *unmanaged [Stdcall]<IShellItemFilter*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IShellItemFilter*)Unsafe.AsPointer(ref this), psi).ThrowOnFailure(); 101 private static winmdroot.Foundation.HRESULT GetEnumFlagsForItem(IShellItemFilter* pThis, winmdroot.UI.Shell.IShellItem* psi, uint* pgrfFlags) 105 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 114 return (winmdroot.Foundation.HRESULT)ex.HResult; 135 ((delegate *unmanaged [Stdcall]<IShellItemFilter*,winmdroot.UI.Shell.IShellItem* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IShellItemFilter*)Unsafe.AsPointer(ref this), psi, pgrfFlags).ThrowOnFailure(); 138 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 142 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 159 internal delegate *unmanaged [Stdcall]<IShellItemFilter*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 165 internal delegate *unmanaged [Stdcall]<IShellItemFilter*,winmdroot.UI.Shell.IShellItem* ,winmdroot.Foundation.HRESULT> IncludeItem_4; 167 internal delegate *unmanaged [Stdcall]<IShellItemFilter*,winmdroot.UI.Shell.IShellItem* ,uint* ,winmdroot.Foundation.HRESULT> GetEnumFlagsForItem_5; 195 unsafe winmdroot.Foundation.HRESULT IncludeItem(winmdroot.UI.Shell.IShellItem* psi); 198 unsafe winmdroot.Foundation.HRESULT GetEnumFlagsForItem(winmdroot.UI.Shell.IShellItem* psi, uint* pgrfFlags);
Windows.Win32.ISimpleFrameSite.g.cs (19)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ISimpleFrameSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISimpleFrameSite*)Unsafe.AsPointer(ref this), riid, ppvObject); 70 private static winmdroot.Foundation.HRESULT PreMessageFilter(ISimpleFrameSite* pThis, winmdroot.Foundation.HWND hWnd, uint msg, winmdroot.Foundation.WPARAM wp, winmdroot.Foundation.LPARAM lp, winmdroot.Foundation.LRESULT* plResult, uint* pdwCookie) 74 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 83 return (winmdroot.Foundation.HRESULT)ex.HResult; 101 ((delegate *unmanaged [Stdcall]<ISimpleFrameSite*,winmdroot.Foundation.HWND ,uint ,winmdroot.Foundation.WPARAM ,winmdroot.Foundation.LPARAM ,winmdroot.Foundation.LRESULT* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ISimpleFrameSite*)Unsafe.AsPointer(ref this), hWnd, msg, wp, lp, plResult, pdwCookie).ThrowOnFailure(); 116 private static winmdroot.Foundation.HRESULT PostMessageFilter(ISimpleFrameSite* pThis, winmdroot.Foundation.HWND hWnd, uint msg, winmdroot.Foundation.WPARAM wp, winmdroot.Foundation.LPARAM lp, winmdroot.Foundation.LRESULT* plResult, uint dwCookie) 120 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 129 return (winmdroot.Foundation.HRESULT)ex.HResult; 149 ((delegate *unmanaged [Stdcall]<ISimpleFrameSite*,winmdroot.Foundation.HWND ,uint ,winmdroot.Foundation.WPARAM ,winmdroot.Foundation.LPARAM ,winmdroot.Foundation.LRESULT* ,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ISimpleFrameSite*)Unsafe.AsPointer(ref this), hWnd, msg, wp, lp, plResult, dwCookie).ThrowOnFailure(); 152 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 156 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 173 internal delegate *unmanaged [Stdcall]<ISimpleFrameSite*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 179 internal delegate *unmanaged [Stdcall]<ISimpleFrameSite*,winmdroot.Foundation.HWND ,uint ,winmdroot.Foundation.WPARAM ,winmdroot.Foundation.LPARAM ,winmdroot.Foundation.LRESULT* ,uint* ,winmdroot.Foundation.HRESULT> PreMessageFilter_4; 181 internal delegate *unmanaged [Stdcall]<ISimpleFrameSite*,winmdroot.Foundation.HWND ,uint ,winmdroot.Foundation.WPARAM ,winmdroot.Foundation.LPARAM ,winmdroot.Foundation.LRESULT* ,uint ,winmdroot.Foundation.HRESULT> PostMessageFilter_5; 209 unsafe winmdroot.Foundation.HRESULT PreMessageFilter(winmdroot.Foundation.HWND hWnd, uint msg, winmdroot.Foundation.WPARAM wp, winmdroot.Foundation.LPARAM lp, winmdroot.Foundation.LRESULT* plResult, uint* pdwCookie); 212 unsafe winmdroot.Foundation.HRESULT PostMessageFilter(winmdroot.Foundation.HWND hWnd, uint msg, winmdroot.Foundation.WPARAM wp, winmdroot.Foundation.LPARAM lp, winmdroot.Foundation.LRESULT* plResult, uint dwCookie);
Windows.Win32.ISpecifyPropertyPages.g.cs (16)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ISpecifyPropertyPages*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISpecifyPropertyPages*)Unsafe.AsPointer(ref this), riid, ppvObject); 56 internal unsafe winmdroot.Foundation.HRESULT GetPages(out winmdroot.System.Ole.CAUUID pPages) 60 winmdroot.Foundation.HRESULT __result = this.GetPages(pPagesLocal); 68 private static winmdroot.Foundation.HRESULT GetPages(ISpecifyPropertyPages* pThis, winmdroot.System.Ole.CAUUID* pPages) 72 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 81 return (winmdroot.Foundation.HRESULT)ex.HResult; 95 public unsafe winmdroot.Foundation.HRESULT GetPages(winmdroot.System.Ole.CAUUID* pPages) 97 return ((delegate *unmanaged [Stdcall]<ISpecifyPropertyPages*,winmdroot.System.Ole.CAUUID* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ISpecifyPropertyPages*)Unsafe.AsPointer(ref this), pPages); 100 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 104 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 121 internal delegate *unmanaged [Stdcall]<ISpecifyPropertyPages*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 127 internal delegate *unmanaged [Stdcall]<ISpecifyPropertyPages*,winmdroot.System.Ole.CAUUID* ,winmdroot.Foundation.HRESULT> GetPages_4; 154 unsafe winmdroot.Foundation.HRESULT GetPages(winmdroot.System.Ole.CAUUID* pPages);
Windows.Win32.ISupportErrorInfo.g.cs (16)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<ISupportErrorInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ISupportErrorInfo*)Unsafe.AsPointer(ref this), riid, ppvObject); 55 internal unsafe winmdroot.Foundation.HRESULT InterfaceSupportsErrorInfo(in global::System.Guid riid) 59 winmdroot.Foundation.HRESULT __result = this.InterfaceSupportsErrorInfo(riidLocal); 67 private static winmdroot.Foundation.HRESULT InterfaceSupportsErrorInfo(ISupportErrorInfo* pThis, global::System.Guid* riid) 71 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 80 return (winmdroot.Foundation.HRESULT)ex.HResult; 97 public unsafe winmdroot.Foundation.HRESULT InterfaceSupportsErrorInfo(global::System.Guid* riid) 99 return ((delegate *unmanaged [Stdcall]<ISupportErrorInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ISupportErrorInfo*)Unsafe.AsPointer(ref this), riid); 102 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 106 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 123 internal delegate *unmanaged [Stdcall]<ISupportErrorInfo*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 129 internal delegate *unmanaged [Stdcall]<ISupportErrorInfo*,global::System.Guid* ,winmdroot.Foundation.HRESULT> InterfaceSupportsErrorInfo_4; 155 unsafe winmdroot.Foundation.HRESULT InterfaceSupportsErrorInfo(global::System.Guid* riid);
Windows.Win32.ITableItemProvider.g.cs (19)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ITableItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITableItemProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetRowHeaderItems(ITableItemProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 ((delegate *unmanaged [Stdcall]<ITableItemProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITableItemProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT GetColumnHeaderItems(ITableItemProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 119 ((delegate *unmanaged [Stdcall]<ITableItemProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITableItemProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 123 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 127 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 144 internal delegate *unmanaged [Stdcall]<ITableItemProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 150 internal delegate *unmanaged [Stdcall]<ITableItemProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetRowHeaderItems_4; 152 internal delegate *unmanaged [Stdcall]<ITableItemProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetColumnHeaderItems_5; 180 unsafe winmdroot.Foundation.HRESULT GetRowHeaderItems(winmdroot.System.Com.SAFEARRAY** pRetVal); 183 unsafe winmdroot.Foundation.HRESULT GetColumnHeaderItems(winmdroot.System.Com.SAFEARRAY** pRetVal);
Windows.Win32.ITableProvider.g.cs (28)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ITableProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITableProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetRowHeaders(ITableProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 ((delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITableProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 92 private static winmdroot.Foundation.HRESULT GetColumnHeaders(ITableProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 96 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 105 return (winmdroot.Foundation.HRESULT)ex.HResult; 119 ((delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITableProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 124 internal unsafe winmdroot.Foundation.HRESULT get_RowOrColumnMajor(out winmdroot.UI.Accessibility.RowOrColumnMajor pRetVal) 128 winmdroot.Foundation.HRESULT __result = this.get_RowOrColumnMajor(pRetValLocal); 136 private static winmdroot.Foundation.HRESULT get_RowOrColumnMajor(ITableProvider* pThis, winmdroot.UI.Accessibility.RowOrColumnMajor* pRetVal) 140 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 149 return (winmdroot.Foundation.HRESULT)ex.HResult; 157 public unsafe winmdroot.Foundation.HRESULT get_RowOrColumnMajor(winmdroot.UI.Accessibility.RowOrColumnMajor* pRetVal) 159 return ((delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.UI.Accessibility.RowOrColumnMajor* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITableProvider*)Unsafe.AsPointer(ref this), pRetVal); 162 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 166 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 183 internal delegate *unmanaged [Stdcall]<ITableProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 189 internal delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetRowHeaders_4; 191 internal delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetColumnHeaders_5; 193 internal delegate *unmanaged [Stdcall]<ITableProvider*,winmdroot.UI.Accessibility.RowOrColumnMajor* ,winmdroot.Foundation.HRESULT> get_RowOrColumnMajor_6; 222 unsafe winmdroot.Foundation.HRESULT GetRowHeaders(winmdroot.System.Com.SAFEARRAY** pRetVal); 225 unsafe winmdroot.Foundation.HRESULT GetColumnHeaders(winmdroot.System.Com.SAFEARRAY** pRetVal); 228 unsafe winmdroot.Foundation.HRESULT get_RowOrColumnMajor(winmdroot.UI.Accessibility.RowOrColumnMajor* pRetVal);
Windows.Win32.ITextDocument.g.cs (130)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ITextDocument*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextDocument*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 ((delegate *unmanaged [Stdcall]<ITextDocument*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextDocument*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 71 ((delegate *unmanaged [Stdcall]<ITextDocument*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextDocument*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 92 ((delegate *unmanaged [Stdcall]<ITextDocument*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITextDocument*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 109 ((delegate *unmanaged [Stdcall]<ITextDocument*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextDocument*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 115 private static winmdroot.Foundation.HRESULT GetName(ITextDocument* pThis, winmdroot.Foundation.BSTR* pName) 119 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 146 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextDocument*)Unsafe.AsPointer(ref this), pName).ThrowOnFailure(); 152 private static winmdroot.Foundation.HRESULT GetSelection(ITextDocument* pThis, winmdroot.UI.Controls.RichEdit.ITextSelection** ppSel) 156 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 165 return (winmdroot.Foundation.HRESULT)ex.HResult; 183 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.ITextSelection** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextDocument*)Unsafe.AsPointer(ref this), ppSel).ThrowOnFailure(); 198 private static winmdroot.Foundation.HRESULT GetStoryCount(ITextDocument* pThis, int* pCount) 202 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 211 return (winmdroot.Foundation.HRESULT)ex.HResult; 230 ((delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextDocument*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 236 private static winmdroot.Foundation.HRESULT GetStoryRanges(ITextDocument* pThis, winmdroot.UI.Controls.RichEdit.ITextStoryRanges** ppStories) 240 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 249 return (winmdroot.Foundation.HRESULT)ex.HResult; 265 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.ITextStoryRanges** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextDocument*)Unsafe.AsPointer(ref this), ppStories).ThrowOnFailure(); 280 private static winmdroot.Foundation.HRESULT GetSaved(ITextDocument* pThis, int* pValue) 284 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 293 return (winmdroot.Foundation.HRESULT)ex.HResult; 309 ((delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextDocument*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 315 private static winmdroot.Foundation.HRESULT SetSaved(ITextDocument* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Value) 319 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 328 return (winmdroot.Foundation.HRESULT)ex.HResult; 345 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextDocument*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 360 private static winmdroot.Foundation.HRESULT GetDefaultTabStop(ITextDocument* pThis, float* pValue) 364 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 373 return (winmdroot.Foundation.HRESULT)ex.HResult; 388 ((delegate *unmanaged [Stdcall]<ITextDocument*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextDocument*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 394 private static winmdroot.Foundation.HRESULT SetDefaultTabStop(ITextDocument* pThis, float Value) 398 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 407 return (winmdroot.Foundation.HRESULT)ex.HResult; 425 ((delegate *unmanaged [Stdcall]<ITextDocument*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITextDocument*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 431 private static winmdroot.Foundation.HRESULT New(ITextDocument* pThis) 435 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 444 return (winmdroot.Foundation.HRESULT)ex.HResult; 455 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITextDocument*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 470 private static winmdroot.Foundation.HRESULT Open(ITextDocument* pThis, winmdroot.System.Variant.VARIANT* pVar, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int CodePage) 474 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 483 return (winmdroot.Foundation.HRESULT)ex.HResult; 514 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.System.Variant.VARIANT* ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITextDocument*)Unsafe.AsPointer(ref this), pVar, Flags, CodePage).ThrowOnFailure(); 529 private static winmdroot.Foundation.HRESULT Save(ITextDocument* pThis, winmdroot.System.Variant.VARIANT* pVar, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int CodePage) 533 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 542 return (winmdroot.Foundation.HRESULT)ex.HResult; 569 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.System.Variant.VARIANT* ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITextDocument*)Unsafe.AsPointer(ref this), pVar, Flags, CodePage).ThrowOnFailure(); 584 private static winmdroot.Foundation.HRESULT Freeze(ITextDocument* pThis, int* pCount) 588 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 597 return (winmdroot.Foundation.HRESULT)ex.HResult; 612 ((delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextDocument*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 627 private static winmdroot.Foundation.HRESULT Unfreeze(ITextDocument* pThis, int* pCount) 631 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 640 return (winmdroot.Foundation.HRESULT)ex.HResult; 658 ((delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextDocument*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 664 private static winmdroot.Foundation.HRESULT BeginEditCollection(ITextDocument* pThis) 668 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 677 return (winmdroot.Foundation.HRESULT)ex.HResult; 692 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextDocument*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 698 private static winmdroot.Foundation.HRESULT EndEditCollection(ITextDocument* pThis) 702 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 711 return (winmdroot.Foundation.HRESULT)ex.HResult; 723 ((delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT>)lpVtbl[21])((ITextDocument*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 738 private static winmdroot.Foundation.HRESULT Undo(ITextDocument* pThis, int Count, int* pCount) 742 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 751 return (winmdroot.Foundation.HRESULT)ex.HResult; 772 ((delegate *unmanaged [Stdcall]<ITextDocument*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((ITextDocument*)Unsafe.AsPointer(ref this), Count, pCount).ThrowOnFailure(); 787 private static winmdroot.Foundation.HRESULT Redo(ITextDocument* pThis, int Count, int* pCount) 791 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 800 return (winmdroot.Foundation.HRESULT)ex.HResult; 822 ((delegate *unmanaged [Stdcall]<ITextDocument*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((ITextDocument*)Unsafe.AsPointer(ref this), Count, pCount).ThrowOnFailure(); 828 private static winmdroot.Foundation.HRESULT Range(ITextDocument* pThis, int cpActive, int cpAnchor, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 832 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 841 return (winmdroot.Foundation.HRESULT)ex.HResult; 865 public unsafe winmdroot.Foundation.HRESULT Range(int cpActive, int cpAnchor, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 867 return ((delegate *unmanaged [Stdcall]<ITextDocument*,int ,int ,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((ITextDocument*)Unsafe.AsPointer(ref this), cpActive, cpAnchor, ppRange); 873 private static winmdroot.Foundation.HRESULT RangeFromPoint(ITextDocument* pThis, int x, int y, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 877 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 886 return (winmdroot.Foundation.HRESULT)ex.HResult; 912 ((delegate *unmanaged [Stdcall]<ITextDocument*,int ,int ,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((ITextDocument*)Unsafe.AsPointer(ref this), x, y, ppRange).ThrowOnFailure(); 915 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 919 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 936 internal delegate *unmanaged [Stdcall]<ITextDocument*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 942 internal delegate *unmanaged [Stdcall]<ITextDocument*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 944 internal delegate *unmanaged [Stdcall]<ITextDocument*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 946 internal delegate *unmanaged [Stdcall]<ITextDocument*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 948 internal delegate *unmanaged [Stdcall]<ITextDocument*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 950 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetName_8; 952 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.ITextSelection** ,winmdroot.Foundation.HRESULT> GetSelection_9; 954 internal delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT> GetStoryCount_10; 956 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.ITextStoryRanges** ,winmdroot.Foundation.HRESULT> GetStoryRanges_11; 958 internal delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT> GetSaved_12; 960 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT> SetSaved_13; 962 internal delegate *unmanaged [Stdcall]<ITextDocument*,float* ,winmdroot.Foundation.HRESULT> GetDefaultTabStop_14; 964 internal delegate *unmanaged [Stdcall]<ITextDocument*,float ,winmdroot.Foundation.HRESULT> SetDefaultTabStop_15; 966 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT> New_16; 968 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.System.Variant.VARIANT* ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT> Open_17; 970 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.System.Variant.VARIANT* ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT> Save_18; 972 internal delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT> Freeze_19; 974 internal delegate *unmanaged [Stdcall]<ITextDocument*,int* ,winmdroot.Foundation.HRESULT> Unfreeze_20; 976 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT> BeginEditCollection_21; 978 internal delegate *unmanaged [Stdcall]<ITextDocument*,winmdroot.Foundation.HRESULT> EndEditCollection_22; 980 internal delegate *unmanaged [Stdcall]<ITextDocument*,int ,int* ,winmdroot.Foundation.HRESULT> Undo_23; 982 internal delegate *unmanaged [Stdcall]<ITextDocument*,int ,int* ,winmdroot.Foundation.HRESULT> Redo_24; 984 internal delegate *unmanaged [Stdcall]<ITextDocument*,int ,int ,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> Range_25; 986 internal delegate *unmanaged [Stdcall]<ITextDocument*,int ,int ,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> RangeFromPoint_26; 1031 unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pName); 1034 unsafe winmdroot.Foundation.HRESULT GetSelection(winmdroot.UI.Controls.RichEdit.ITextSelection** ppSel); 1037 unsafe winmdroot.Foundation.HRESULT GetStoryCount(int* pCount); 1040 unsafe winmdroot.Foundation.HRESULT GetStoryRanges(winmdroot.UI.Controls.RichEdit.ITextStoryRanges** ppStories); 1043 unsafe winmdroot.Foundation.HRESULT GetSaved(int* pValue); 1046winmdroot.Foundation.HRESULT SetSaved(winmdroot.UI.Controls.RichEdit.tomConstants Value); 1049 unsafe winmdroot.Foundation.HRESULT GetDefaultTabStop(float* pValue); 1052winmdroot.Foundation.HRESULT SetDefaultTabStop(float Value); 1055winmdroot.Foundation.HRESULT New(); 1058 unsafe winmdroot.Foundation.HRESULT Open(winmdroot.System.Variant.VARIANT* pVar, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int CodePage); 1061 unsafe winmdroot.Foundation.HRESULT Save(winmdroot.System.Variant.VARIANT* pVar, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int CodePage); 1064 unsafe winmdroot.Foundation.HRESULT Freeze(int* pCount); 1067 unsafe winmdroot.Foundation.HRESULT Unfreeze(int* pCount); 1070winmdroot.Foundation.HRESULT BeginEditCollection(); 1073winmdroot.Foundation.HRESULT EndEditCollection(); 1076 unsafe winmdroot.Foundation.HRESULT Undo(int Count, int* pCount); 1079 unsafe winmdroot.Foundation.HRESULT Redo(int Count, int* pCount); 1082 unsafe winmdroot.Foundation.HRESULT Range(int cpActive, int cpAnchor, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 1085 unsafe winmdroot.Foundation.HRESULT RangeFromPoint(int x, int y, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange);
Windows.Win32.ITextFont.g.cs (345)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ITextFont*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextFont*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 ((delegate *unmanaged [Stdcall]<ITextFont*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextFont*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 71 ((delegate *unmanaged [Stdcall]<ITextFont*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextFont*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 92 ((delegate *unmanaged [Stdcall]<ITextFont*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITextFont*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 109 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextFont*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 115 private static winmdroot.Foundation.HRESULT GetDuplicate(ITextFont* pThis, winmdroot.UI.Controls.RichEdit.ITextFont** ppFont) 119 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 147 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextFont*)Unsafe.AsPointer(ref this), ppFont).ThrowOnFailure(); 153 private static winmdroot.Foundation.HRESULT SetDuplicate(ITextFont* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont) 157 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 166 return (winmdroot.Foundation.HRESULT)ex.HResult; 185 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextFont*)Unsafe.AsPointer(ref this), pFont).ThrowOnFailure(); 200 private static winmdroot.Foundation.HRESULT CanChange(ITextFont* pThis, int* pValue) 204 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 213 return (winmdroot.Foundation.HRESULT)ex.HResult; 229 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 244 private static winmdroot.Foundation.HRESULT IsEqual(ITextFont* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont, int* pValue) 248 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 257 return (winmdroot.Foundation.HRESULT)ex.HResult; 276 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextFont*)Unsafe.AsPointer(ref this), pFont, pValue).ThrowOnFailure(); 282 private static winmdroot.Foundation.HRESULT Reset(ITextFont* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Value) 286 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 295 return (winmdroot.Foundation.HRESULT)ex.HResult; 311 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 326 private static winmdroot.Foundation.HRESULT GetStyle(ITextFont* pThis, int* pValue) 330 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 339 return (winmdroot.Foundation.HRESULT)ex.HResult; 355 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 361 private static winmdroot.Foundation.HRESULT SetStyle(ITextFont* pThis, int Value) 365 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 374 return (winmdroot.Foundation.HRESULT)ex.HResult; 390 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 405 private static winmdroot.Foundation.HRESULT GetAllCaps(ITextFont* pThis, int* pValue) 409 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 418 return (winmdroot.Foundation.HRESULT)ex.HResult; 435 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 441 private static winmdroot.Foundation.HRESULT SetAllCaps(ITextFont* pThis, int Value) 445 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 454 return (winmdroot.Foundation.HRESULT)ex.HResult; 473 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 488 private static winmdroot.Foundation.HRESULT GetAnimation(ITextFont* pThis, int* pValue) 492 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 501 return (winmdroot.Foundation.HRESULT)ex.HResult; 520 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 526 private static winmdroot.Foundation.HRESULT SetAnimation(ITextFont* pThis, int Value) 530 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 539 return (winmdroot.Foundation.HRESULT)ex.HResult; 554 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 569 private static winmdroot.Foundation.HRESULT GetBackColor(ITextFont* pThis, int* pValue) 573 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 582 return (winmdroot.Foundation.HRESULT)ex.HResult; 597 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 603 private static winmdroot.Foundation.HRESULT SetBackColor(ITextFont* pThis, int Value) 607 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 616 return (winmdroot.Foundation.HRESULT)ex.HResult; 636 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 651 private static winmdroot.Foundation.HRESULT GetBold(ITextFont* pThis, int* pValue) 655 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 664 return (winmdroot.Foundation.HRESULT)ex.HResult; 681 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 687 private static winmdroot.Foundation.HRESULT SetBold(ITextFont* pThis, int Value) 691 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 700 return (winmdroot.Foundation.HRESULT)ex.HResult; 719 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 734 private static winmdroot.Foundation.HRESULT GetEmboss(ITextFont* pThis, int* pValue) 738 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 747 return (winmdroot.Foundation.HRESULT)ex.HResult; 764 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 770 private static winmdroot.Foundation.HRESULT SetEmboss(ITextFont* pThis, int Value) 774 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 783 return (winmdroot.Foundation.HRESULT)ex.HResult; 802 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 817 private static winmdroot.Foundation.HRESULT GetForeColor(ITextFont* pThis, int* pValue) 821 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 830 return (winmdroot.Foundation.HRESULT)ex.HResult; 845 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 851 private static winmdroot.Foundation.HRESULT SetForeColor(ITextFont* pThis, int Value) 855 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 864 return (winmdroot.Foundation.HRESULT)ex.HResult; 884 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 899 private static winmdroot.Foundation.HRESULT GetHidden(ITextFont* pThis, int* pValue) 903 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 912 return (winmdroot.Foundation.HRESULT)ex.HResult; 929 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 935 private static winmdroot.Foundation.HRESULT SetHidden(ITextFont* pThis, int Value) 939 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 948 return (winmdroot.Foundation.HRESULT)ex.HResult; 967 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 982 private static winmdroot.Foundation.HRESULT GetEngrave(ITextFont* pThis, int* pValue) 986 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 995 return (winmdroot.Foundation.HRESULT)ex.HResult; 1012 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1018 private static winmdroot.Foundation.HRESULT SetEngrave(ITextFont* pThis, int Value) 1022 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1031 return (winmdroot.Foundation.HRESULT)ex.HResult; 1050 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1065 private static winmdroot.Foundation.HRESULT GetItalic(ITextFont* pThis, int* pValue) 1069 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1078 return (winmdroot.Foundation.HRESULT)ex.HResult; 1097 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1103 private static winmdroot.Foundation.HRESULT SetItalic(ITextFont* pThis, int Value) 1107 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1116 return (winmdroot.Foundation.HRESULT)ex.HResult; 1135 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1150 private static winmdroot.Foundation.HRESULT GetKerning(ITextFont* pThis, float* pValue) 1154 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1163 return (winmdroot.Foundation.HRESULT)ex.HResult; 1182 ((delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1188 private static winmdroot.Foundation.HRESULT SetKerning(ITextFont* pThis, float Value) 1192 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1201 return (winmdroot.Foundation.HRESULT)ex.HResult; 1217 ((delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1232 private static winmdroot.Foundation.HRESULT GetLanguageID(ITextFont* pThis, int* pValue) 1236 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1245 return (winmdroot.Foundation.HRESULT)ex.HResult; 1261 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1267 private static winmdroot.Foundation.HRESULT SetLanguageID(ITextFont* pThis, int Value) 1271 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1280 return (winmdroot.Foundation.HRESULT)ex.HResult; 1300 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1306 private static winmdroot.Foundation.HRESULT GetName(ITextFont* pThis, winmdroot.Foundation.BSTR* pbstr) 1310 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1319 return (winmdroot.Foundation.HRESULT)ex.HResult; 1337 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((ITextFont*)Unsafe.AsPointer(ref this), pbstr).ThrowOnFailure(); 1343 private static winmdroot.Foundation.HRESULT SetName(ITextFont* pThis, winmdroot.Foundation.BSTR bstr) 1347 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1356 return (winmdroot.Foundation.HRESULT)ex.HResult; 1374 ((delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((ITextFont*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 1389 private static winmdroot.Foundation.HRESULT GetOutline(ITextFont* pThis, int* pValue) 1393 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1402 return (winmdroot.Foundation.HRESULT)ex.HResult; 1419 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1425 private static winmdroot.Foundation.HRESULT SetOutline(ITextFont* pThis, int Value) 1429 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1438 return (winmdroot.Foundation.HRESULT)ex.HResult; 1457 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1472 private static winmdroot.Foundation.HRESULT GetPosition(ITextFont* pThis, float* pValue) 1476 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1485 return (winmdroot.Foundation.HRESULT)ex.HResult; 1501 ((delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1507 private static winmdroot.Foundation.HRESULT SetPosition(ITextFont* pThis, float Value) 1511 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1520 return (winmdroot.Foundation.HRESULT)ex.HResult; 1536 ((delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1551 private static winmdroot.Foundation.HRESULT GetProtected(ITextFont* pThis, int* pValue) 1555 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1564 return (winmdroot.Foundation.HRESULT)ex.HResult; 1581 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1587 private static winmdroot.Foundation.HRESULT SetProtected(ITextFont* pThis, int Value) 1591 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1600 return (winmdroot.Foundation.HRESULT)ex.HResult; 1617 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1632 private static winmdroot.Foundation.HRESULT GetShadow(ITextFont* pThis, int* pValue) 1636 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1645 return (winmdroot.Foundation.HRESULT)ex.HResult; 1662 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1668 private static winmdroot.Foundation.HRESULT SetShadow(ITextFont* pThis, int Value) 1672 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1681 return (winmdroot.Foundation.HRESULT)ex.HResult; 1700 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1715 private static winmdroot.Foundation.HRESULT GetSize(ITextFont* pThis, float* pValue) 1719 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1728 return (winmdroot.Foundation.HRESULT)ex.HResult; 1746 ((delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1752 private static winmdroot.Foundation.HRESULT SetSize(ITextFont* pThis, float Value) 1756 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1765 return (winmdroot.Foundation.HRESULT)ex.HResult; 1783 ((delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1798 private static winmdroot.Foundation.HRESULT GetSmallCaps(ITextFont* pThis, int* pValue) 1802 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1811 return (winmdroot.Foundation.HRESULT)ex.HResult; 1828 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1834 private static winmdroot.Foundation.HRESULT SetSmallCaps(ITextFont* pThis, int Value) 1838 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1847 return (winmdroot.Foundation.HRESULT)ex.HResult; 1866 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1881 private static winmdroot.Foundation.HRESULT GetSpacing(ITextFont* pThis, float* pValue) 1885 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1894 return (winmdroot.Foundation.HRESULT)ex.HResult; 1910 ((delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1916 private static winmdroot.Foundation.HRESULT SetSpacing(ITextFont* pThis, float Value) 1920 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1929 return (winmdroot.Foundation.HRESULT)ex.HResult; 1945 ((delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1960 private static winmdroot.Foundation.HRESULT GetStrikeThrough(ITextFont* pThis, int* pValue) 1964 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1973 return (winmdroot.Foundation.HRESULT)ex.HResult; 1990 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1996 private static winmdroot.Foundation.HRESULT SetStrikeThrough(ITextFont* pThis, int Value) 2000 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2009 return (winmdroot.Foundation.HRESULT)ex.HResult; 2028 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 2043 private static winmdroot.Foundation.HRESULT GetSubscript(ITextFont* pThis, int* pValue) 2047 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2056 return (winmdroot.Foundation.HRESULT)ex.HResult; 2073 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 2079 private static winmdroot.Foundation.HRESULT SetSubscript(ITextFont* pThis, int Value) 2083 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2092 return (winmdroot.Foundation.HRESULT)ex.HResult; 2111 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 2126 private static winmdroot.Foundation.HRESULT GetSuperscript(ITextFont* pThis, int* pValue) 2130 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2139 return (winmdroot.Foundation.HRESULT)ex.HResult; 2156 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 2162 private static winmdroot.Foundation.HRESULT SetSuperscript(ITextFont* pThis, int Value) 2166 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2175 return (winmdroot.Foundation.HRESULT)ex.HResult; 2194 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 2209 private static winmdroot.Foundation.HRESULT GetUnderline(ITextFont* pThis, int* pValue) 2213 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2222 return (winmdroot.Foundation.HRESULT)ex.HResult; 2237 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 2243 private static winmdroot.Foundation.HRESULT SetUnderline(ITextFont* pThis, int Value) 2247 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2256 return (winmdroot.Foundation.HRESULT)ex.HResult; 2271 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 2286 private static winmdroot.Foundation.HRESULT GetWeight(ITextFont* pThis, int* pValue) 2290 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2299 return (winmdroot.Foundation.HRESULT)ex.HResult; 2318 ((delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((ITextFont*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 2324 private static winmdroot.Foundation.HRESULT SetWeight(ITextFont* pThis, int Value) 2328 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2337 return (winmdroot.Foundation.HRESULT)ex.HResult; 2356 ((delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((ITextFont*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 2359 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2363 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 2380 internal delegate *unmanaged [Stdcall]<ITextFont*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2386 internal delegate *unmanaged [Stdcall]<ITextFont*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2388 internal delegate *unmanaged [Stdcall]<ITextFont*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2390 internal delegate *unmanaged [Stdcall]<ITextFont*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2392 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 2394 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT> GetDuplicate_8; 2396 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT> SetDuplicate_9; 2398 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> CanChange_10; 2400 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.ITextFont* ,int* ,winmdroot.Foundation.HRESULT> IsEqual_11; 2402 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT> Reset_12; 2404 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetStyle_13; 2406 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetStyle_14; 2408 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetAllCaps_15; 2410 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetAllCaps_16; 2412 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetAnimation_17; 2414 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetAnimation_18; 2416 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetBackColor_19; 2418 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetBackColor_20; 2420 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetBold_21; 2422 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetBold_22; 2424 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetEmboss_23; 2426 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetEmboss_24; 2428 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetForeColor_25; 2430 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetForeColor_26; 2432 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetHidden_27; 2434 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetHidden_28; 2436 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetEngrave_29; 2438 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetEngrave_30; 2440 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetItalic_31; 2442 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetItalic_32; 2444 internal delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT> GetKerning_33; 2446 internal delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT> SetKerning_34; 2448 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetLanguageID_35; 2450 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetLanguageID_36; 2452 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetName_37; 2454 internal delegate *unmanaged [Stdcall]<ITextFont*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> SetName_38; 2456 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetOutline_39; 2458 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetOutline_40; 2460 internal delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT> GetPosition_41; 2462 internal delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT> SetPosition_42; 2464 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetProtected_43; 2466 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetProtected_44; 2468 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetShadow_45; 2470 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetShadow_46; 2472 internal delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT> GetSize_47; 2474 internal delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT> SetSize_48; 2476 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetSmallCaps_49; 2478 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetSmallCaps_50; 2480 internal delegate *unmanaged [Stdcall]<ITextFont*,float* ,winmdroot.Foundation.HRESULT> GetSpacing_51; 2482 internal delegate *unmanaged [Stdcall]<ITextFont*,float ,winmdroot.Foundation.HRESULT> SetSpacing_52; 2484 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetStrikeThrough_53; 2486 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetStrikeThrough_54; 2488 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetSubscript_55; 2490 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetSubscript_56; 2492 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetSuperscript_57; 2494 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetSuperscript_58; 2496 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetUnderline_59; 2498 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetUnderline_60; 2500 internal delegate *unmanaged [Stdcall]<ITextFont*,int* ,winmdroot.Foundation.HRESULT> GetWeight_61; 2502 internal delegate *unmanaged [Stdcall]<ITextFont*,int ,winmdroot.Foundation.HRESULT> SetWeight_62; 2583 unsafe winmdroot.Foundation.HRESULT GetDuplicate(winmdroot.UI.Controls.RichEdit.ITextFont** ppFont); 2586 unsafe winmdroot.Foundation.HRESULT SetDuplicate([Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont); 2589 unsafe winmdroot.Foundation.HRESULT CanChange(int* pValue); 2592 unsafe winmdroot.Foundation.HRESULT IsEqual([Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont, int* pValue); 2595winmdroot.Foundation.HRESULT Reset(winmdroot.UI.Controls.RichEdit.tomConstants Value); 2598 unsafe winmdroot.Foundation.HRESULT GetStyle(int* pValue); 2601winmdroot.Foundation.HRESULT SetStyle(int Value); 2604 unsafe winmdroot.Foundation.HRESULT GetAllCaps(int* pValue); 2607winmdroot.Foundation.HRESULT SetAllCaps(int Value); 2610 unsafe winmdroot.Foundation.HRESULT GetAnimation(int* pValue); 2613winmdroot.Foundation.HRESULT SetAnimation(int Value); 2616 unsafe winmdroot.Foundation.HRESULT GetBackColor(int* pValue); 2619winmdroot.Foundation.HRESULT SetBackColor(int Value); 2622 unsafe winmdroot.Foundation.HRESULT GetBold(int* pValue); 2625winmdroot.Foundation.HRESULT SetBold(int Value); 2628 unsafe winmdroot.Foundation.HRESULT GetEmboss(int* pValue); 2631winmdroot.Foundation.HRESULT SetEmboss(int Value); 2634 unsafe winmdroot.Foundation.HRESULT GetForeColor(int* pValue); 2637winmdroot.Foundation.HRESULT SetForeColor(int Value); 2640 unsafe winmdroot.Foundation.HRESULT GetHidden(int* pValue); 2643winmdroot.Foundation.HRESULT SetHidden(int Value); 2646 unsafe winmdroot.Foundation.HRESULT GetEngrave(int* pValue); 2649winmdroot.Foundation.HRESULT SetEngrave(int Value); 2652 unsafe winmdroot.Foundation.HRESULT GetItalic(int* pValue); 2655winmdroot.Foundation.HRESULT SetItalic(int Value); 2658 unsafe winmdroot.Foundation.HRESULT GetKerning(float* pValue); 2661winmdroot.Foundation.HRESULT SetKerning(float Value); 2664 unsafe winmdroot.Foundation.HRESULT GetLanguageID(int* pValue); 2667winmdroot.Foundation.HRESULT SetLanguageID(int Value); 2670 unsafe winmdroot.Foundation.HRESULT GetName(winmdroot.Foundation.BSTR* pbstr); 2673winmdroot.Foundation.HRESULT SetName(winmdroot.Foundation.BSTR bstr); 2676 unsafe winmdroot.Foundation.HRESULT GetOutline(int* pValue); 2679winmdroot.Foundation.HRESULT SetOutline(int Value); 2682 unsafe winmdroot.Foundation.HRESULT GetPosition(float* pValue); 2685winmdroot.Foundation.HRESULT SetPosition(float Value); 2688 unsafe winmdroot.Foundation.HRESULT GetProtected(int* pValue); 2691winmdroot.Foundation.HRESULT SetProtected(int Value); 2694 unsafe winmdroot.Foundation.HRESULT GetShadow(int* pValue); 2697winmdroot.Foundation.HRESULT SetShadow(int Value); 2700 unsafe winmdroot.Foundation.HRESULT GetSize(float* pValue); 2703winmdroot.Foundation.HRESULT SetSize(float Value); 2706 unsafe winmdroot.Foundation.HRESULT GetSmallCaps(int* pValue); 2709winmdroot.Foundation.HRESULT SetSmallCaps(int Value); 2712 unsafe winmdroot.Foundation.HRESULT GetSpacing(float* pValue); 2715winmdroot.Foundation.HRESULT SetSpacing(float Value); 2718 unsafe winmdroot.Foundation.HRESULT GetStrikeThrough(int* pValue); 2721winmdroot.Foundation.HRESULT SetStrikeThrough(int Value); 2724 unsafe winmdroot.Foundation.HRESULT GetSubscript(int* pValue); 2727winmdroot.Foundation.HRESULT SetSubscript(int Value); 2730 unsafe winmdroot.Foundation.HRESULT GetSuperscript(int* pValue); 2733winmdroot.Foundation.HRESULT SetSuperscript(int Value); 2736 unsafe winmdroot.Foundation.HRESULT GetUnderline(int* pValue); 2739winmdroot.Foundation.HRESULT SetUnderline(int Value); 2742 unsafe winmdroot.Foundation.HRESULT GetWeight(int* pValue); 2745winmdroot.Foundation.HRESULT SetWeight(int Value);
Windows.Win32.ITextPara.g.cs (303)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ITextPara*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextPara*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 ((delegate *unmanaged [Stdcall]<ITextPara*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextPara*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 71 ((delegate *unmanaged [Stdcall]<ITextPara*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextPara*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 92 ((delegate *unmanaged [Stdcall]<ITextPara*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITextPara*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 109 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextPara*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 115 private static winmdroot.Foundation.HRESULT GetDuplicate(ITextPara* pThis, winmdroot.UI.Controls.RichEdit.ITextPara** ppPara) 119 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 146 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextPara*)Unsafe.AsPointer(ref this), ppPara).ThrowOnFailure(); 152 private static winmdroot.Foundation.HRESULT SetDuplicate(ITextPara* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara) 156 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 165 return (winmdroot.Foundation.HRESULT)ex.HResult; 181 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextPara*)Unsafe.AsPointer(ref this), pPara).ThrowOnFailure(); 196 private static winmdroot.Foundation.HRESULT CanChange(ITextPara* pThis, int* pValue) 200 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 209 return (winmdroot.Foundation.HRESULT)ex.HResult; 224 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 239 private static winmdroot.Foundation.HRESULT IsEqual(ITextPara* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara, int* pValue) 243 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 252 return (winmdroot.Foundation.HRESULT)ex.HResult; 273 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextPara*)Unsafe.AsPointer(ref this), pPara, pValue).ThrowOnFailure(); 279 private static winmdroot.Foundation.HRESULT Reset(ITextPara* pThis, int Value) 283 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 292 return (winmdroot.Foundation.HRESULT)ex.HResult; 311 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 326 private static winmdroot.Foundation.HRESULT GetStyle(ITextPara* pThis, int* pValue) 330 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 339 return (winmdroot.Foundation.HRESULT)ex.HResult; 359 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 365 private static winmdroot.Foundation.HRESULT SetStyle(ITextPara* pThis, int Value) 369 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 378 return (winmdroot.Foundation.HRESULT)ex.HResult; 396 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 411 private static winmdroot.Foundation.HRESULT GetAlignment(ITextPara* pThis, int* pValue) 415 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 424 return (winmdroot.Foundation.HRESULT)ex.HResult; 439 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 445 private static winmdroot.Foundation.HRESULT SetAlignment(ITextPara* pThis, int Value) 449 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 458 return (winmdroot.Foundation.HRESULT)ex.HResult; 476 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 491 private static winmdroot.Foundation.HRESULT GetHyphenation(ITextPara* pThis, winmdroot.UI.Controls.RichEdit.tomConstants* pValue) 495 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 504 return (winmdroot.Foundation.HRESULT)ex.HResult; 517 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 523 private static winmdroot.Foundation.HRESULT SetHyphenation(ITextPara* pThis, int Value) 527 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 536 return (winmdroot.Foundation.HRESULT)ex.HResult; 555 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 570 private static winmdroot.Foundation.HRESULT GetFirstLineIndent(ITextPara* pThis, float* pValue) 574 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 583 return (winmdroot.Foundation.HRESULT)ex.HResult; 602 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 617 private static winmdroot.Foundation.HRESULT GetKeepTogether(ITextPara* pThis, winmdroot.UI.Controls.RichEdit.tomConstants* pValue) 621 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 630 return (winmdroot.Foundation.HRESULT)ex.HResult; 643 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 649 private static winmdroot.Foundation.HRESULT SetKeepTogether(ITextPara* pThis, int Value) 653 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 662 return (winmdroot.Foundation.HRESULT)ex.HResult; 679 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 694 private static winmdroot.Foundation.HRESULT GetKeepWithNext(ITextPara* pThis, winmdroot.UI.Controls.RichEdit.tomConstants* pValue) 698 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 707 return (winmdroot.Foundation.HRESULT)ex.HResult; 720 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 726 private static winmdroot.Foundation.HRESULT SetKeepWithNext(ITextPara* pThis, int Value) 730 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 739 return (winmdroot.Foundation.HRESULT)ex.HResult; 756 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 771 private static winmdroot.Foundation.HRESULT GetLeftIndent(ITextPara* pThis, float* pValue) 775 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 784 return (winmdroot.Foundation.HRESULT)ex.HResult; 803 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 818 private static winmdroot.Foundation.HRESULT GetLineSpacing(ITextPara* pThis, float* pValue) 822 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 831 return (winmdroot.Foundation.HRESULT)ex.HResult; 849 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 864 private static winmdroot.Foundation.HRESULT GetLineSpacingRule(ITextPara* pThis, int* pValue) 868 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 877 return (winmdroot.Foundation.HRESULT)ex.HResult; 892 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 907 private static winmdroot.Foundation.HRESULT GetListAlignment(ITextPara* pThis, int* pValue) 911 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 920 return (winmdroot.Foundation.HRESULT)ex.HResult; 933 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 939 private static winmdroot.Foundation.HRESULT SetListAlignment(ITextPara* pThis, int Value) 943 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 952 return (winmdroot.Foundation.HRESULT)ex.HResult; 970 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 985 private static winmdroot.Foundation.HRESULT GetListLevelIndex(ITextPara* pThis, int* pValue) 989 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 998 return (winmdroot.Foundation.HRESULT)ex.HResult; 1018 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1024 private static winmdroot.Foundation.HRESULT SetListLevelIndex(ITextPara* pThis, int Value) 1028 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1037 return (winmdroot.Foundation.HRESULT)ex.HResult; 1053 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1068 private static winmdroot.Foundation.HRESULT GetListStart(ITextPara* pThis, int* pValue) 1072 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1081 return (winmdroot.Foundation.HRESULT)ex.HResult; 1097 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1103 private static winmdroot.Foundation.HRESULT SetListStart(ITextPara* pThis, int Value) 1107 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1116 return (winmdroot.Foundation.HRESULT)ex.HResult; 1132 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1147 private static winmdroot.Foundation.HRESULT GetListTab(ITextPara* pThis, float* pValue) 1151 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1160 return (winmdroot.Foundation.HRESULT)ex.HResult; 1176 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1182 private static winmdroot.Foundation.HRESULT SetListTab(ITextPara* pThis, float Value) 1186 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1195 return (winmdroot.Foundation.HRESULT)ex.HResult; 1213 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1228 private static winmdroot.Foundation.HRESULT GetListType(ITextPara* pThis, int* pValue) 1232 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1241 return (winmdroot.Foundation.HRESULT)ex.HResult; 1259 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1265 private static winmdroot.Foundation.HRESULT SetListType(ITextPara* pThis, int Value) 1269 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1278 return (winmdroot.Foundation.HRESULT)ex.HResult; 1296 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1311 private static winmdroot.Foundation.HRESULT GetNoLineNumber(ITextPara* pThis, int* pValue) 1315 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1324 return (winmdroot.Foundation.HRESULT)ex.HResult; 1337 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1343 private static winmdroot.Foundation.HRESULT SetNoLineNumber(ITextPara* pThis, int Value) 1347 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1356 return (winmdroot.Foundation.HRESULT)ex.HResult; 1376 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1391 private static winmdroot.Foundation.HRESULT GetPageBreakBefore(ITextPara* pThis, int* pValue) 1395 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1404 return (winmdroot.Foundation.HRESULT)ex.HResult; 1419 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1425 private static winmdroot.Foundation.HRESULT SetPageBreakBefore(ITextPara* pThis, int Value) 1429 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1438 return (winmdroot.Foundation.HRESULT)ex.HResult; 1451 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1466 private static winmdroot.Foundation.HRESULT GetRightIndent(ITextPara* pThis, float* pValue) 1470 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1479 return (winmdroot.Foundation.HRESULT)ex.HResult; 1497 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1503 private static winmdroot.Foundation.HRESULT SetRightIndent(ITextPara* pThis, float Value) 1507 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1516 return (winmdroot.Foundation.HRESULT)ex.HResult; 1534 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1540 private static winmdroot.Foundation.HRESULT SetIndents(ITextPara* pThis, float First, float Left, float Right) 1544 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1553 return (winmdroot.Foundation.HRESULT)ex.HResult; 1577 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,float ,float ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((ITextPara*)Unsafe.AsPointer(ref this), First, Left, Right).ThrowOnFailure(); 1583 private static winmdroot.Foundation.HRESULT SetLineSpacing(ITextPara* pThis, int Rule, float Spacing) 1587 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1596 return (winmdroot.Foundation.HRESULT)ex.HResult; 1616 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,float ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((ITextPara*)Unsafe.AsPointer(ref this), Rule, Spacing).ThrowOnFailure(); 1631 private static winmdroot.Foundation.HRESULT GetSpaceAfter(ITextPara* pThis, float* pValue) 1635 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1644 return (winmdroot.Foundation.HRESULT)ex.HResult; 1662 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1668 private static winmdroot.Foundation.HRESULT SetSpaceAfter(ITextPara* pThis, float Value) 1672 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1681 return (winmdroot.Foundation.HRESULT)ex.HResult; 1699 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1714 private static winmdroot.Foundation.HRESULT GetSpaceBefore(ITextPara* pThis, float* pValue) 1718 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1727 return (winmdroot.Foundation.HRESULT)ex.HResult; 1745 ((delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1751 private static winmdroot.Foundation.HRESULT SetSpaceBefore(ITextPara* pThis, float Value) 1755 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1764 return (winmdroot.Foundation.HRESULT)ex.HResult; 1782 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1797 private static winmdroot.Foundation.HRESULT GetWidowControl(ITextPara* pThis, int* pValue) 1801 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1810 return (winmdroot.Foundation.HRESULT)ex.HResult; 1823 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((ITextPara*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1829 private static winmdroot.Foundation.HRESULT SetWidowControl(ITextPara* pThis, int Value) 1833 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1842 return (winmdroot.Foundation.HRESULT)ex.HResult; 1862 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((ITextPara*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1877 private static winmdroot.Foundation.HRESULT GetTabCount(ITextPara* pThis, int* pCount) 1881 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1890 return (winmdroot.Foundation.HRESULT)ex.HResult; 1906 ((delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((ITextPara*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 1912 private static winmdroot.Foundation.HRESULT AddTab(ITextPara* pThis, float tbPos, int tbAlign, int tbLeader) 1916 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1925 return (winmdroot.Foundation.HRESULT)ex.HResult; 1951 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((ITextPara*)Unsafe.AsPointer(ref this), tbPos, tbAlign, tbLeader).ThrowOnFailure(); 1957 private static winmdroot.Foundation.HRESULT ClearAllTabs(ITextPara* pThis) 1961 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1970 return (winmdroot.Foundation.HRESULT)ex.HResult; 1984 ((delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.Foundation.HRESULT>)lpVtbl[52])((ITextPara*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1990 private static winmdroot.Foundation.HRESULT DeleteTab(ITextPara* pThis, float tbPos) 1994 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2003 return (winmdroot.Foundation.HRESULT)ex.HResult; 2021 ((delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((ITextPara*)Unsafe.AsPointer(ref this), tbPos).ThrowOnFailure(); 2042 private static winmdroot.Foundation.HRESULT GetTab(ITextPara* pThis, int iTab, float* ptbPos, int* ptbAlign, int* ptbLeader) 2046 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2055 return (winmdroot.Foundation.HRESULT)ex.HResult; 2087 ((delegate *unmanaged [Stdcall]<ITextPara*,int ,float* ,int* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((ITextPara*)Unsafe.AsPointer(ref this), iTab, ptbPos, ptbAlign, ptbLeader).ThrowOnFailure(); 2090 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2094 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 2111 internal delegate *unmanaged [Stdcall]<ITextPara*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2117 internal delegate *unmanaged [Stdcall]<ITextPara*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2119 internal delegate *unmanaged [Stdcall]<ITextPara*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2121 internal delegate *unmanaged [Stdcall]<ITextPara*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2123 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 2125 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT> GetDuplicate_8; 2127 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT> SetDuplicate_9; 2129 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> CanChange_10; 2131 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.ITextPara* ,int* ,winmdroot.Foundation.HRESULT> IsEqual_11; 2133 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> Reset_12; 2135 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetStyle_13; 2137 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetStyle_14; 2139 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetAlignment_15; 2141 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetAlignment_16; 2143 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT> GetHyphenation_17; 2145 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetHyphenation_18; 2147 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetFirstLineIndent_19; 2149 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT> GetKeepTogether_20; 2151 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetKeepTogether_21; 2153 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.UI.Controls.RichEdit.tomConstants* ,winmdroot.Foundation.HRESULT> GetKeepWithNext_22; 2155 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetKeepWithNext_23; 2157 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetLeftIndent_24; 2159 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetLineSpacing_25; 2161 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetLineSpacingRule_26; 2163 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetListAlignment_27; 2165 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetListAlignment_28; 2167 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetListLevelIndex_29; 2169 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetListLevelIndex_30; 2171 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetListStart_31; 2173 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetListStart_32; 2175 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetListTab_33; 2177 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT> SetListTab_34; 2179 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetListType_35; 2181 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetListType_36; 2183 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetNoLineNumber_37; 2185 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetNoLineNumber_38; 2187 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetPageBreakBefore_39; 2189 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetPageBreakBefore_40; 2191 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetRightIndent_41; 2193 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT> SetRightIndent_42; 2195 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,float ,float ,winmdroot.Foundation.HRESULT> SetIndents_43; 2197 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,float ,winmdroot.Foundation.HRESULT> SetLineSpacing_44; 2199 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetSpaceAfter_45; 2201 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT> SetSpaceAfter_46; 2203 internal delegate *unmanaged [Stdcall]<ITextPara*,float* ,winmdroot.Foundation.HRESULT> GetSpaceBefore_47; 2205 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT> SetSpaceBefore_48; 2207 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetWidowControl_49; 2209 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,winmdroot.Foundation.HRESULT> SetWidowControl_50; 2211 internal delegate *unmanaged [Stdcall]<ITextPara*,int* ,winmdroot.Foundation.HRESULT> GetTabCount_51; 2213 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,int ,int ,winmdroot.Foundation.HRESULT> AddTab_52; 2215 internal delegate *unmanaged [Stdcall]<ITextPara*,winmdroot.Foundation.HRESULT> ClearAllTabs_53; 2217 internal delegate *unmanaged [Stdcall]<ITextPara*,float ,winmdroot.Foundation.HRESULT> DeleteTab_54; 2219 internal delegate *unmanaged [Stdcall]<ITextPara*,int ,float* ,int* ,int* ,winmdroot.Foundation.HRESULT> GetTab_55; 2293 unsafe winmdroot.Foundation.HRESULT GetDuplicate(winmdroot.UI.Controls.RichEdit.ITextPara** ppPara); 2296 unsafe winmdroot.Foundation.HRESULT SetDuplicate([Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara); 2299 unsafe winmdroot.Foundation.HRESULT CanChange(int* pValue); 2302 unsafe winmdroot.Foundation.HRESULT IsEqual([Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara, int* pValue); 2305winmdroot.Foundation.HRESULT Reset(int Value); 2308 unsafe winmdroot.Foundation.HRESULT GetStyle(int* pValue); 2311winmdroot.Foundation.HRESULT SetStyle(int Value); 2314 unsafe winmdroot.Foundation.HRESULT GetAlignment(int* pValue); 2317winmdroot.Foundation.HRESULT SetAlignment(int Value); 2320 unsafe winmdroot.Foundation.HRESULT GetHyphenation(winmdroot.UI.Controls.RichEdit.tomConstants* pValue); 2323winmdroot.Foundation.HRESULT SetHyphenation(int Value); 2326 unsafe winmdroot.Foundation.HRESULT GetFirstLineIndent(float* pValue); 2329 unsafe winmdroot.Foundation.HRESULT GetKeepTogether(winmdroot.UI.Controls.RichEdit.tomConstants* pValue); 2332winmdroot.Foundation.HRESULT SetKeepTogether(int Value); 2335 unsafe winmdroot.Foundation.HRESULT GetKeepWithNext(winmdroot.UI.Controls.RichEdit.tomConstants* pValue); 2338winmdroot.Foundation.HRESULT SetKeepWithNext(int Value); 2341 unsafe winmdroot.Foundation.HRESULT GetLeftIndent(float* pValue); 2344 unsafe winmdroot.Foundation.HRESULT GetLineSpacing(float* pValue); 2347 unsafe winmdroot.Foundation.HRESULT GetLineSpacingRule(int* pValue); 2350 unsafe winmdroot.Foundation.HRESULT GetListAlignment(int* pValue); 2353winmdroot.Foundation.HRESULT SetListAlignment(int Value); 2356 unsafe winmdroot.Foundation.HRESULT GetListLevelIndex(int* pValue); 2359winmdroot.Foundation.HRESULT SetListLevelIndex(int Value); 2362 unsafe winmdroot.Foundation.HRESULT GetListStart(int* pValue); 2365winmdroot.Foundation.HRESULT SetListStart(int Value); 2368 unsafe winmdroot.Foundation.HRESULT GetListTab(float* pValue); 2371winmdroot.Foundation.HRESULT SetListTab(float Value); 2374 unsafe winmdroot.Foundation.HRESULT GetListType(int* pValue); 2377winmdroot.Foundation.HRESULT SetListType(int Value); 2380 unsafe winmdroot.Foundation.HRESULT GetNoLineNumber(int* pValue); 2383winmdroot.Foundation.HRESULT SetNoLineNumber(int Value); 2386 unsafe winmdroot.Foundation.HRESULT GetPageBreakBefore(int* pValue); 2389winmdroot.Foundation.HRESULT SetPageBreakBefore(int Value); 2392 unsafe winmdroot.Foundation.HRESULT GetRightIndent(float* pValue); 2395winmdroot.Foundation.HRESULT SetRightIndent(float Value); 2398winmdroot.Foundation.HRESULT SetIndents(float First, float Left, float Right); 2401winmdroot.Foundation.HRESULT SetLineSpacing(int Rule, float Spacing); 2404 unsafe winmdroot.Foundation.HRESULT GetSpaceAfter(float* pValue); 2407winmdroot.Foundation.HRESULT SetSpaceAfter(float Value); 2410 unsafe winmdroot.Foundation.HRESULT GetSpaceBefore(float* pValue); 2413winmdroot.Foundation.HRESULT SetSpaceBefore(float Value); 2416 unsafe winmdroot.Foundation.HRESULT GetWidowControl(int* pValue); 2419winmdroot.Foundation.HRESULT SetWidowControl(int Value); 2422 unsafe winmdroot.Foundation.HRESULT GetTabCount(int* pCount); 2425winmdroot.Foundation.HRESULT AddTab(float tbPos, int tbAlign, int tbLeader); 2428winmdroot.Foundation.HRESULT ClearAllTabs(); 2431winmdroot.Foundation.HRESULT DeleteTab(float tbPos); 2434 unsafe winmdroot.Foundation.HRESULT GetTab(int iTab, float* ptbPos, int* ptbAlign, int* ptbLeader);
Windows.Win32.ITextProvider.g.cs (43)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ITextProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetSelection(ITextProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 ((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 94 private static winmdroot.Foundation.HRESULT GetVisibleRanges(ITextProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 98 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 123 ((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 130 private static winmdroot.Foundation.HRESULT RangeFromChild(ITextProvider* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple* childElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 134 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 143 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 ((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITextProvider*)Unsafe.AsPointer(ref this), childElement, &__retVal).ThrowOnFailure(); 166 private static winmdroot.Foundation.HRESULT RangeFromPoint(ITextProvider* pThis, winmdroot.UI.Accessibility.UiaPoint point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 170 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 179 return (winmdroot.Foundation.HRESULT)ex.HResult; 199 ((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.UiaPoint ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextProvider*)Unsafe.AsPointer(ref this), point, &__retVal).ThrowOnFailure(); 206 private static winmdroot.Foundation.HRESULT get_DocumentRange(ITextProvider* pThis, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 210 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 216 return winmdroot.Foundation.HRESULT.S_OK; 220 return (winmdroot.Foundation.HRESULT)ex.HResult; 231 ((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 239 private static winmdroot.Foundation.HRESULT get_SupportedTextSelection(ITextProvider* pThis, winmdroot.UI.Accessibility.SupportedTextSelection* pRetVal) 243 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 249 return winmdroot.Foundation.HRESULT.S_OK; 253 return (winmdroot.Foundation.HRESULT)ex.HResult; 267 ((delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextProvider*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 272 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 276 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 293 internal delegate *unmanaged [Stdcall]<ITextProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 299 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetSelection_4; 301 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetVisibleRanges_5; 303 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromChild_6; 305 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.UiaPoint ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromPoint_7; 307 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> get_DocumentRange_8; 309 internal delegate *unmanaged [Stdcall]<ITextProvider*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT> get_SupportedTextSelection_9; 341 unsafe winmdroot.Foundation.HRESULT GetSelection(winmdroot.System.Com.SAFEARRAY** pRetVal); 344 unsafe winmdroot.Foundation.HRESULT GetVisibleRanges(winmdroot.System.Com.SAFEARRAY** pRetVal); 347 unsafe winmdroot.Foundation.HRESULT RangeFromChild(winmdroot.UI.Accessibility.IRawElementProviderSimple* childElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 350 unsafe winmdroot.Foundation.HRESULT RangeFromPoint(winmdroot.UI.Accessibility.UiaPoint point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal);
Windows.Win32.ITextProvider2.g.cs (55)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ITextProvider2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextProvider2*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetSelection(ITextProvider2* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 78 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextProvider2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 85 private static winmdroot.Foundation.HRESULT GetVisibleRanges(ITextProvider2* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 89 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 98 return (winmdroot.Foundation.HRESULT)ex.HResult; 105 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextProvider2*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 112 private static winmdroot.Foundation.HRESULT RangeFromChild(ITextProvider2* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple* childElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 116 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 125 return (winmdroot.Foundation.HRESULT)ex.HResult; 132 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITextProvider2*)Unsafe.AsPointer(ref this), childElement, &__retVal).ThrowOnFailure(); 139 private static winmdroot.Foundation.HRESULT RangeFromPoint(ITextProvider2* pThis, winmdroot.UI.Accessibility.UiaPoint point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 143 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.UiaPoint ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextProvider2*)Unsafe.AsPointer(ref this), point, &__retVal).ThrowOnFailure(); 166 private static winmdroot.Foundation.HRESULT get_DocumentRange(ITextProvider2* pThis, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 170 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 176 return winmdroot.Foundation.HRESULT.S_OK; 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 189 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextProvider2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 197 private static winmdroot.Foundation.HRESULT get_SupportedTextSelection(ITextProvider2* pThis, winmdroot.UI.Accessibility.SupportedTextSelection* pRetVal) 201 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 207 return winmdroot.Foundation.HRESULT.S_OK; 211 return (winmdroot.Foundation.HRESULT)ex.HResult; 220 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextProvider2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 228 private static winmdroot.Foundation.HRESULT RangeFromAnnotation(ITextProvider2* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple* annotationElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 232 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 241 return (winmdroot.Foundation.HRESULT)ex.HResult; 259 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextProvider2*)Unsafe.AsPointer(ref this), annotationElement, &__retVal).ThrowOnFailure(); 276 private static winmdroot.Foundation.HRESULT GetCaretRange(ITextProvider2* pThis, winmdroot.Foundation.BOOL* isActive, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 280 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 289 return (winmdroot.Foundation.HRESULT)ex.HResult; 308 ((delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.Foundation.BOOL* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextProvider2*)Unsafe.AsPointer(ref this), isActive, &__retVal).ThrowOnFailure(); 312 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 316 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 333 internal delegate *unmanaged [Stdcall]<ITextProvider2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 339 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetSelection_4; 341 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetVisibleRanges_5; 343 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromChild_6; 345 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.UiaPoint ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromPoint_7; 347 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> get_DocumentRange_8; 349 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.SupportedTextSelection* ,winmdroot.Foundation.HRESULT> get_SupportedTextSelection_9; 351 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.UI.Accessibility.IRawElementProviderSimple* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> RangeFromAnnotation_10; 353 internal delegate *unmanaged [Stdcall]<ITextProvider2*,winmdroot.Foundation.BOOL* ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> GetCaretRange_11; 387 unsafe new winmdroot.Foundation.HRESULT GetSelection(winmdroot.System.Com.SAFEARRAY** pRetVal); 390 unsafe new winmdroot.Foundation.HRESULT GetVisibleRanges(winmdroot.System.Com.SAFEARRAY** pRetVal); 393 unsafe new winmdroot.Foundation.HRESULT RangeFromChild(winmdroot.UI.Accessibility.IRawElementProviderSimple* childElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 396 unsafe new winmdroot.Foundation.HRESULT RangeFromPoint(winmdroot.UI.Accessibility.UiaPoint point, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 409 unsafe winmdroot.Foundation.HRESULT RangeFromAnnotation(winmdroot.UI.Accessibility.IRawElementProviderSimple* annotationElement, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 412 unsafe winmdroot.Foundation.HRESULT GetCaretRange(winmdroot.Foundation.BOOL* isActive, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal);
Windows.Win32.ITextRange.g.cs (329)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ITextRange*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextRange*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 ((delegate *unmanaged [Stdcall]<ITextRange*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextRange*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 71 ((delegate *unmanaged [Stdcall]<ITextRange*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextRange*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 92 ((delegate *unmanaged [Stdcall]<ITextRange*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITextRange*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 109 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextRange*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 115 private static winmdroot.Foundation.HRESULT GetText(ITextRange* pThis, winmdroot.Foundation.BSTR* pbstr) 119 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 146 public unsafe winmdroot.Foundation.HRESULT GetText(winmdroot.Foundation.BSTR* pbstr) 148 return ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextRange*)Unsafe.AsPointer(ref this), pbstr); 154 private static winmdroot.Foundation.HRESULT SetText(ITextRange* pThis, winmdroot.Foundation.BSTR bstr) 158 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 167 return (winmdroot.Foundation.HRESULT)ex.HResult; 186 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextRange*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 201 private static winmdroot.Foundation.HRESULT GetChar(ITextRange* pThis, int* pChar) 205 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 214 return (winmdroot.Foundation.HRESULT)ex.HResult; 234 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextRange*)Unsafe.AsPointer(ref this), pChar).ThrowOnFailure(); 240 private static winmdroot.Foundation.HRESULT SetChar(ITextRange* pThis, int Char) 244 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 253 return (winmdroot.Foundation.HRESULT)ex.HResult; 274 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextRange*)Unsafe.AsPointer(ref this), Char).ThrowOnFailure(); 280 private static winmdroot.Foundation.HRESULT GetDuplicate(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 284 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 293 return (winmdroot.Foundation.HRESULT)ex.HResult; 312 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextRange*)Unsafe.AsPointer(ref this), ppRange).ThrowOnFailure(); 318 private static winmdroot.Foundation.HRESULT GetFormattedText(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 322 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 331 return (winmdroot.Foundation.HRESULT)ex.HResult; 351 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextRange*)Unsafe.AsPointer(ref this), ppRange).ThrowOnFailure(); 357 private static winmdroot.Foundation.HRESULT SetFormattedText(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange) 361 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 370 return (winmdroot.Foundation.HRESULT)ex.HResult; 389 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextRange*)Unsafe.AsPointer(ref this), pRange).ThrowOnFailure(); 404 private static winmdroot.Foundation.HRESULT GetStart(ITextRange* pThis, int* pcpFirst) 408 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 417 return (winmdroot.Foundation.HRESULT)ex.HResult; 434 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITextRange*)Unsafe.AsPointer(ref this), pcpFirst).ThrowOnFailure(); 440 private static winmdroot.Foundation.HRESULT SetStart(ITextRange* pThis, int cpFirst) 444 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 453 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITextRange*)Unsafe.AsPointer(ref this), cpFirst).ThrowOnFailure(); 487 private static winmdroot.Foundation.HRESULT GetEnd(ITextRange* pThis, int* pcpLim) 491 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 500 return (winmdroot.Foundation.HRESULT)ex.HResult; 518 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITextRange*)Unsafe.AsPointer(ref this), pcpLim).ThrowOnFailure(); 524 private static winmdroot.Foundation.HRESULT SetEnd(ITextRange* pThis, int cpLim) 528 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 537 return (winmdroot.Foundation.HRESULT)ex.HResult; 556 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITextRange*)Unsafe.AsPointer(ref this), cpLim).ThrowOnFailure(); 562 private static winmdroot.Foundation.HRESULT GetFont(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.ITextFont** ppFont) 566 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 575 return (winmdroot.Foundation.HRESULT)ex.HResult; 590 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextRange*)Unsafe.AsPointer(ref this), ppFont).ThrowOnFailure(); 596 private static winmdroot.Foundation.HRESULT SetFont(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont) 600 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 609 return (winmdroot.Foundation.HRESULT)ex.HResult; 625 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextRange*)Unsafe.AsPointer(ref this), pFont).ThrowOnFailure(); 631 private static winmdroot.Foundation.HRESULT GetPara(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.ITextPara** ppPara) 635 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 644 return (winmdroot.Foundation.HRESULT)ex.HResult; 659 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextRange*)Unsafe.AsPointer(ref this), ppPara).ThrowOnFailure(); 665 private static winmdroot.Foundation.HRESULT SetPara(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara) 669 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 678 return (winmdroot.Foundation.HRESULT)ex.HResult; 696 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((ITextRange*)Unsafe.AsPointer(ref this), pPara).ThrowOnFailure(); 711 private static winmdroot.Foundation.HRESULT GetStoryLength(ITextRange* pThis, int* pCount) 715 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 724 return (winmdroot.Foundation.HRESULT)ex.HResult; 741 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((ITextRange*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 756 private static winmdroot.Foundation.HRESULT GetStoryType(ITextRange* pThis, int* pValue) 760 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 769 return (winmdroot.Foundation.HRESULT)ex.HResult; 783 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((ITextRange*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 789 private static winmdroot.Foundation.HRESULT Collapse(ITextRange* pThis, int bStart) 793 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 802 return (winmdroot.Foundation.HRESULT)ex.HResult; 820 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((ITextRange*)Unsafe.AsPointer(ref this), bStart).ThrowOnFailure(); 835 private static winmdroot.Foundation.HRESULT Expand(ITextRange* pThis, int Unit, int* pDelta) 839 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 848 return (winmdroot.Foundation.HRESULT)ex.HResult; 868 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((ITextRange*)Unsafe.AsPointer(ref this), Unit, pDelta).ThrowOnFailure(); 883 private static winmdroot.Foundation.HRESULT GetIndex(ITextRange* pThis, int Unit, int* pIndex) 887 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 896 return (winmdroot.Foundation.HRESULT)ex.HResult; 919 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((ITextRange*)Unsafe.AsPointer(ref this), Unit, pIndex).ThrowOnFailure(); 925 private static winmdroot.Foundation.HRESULT SetIndex(ITextRange* pThis, int Unit, int Index, int Extend) 929 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 938 return (winmdroot.Foundation.HRESULT)ex.HResult; 962 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Index, Extend).ThrowOnFailure(); 968 private static winmdroot.Foundation.HRESULT SetRange(ITextRange* pThis, int cpAnchor, int cpActive) 972 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 981 return (winmdroot.Foundation.HRESULT)ex.HResult; 1004 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((ITextRange*)Unsafe.AsPointer(ref this), cpAnchor, cpActive).ThrowOnFailure(); 1019 private static winmdroot.Foundation.HRESULT InRange(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 1023 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1032 return (winmdroot.Foundation.HRESULT)ex.HResult; 1055 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((ITextRange*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 1070 private static winmdroot.Foundation.HRESULT InStory(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 1074 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1083 return (winmdroot.Foundation.HRESULT)ex.HResult; 1104 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((ITextRange*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 1119 private static winmdroot.Foundation.HRESULT IsEqual(ITextRange* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 1123 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1132 return (winmdroot.Foundation.HRESULT)ex.HResult; 1154 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((ITextRange*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 1160 private static winmdroot.Foundation.HRESULT Select(ITextRange* pThis) 1164 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1173 return (winmdroot.Foundation.HRESULT)ex.HResult; 1187 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.HRESULT>)lpVtbl[32])((ITextRange*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1191 internal unsafe winmdroot.Foundation.HRESULT StartOf(int Unit, int Extend, out int pDelta) 1195 winmdroot.Foundation.HRESULT __result = this.StartOf(Unit, Extend, pDeltaLocal); 1203 private static winmdroot.Foundation.HRESULT StartOf(ITextRange* pThis, int Unit, int Extend, int* pDelta) 1207 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1216 return (winmdroot.Foundation.HRESULT)ex.HResult; 1238 public unsafe winmdroot.Foundation.HRESULT StartOf(int Unit, int Extend, int* pDelta) 1240 return ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Extend, pDelta); 1244 internal unsafe winmdroot.Foundation.HRESULT EndOf(int Unit, int Extend, out int pDelta) 1248 winmdroot.Foundation.HRESULT __result = this.EndOf(Unit, Extend, pDeltaLocal); 1256 private static winmdroot.Foundation.HRESULT EndOf(ITextRange* pThis, int Unit, int Extend, int* pDelta) 1260 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1269 return (winmdroot.Foundation.HRESULT)ex.HResult; 1293 public unsafe winmdroot.Foundation.HRESULT EndOf(int Unit, int Extend, int* pDelta) 1295 return ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Extend, pDelta); 1310 private static winmdroot.Foundation.HRESULT Move(ITextRange* pThis, int Unit, int Count, int* pDelta) 1314 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1323 return (winmdroot.Foundation.HRESULT)ex.HResult; 1351 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1366 private static winmdroot.Foundation.HRESULT MoveStart(ITextRange* pThis, int Unit, int Count, int* pDelta) 1370 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1379 return (winmdroot.Foundation.HRESULT)ex.HResult; 1406 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1421 private static winmdroot.Foundation.HRESULT MoveEnd(ITextRange* pThis, int Unit, int Count, int* pDelta) 1425 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1434 return (winmdroot.Foundation.HRESULT)ex.HResult; 1461 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1479 private static winmdroot.Foundation.HRESULT MoveWhile(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1483 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1492 return (winmdroot.Foundation.HRESULT)ex.HResult; 1521 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1539 private static winmdroot.Foundation.HRESULT MoveStartWhile(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1543 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1552 return (winmdroot.Foundation.HRESULT)ex.HResult; 1579 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1597 private static winmdroot.Foundation.HRESULT MoveEndWhile(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1601 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1610 return (winmdroot.Foundation.HRESULT)ex.HResult; 1637 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1655 private static winmdroot.Foundation.HRESULT MoveUntil(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1659 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1668 return (winmdroot.Foundation.HRESULT)ex.HResult; 1697 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1715 private static winmdroot.Foundation.HRESULT MoveStartUntil(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1719 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1728 return (winmdroot.Foundation.HRESULT)ex.HResult; 1755 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1773 private static winmdroot.Foundation.HRESULT MoveEndUntil(ITextRange* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1777 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1786 return (winmdroot.Foundation.HRESULT)ex.HResult; 1813 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((ITextRange*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1828 private static winmdroot.Foundation.HRESULT FindText(ITextRange* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1832 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1841 return (winmdroot.Foundation.HRESULT)ex.HResult; 1872 ((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(); 1887 private static winmdroot.Foundation.HRESULT FindTextStart(ITextRange* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1891 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1900 return (winmdroot.Foundation.HRESULT)ex.HResult; 1928 ((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(); 1943 private static winmdroot.Foundation.HRESULT FindTextEnd(ITextRange* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1947 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1956 return (winmdroot.Foundation.HRESULT)ex.HResult; 1984 ((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(); 1999 private static winmdroot.Foundation.HRESULT Delete(ITextRange* pThis, int Unit, int Count, int* pDelta) 2003 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2012 return (winmdroot.Foundation.HRESULT)ex.HResult; 2040 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((ITextRange*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 2055 private static winmdroot.Foundation.HRESULT Cut(ITextRange* pThis, winmdroot.System.Variant.VARIANT* pVar) 2059 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2068 return (winmdroot.Foundation.HRESULT)ex.HResult; 2088 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((ITextRange*)Unsafe.AsPointer(ref this), pVar).ThrowOnFailure(); 2103 private static winmdroot.Foundation.HRESULT Copy(ITextRange* pThis, winmdroot.System.Variant.VARIANT* pVar) 2107 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2116 return (winmdroot.Foundation.HRESULT)ex.HResult; 2136 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((ITextRange*)Unsafe.AsPointer(ref this), pVar).ThrowOnFailure(); 2151 private static winmdroot.Foundation.HRESULT Paste(ITextRange* pThis, winmdroot.System.Variant.VARIANT* pVar, int Format) 2155 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2164 return (winmdroot.Foundation.HRESULT)ex.HResult; 2185 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((ITextRange*)Unsafe.AsPointer(ref this), pVar, Format).ThrowOnFailure(); 2203 private static winmdroot.Foundation.HRESULT CanPaste(ITextRange* pThis, winmdroot.System.Variant.VARIANT* pVar, int Format, int* pValue) 2207 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2216 return (winmdroot.Foundation.HRESULT)ex.HResult; 2244 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((ITextRange*)Unsafe.AsPointer(ref this), pVar, Format, pValue).ThrowOnFailure(); 2259 private static winmdroot.Foundation.HRESULT CanEdit(ITextRange* pThis, int* pValue) 2263 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2272 return (winmdroot.Foundation.HRESULT)ex.HResult; 2287 ((delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((ITextRange*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 2293 private static winmdroot.Foundation.HRESULT ChangeCase(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Type) 2297 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2306 return (winmdroot.Foundation.HRESULT)ex.HResult; 2324 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((ITextRange*)Unsafe.AsPointer(ref this), Type).ThrowOnFailure(); 2342 private static winmdroot.Foundation.HRESULT GetPoint(ITextRange* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Type, int* px, int* py) 2346 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2355 return (winmdroot.Foundation.HRESULT)ex.HResult; 2379 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((ITextRange*)Unsafe.AsPointer(ref this), Type, px, py).ThrowOnFailure(); 2385 private static winmdroot.Foundation.HRESULT SetPoint(ITextRange* pThis, int x, int y, winmdroot.UI.Controls.RichEdit.tomConstants Type, int Extend) 2389 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2398 return (winmdroot.Foundation.HRESULT)ex.HResult; 2427 ((delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((ITextRange*)Unsafe.AsPointer(ref this), x, y, Type, Extend).ThrowOnFailure(); 2433 private static winmdroot.Foundation.HRESULT ScrollIntoView(ITextRange* pThis, int Value) 2437 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2446 return (winmdroot.Foundation.HRESULT)ex.HResult; 2462 public winmdroot.Foundation.HRESULT ScrollIntoView(int Value) 2464 return ((delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((ITextRange*)Unsafe.AsPointer(ref this), Value); 2470 private static winmdroot.Foundation.HRESULT GetEmbeddedObject(ITextRange* pThis, winmdroot.System.Com.IUnknown** ppObject) 2474 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2483 return (winmdroot.Foundation.HRESULT)ex.HResult; 2499 ((delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((ITextRange*)Unsafe.AsPointer(ref this), ppObject).ThrowOnFailure(); 2502 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2506 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 2523 internal delegate *unmanaged [Stdcall]<ITextRange*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2529 internal delegate *unmanaged [Stdcall]<ITextRange*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2531 internal delegate *unmanaged [Stdcall]<ITextRange*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2533 internal delegate *unmanaged [Stdcall]<ITextRange*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2535 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 2537 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetText_8; 2539 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> SetText_9; 2541 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> GetChar_10; 2543 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT> SetChar_11; 2545 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> GetDuplicate_12; 2547 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> GetFormattedText_13; 2549 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,winmdroot.Foundation.HRESULT> SetFormattedText_14; 2551 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> GetStart_15; 2553 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT> SetStart_16; 2555 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> GetEnd_17; 2557 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT> SetEnd_18; 2559 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT> GetFont_19; 2561 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT> SetFont_20; 2563 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT> GetPara_21; 2565 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT> SetPara_22; 2567 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> GetStoryLength_23; 2569 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> GetStoryType_24; 2571 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT> Collapse_25; 2573 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int* ,winmdroot.Foundation.HRESULT> Expand_26; 2575 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int* ,winmdroot.Foundation.HRESULT> GetIndex_27; 2577 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int ,winmdroot.Foundation.HRESULT> SetIndex_28; 2579 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,winmdroot.Foundation.HRESULT> SetRange_29; 2581 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> InRange_30; 2583 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> InStory_31; 2585 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> IsEqual_32; 2587 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.HRESULT> Select_33; 2589 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> StartOf_34; 2591 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> EndOf_35; 2593 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> Move_36; 2595 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStart_37; 2597 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEnd_38; 2599 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveWhile_39; 2601 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStartWhile_40; 2603 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEndWhile_41; 2605 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveUntil_42; 2607 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStartUntil_43; 2609 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEndUntil_44; 2611 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindText_45; 2613 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextStart_46; 2615 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextEnd_47; 2617 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,int* ,winmdroot.Foundation.HRESULT> Delete_48; 2619 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Cut_49; 2621 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Copy_50; 2623 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.Foundation.HRESULT> Paste_51; 2625 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> CanPaste_52; 2627 internal delegate *unmanaged [Stdcall]<ITextRange*,int* ,winmdroot.Foundation.HRESULT> CanEdit_53; 2629 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT> ChangeCase_54; 2631 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,int* ,winmdroot.Foundation.HRESULT> GetPoint_55; 2633 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT> SetPoint_56; 2635 internal delegate *unmanaged [Stdcall]<ITextRange*,int ,winmdroot.Foundation.HRESULT> ScrollIntoView_57; 2637 internal delegate *unmanaged [Stdcall]<ITextRange*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetEmbeddedObject_58; 2714 unsafe winmdroot.Foundation.HRESULT GetText(winmdroot.Foundation.BSTR* pbstr); 2717winmdroot.Foundation.HRESULT SetText(winmdroot.Foundation.BSTR bstr); 2720 unsafe winmdroot.Foundation.HRESULT GetChar(int* pChar); 2723winmdroot.Foundation.HRESULT SetChar(int Char); 2726 unsafe winmdroot.Foundation.HRESULT GetDuplicate(winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 2729 unsafe winmdroot.Foundation.HRESULT GetFormattedText(winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 2732 unsafe winmdroot.Foundation.HRESULT SetFormattedText([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange); 2735 unsafe winmdroot.Foundation.HRESULT GetStart(int* pcpFirst); 2738winmdroot.Foundation.HRESULT SetStart(int cpFirst); 2741 unsafe winmdroot.Foundation.HRESULT GetEnd(int* pcpLim); 2744winmdroot.Foundation.HRESULT SetEnd(int cpLim); 2747 unsafe winmdroot.Foundation.HRESULT GetFont(winmdroot.UI.Controls.RichEdit.ITextFont** ppFont); 2750 unsafe winmdroot.Foundation.HRESULT SetFont([Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont); 2753 unsafe winmdroot.Foundation.HRESULT GetPara(winmdroot.UI.Controls.RichEdit.ITextPara** ppPara); 2756 unsafe winmdroot.Foundation.HRESULT SetPara([Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara); 2759 unsafe winmdroot.Foundation.HRESULT GetStoryLength(int* pCount); 2762 unsafe winmdroot.Foundation.HRESULT GetStoryType(int* pValue); 2765winmdroot.Foundation.HRESULT Collapse(int bStart); 2768 unsafe winmdroot.Foundation.HRESULT Expand(int Unit, int* pDelta); 2771 unsafe winmdroot.Foundation.HRESULT GetIndex(int Unit, int* pIndex); 2774winmdroot.Foundation.HRESULT SetIndex(int Unit, int Index, int Extend); 2777winmdroot.Foundation.HRESULT SetRange(int cpAnchor, int cpActive); 2780 unsafe winmdroot.Foundation.HRESULT InRange([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2783 unsafe winmdroot.Foundation.HRESULT InStory([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2786 unsafe winmdroot.Foundation.HRESULT IsEqual([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2789winmdroot.Foundation.HRESULT Select(); 2792 unsafe winmdroot.Foundation.HRESULT StartOf(int Unit, int Extend, int* pDelta); 2795 unsafe winmdroot.Foundation.HRESULT EndOf(int Unit, int Extend, int* pDelta); 2798 unsafe winmdroot.Foundation.HRESULT Move(int Unit, int Count, int* pDelta); 2801 unsafe winmdroot.Foundation.HRESULT MoveStart(int Unit, int Count, int* pDelta); 2804 unsafe winmdroot.Foundation.HRESULT MoveEnd(int Unit, int Count, int* pDelta); 2807 unsafe winmdroot.Foundation.HRESULT MoveWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2810 unsafe winmdroot.Foundation.HRESULT MoveStartWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2813 unsafe winmdroot.Foundation.HRESULT MoveEndWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2816 unsafe winmdroot.Foundation.HRESULT MoveUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2819 unsafe winmdroot.Foundation.HRESULT MoveStartUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2822 unsafe winmdroot.Foundation.HRESULT MoveEndUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2825 unsafe winmdroot.Foundation.HRESULT FindText(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2828 unsafe winmdroot.Foundation.HRESULT FindTextStart(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2831 unsafe winmdroot.Foundation.HRESULT FindTextEnd(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2834 unsafe winmdroot.Foundation.HRESULT Delete(int Unit, int Count, int* pDelta); 2837 unsafe winmdroot.Foundation.HRESULT Cut(winmdroot.System.Variant.VARIANT* pVar); 2840 unsafe winmdroot.Foundation.HRESULT Copy(winmdroot.System.Variant.VARIANT* pVar); 2843 unsafe winmdroot.Foundation.HRESULT Paste(winmdroot.System.Variant.VARIANT* pVar, int Format); 2846 unsafe winmdroot.Foundation.HRESULT CanPaste(winmdroot.System.Variant.VARIANT* pVar, int Format, int* pValue); 2849 unsafe winmdroot.Foundation.HRESULT CanEdit(int* pValue); 2852winmdroot.Foundation.HRESULT ChangeCase(winmdroot.UI.Controls.RichEdit.tomConstants Type); 2855 unsafe winmdroot.Foundation.HRESULT GetPoint(winmdroot.UI.Controls.RichEdit.tomConstants Type, int* px, int* py); 2858winmdroot.Foundation.HRESULT SetPoint(int x, int y, winmdroot.UI.Controls.RichEdit.tomConstants Type, int Extend); 2861winmdroot.Foundation.HRESULT ScrollIntoView(int Value); 2864 unsafe winmdroot.Foundation.HRESULT GetEmbeddedObject(winmdroot.System.Com.IUnknown** ppObject);
Windows.Win32.ITextRangeProvider.g.cs (115)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextRangeProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Clone(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 83 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextRangeProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 90 private static winmdroot.Foundation.HRESULT Compare(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.ITextRangeProvider* range, winmdroot.Foundation.BOOL* pRetVal) 94 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 103 return (winmdroot.Foundation.HRESULT)ex.HResult; 119 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.ITextRangeProvider* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextRangeProvider*)Unsafe.AsPointer(ref this), range, &__retVal).ThrowOnFailure(); 126 private static winmdroot.Foundation.HRESULT CompareEndpoints(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.ITextRangeProvider* targetRange, winmdroot.UI.Accessibility.TextPatternRangeEndpoint targetEndpoint, int* pRetVal) 130 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 139 return (winmdroot.Foundation.HRESULT)ex.HResult; 160 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.UI.Accessibility.ITextRangeProvider* ,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITextRangeProvider*)Unsafe.AsPointer(ref this), endpoint, targetRange, targetEndpoint, &__retVal).ThrowOnFailure(); 167 private static winmdroot.Foundation.HRESULT ExpandToEnclosingUnit(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.TextUnit unit) 171 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 180 return (winmdroot.Foundation.HRESULT)ex.HResult; 200 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextUnit ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextRangeProvider*)Unsafe.AsPointer(ref this), unit).ThrowOnFailure(); 206 private static winmdroot.Foundation.HRESULT FindAttribute(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID attributeId, winmdroot.System.Variant.VARIANT val, winmdroot.Foundation.BOOL backward, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 210 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 219 return (winmdroot.Foundation.HRESULT)ex.HResult; 243 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BOOL ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextRangeProvider*)Unsafe.AsPointer(ref this), attributeId, val, backward, &__retVal).ThrowOnFailure(); 250 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) 254 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 263 return (winmdroot.Foundation.HRESULT)ex.HResult; 287 ((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(); 294 private static winmdroot.Foundation.HRESULT GetAttributeValue(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID attributeId, winmdroot.System.Variant.VARIANT* pRetVal) 298 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 307 return (winmdroot.Foundation.HRESULT)ex.HResult; 323 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextRangeProvider*)Unsafe.AsPointer(ref this), attributeId, &__retVal).ThrowOnFailure(); 330 private static winmdroot.Foundation.HRESULT GetBoundingRectangles(ITextRangeProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 334 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 343 return (winmdroot.Foundation.HRESULT)ex.HResult; 357 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextRangeProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 364 private static winmdroot.Foundation.HRESULT GetEnclosingElement(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal) 368 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 377 return (winmdroot.Foundation.HRESULT)ex.HResult; 389 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextRangeProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 396 private static winmdroot.Foundation.HRESULT GetText(ITextRangeProvider* pThis, int maxLength, winmdroot.Foundation.BSTR* pRetVal) 400 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 409 return (winmdroot.Foundation.HRESULT)ex.HResult; 428 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextRangeProvider*)Unsafe.AsPointer(ref this), maxLength, &__retVal).ThrowOnFailure(); 435 private static winmdroot.Foundation.HRESULT Move(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.TextUnit unit, int count, int* pRetVal) 439 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 448 return (winmdroot.Foundation.HRESULT)ex.HResult; 470 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextUnit ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextRangeProvider*)Unsafe.AsPointer(ref this), unit, count, &__retVal).ThrowOnFailure(); 477 private static winmdroot.Foundation.HRESULT MoveEndpointByUnit(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.TextUnit unit, int count, int* pRetVal) 481 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 490 return (winmdroot.Foundation.HRESULT)ex.HResult; 510 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.UI.Accessibility.TextUnit ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITextRangeProvider*)Unsafe.AsPointer(ref this), endpoint, unit, count, &__retVal).ThrowOnFailure(); 517 private static winmdroot.Foundation.HRESULT MoveEndpointByRange(ITextRangeProvider* pThis, winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.ITextRangeProvider* targetRange, winmdroot.UI.Accessibility.TextPatternRangeEndpoint targetEndpoint) 521 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 530 return (winmdroot.Foundation.HRESULT)ex.HResult; 545 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.UI.Accessibility.ITextRangeProvider* ,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITextRangeProvider*)Unsafe.AsPointer(ref this), endpoint, targetRange, targetEndpoint).ThrowOnFailure(); 551 private static winmdroot.Foundation.HRESULT Select(ITextRangeProvider* pThis) 555 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 564 return (winmdroot.Foundation.HRESULT)ex.HResult; 575 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITextRangeProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 581 private static winmdroot.Foundation.HRESULT AddToSelection(ITextRangeProvider* pThis) 585 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 594 return (winmdroot.Foundation.HRESULT)ex.HResult; 609 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITextRangeProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 615 private static winmdroot.Foundation.HRESULT RemoveFromSelection(ITextRangeProvider* pThis) 619 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 628 return (winmdroot.Foundation.HRESULT)ex.HResult; 643 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextRangeProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 649 private static winmdroot.Foundation.HRESULT ScrollIntoView(ITextRangeProvider* pThis, winmdroot.Foundation.BOOL alignToTop) 653 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 662 return (winmdroot.Foundation.HRESULT)ex.HResult; 680 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextRangeProvider*)Unsafe.AsPointer(ref this), alignToTop).ThrowOnFailure(); 686 private static winmdroot.Foundation.HRESULT GetChildren(ITextRangeProvider* pThis, winmdroot.System.Com.SAFEARRAY** pRetVal) 690 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 699 return (winmdroot.Foundation.HRESULT)ex.HResult; 711 ((delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextRangeProvider*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 715 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 719 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 736 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 742 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> Clone_4; 744 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.ITextRangeProvider* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> Compare_5; 746 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.UI.Accessibility.ITextRangeProvider* ,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,int* ,winmdroot.Foundation.HRESULT> CompareEndpoints_6; 748 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextUnit ,winmdroot.Foundation.HRESULT> ExpandToEnclosingUnit_7; 750 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BOOL ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> FindAttribute_8; 752 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.BOOL ,winmdroot.Foundation.BOOL ,winmdroot.UI.Accessibility.ITextRangeProvider** ,winmdroot.Foundation.HRESULT> FindText_9; 754 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetAttributeValue_10; 756 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetBoundingRectangles_11; 758 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> GetEnclosingElement_12; 760 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,int ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetText_13; 762 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextUnit ,int ,int* ,winmdroot.Foundation.HRESULT> Move_14; 764 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.UI.Accessibility.TextUnit ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEndpointByUnit_15; 766 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.UI.Accessibility.ITextRangeProvider* ,winmdroot.UI.Accessibility.TextPatternRangeEndpoint ,winmdroot.Foundation.HRESULT> MoveEndpointByRange_16; 768 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT> Select_17; 770 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT> AddToSelection_18; 772 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.HRESULT> RemoveFromSelection_19; 774 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> ScrollIntoView_20; 776 internal delegate *unmanaged [Stdcall]<ITextRangeProvider*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetChildren_21; 820 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 823 unsafe winmdroot.Foundation.HRESULT Compare(winmdroot.UI.Accessibility.ITextRangeProvider* range, winmdroot.Foundation.BOOL* pRetVal); 826 unsafe winmdroot.Foundation.HRESULT CompareEndpoints(winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.ITextRangeProvider* targetRange, winmdroot.UI.Accessibility.TextPatternRangeEndpoint targetEndpoint, int* pRetVal); 829winmdroot.Foundation.HRESULT ExpandToEnclosingUnit(winmdroot.UI.Accessibility.TextUnit unit); 832 unsafe winmdroot.Foundation.HRESULT FindAttribute(winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID attributeId, winmdroot.System.Variant.VARIANT val, winmdroot.Foundation.BOOL backward, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 835 unsafe winmdroot.Foundation.HRESULT FindText(winmdroot.Foundation.BSTR text, winmdroot.Foundation.BOOL backward, winmdroot.Foundation.BOOL ignoreCase, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal); 838 unsafe winmdroot.Foundation.HRESULT GetAttributeValue(winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID attributeId, winmdroot.System.Variant.VARIANT* pRetVal); 841 unsafe winmdroot.Foundation.HRESULT GetBoundingRectangles(winmdroot.System.Com.SAFEARRAY** pRetVal); 844 unsafe winmdroot.Foundation.HRESULT GetEnclosingElement(winmdroot.UI.Accessibility.IRawElementProviderSimple** pRetVal); 847 unsafe winmdroot.Foundation.HRESULT GetText(int maxLength, winmdroot.Foundation.BSTR* pRetVal); 850 unsafe winmdroot.Foundation.HRESULT Move(winmdroot.UI.Accessibility.TextUnit unit, int count, int* pRetVal); 853 unsafe winmdroot.Foundation.HRESULT MoveEndpointByUnit(winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.TextUnit unit, int count, int* pRetVal); 856 unsafe winmdroot.Foundation.HRESULT MoveEndpointByRange(winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.ITextRangeProvider* targetRange, winmdroot.UI.Accessibility.TextPatternRangeEndpoint targetEndpoint); 859winmdroot.Foundation.HRESULT Select(); 862winmdroot.Foundation.HRESULT AddToSelection(); 865winmdroot.Foundation.HRESULT RemoveFromSelection(); 868winmdroot.Foundation.HRESULT ScrollIntoView(winmdroot.Foundation.BOOL alignToTop); 871 unsafe winmdroot.Foundation.HRESULT GetChildren(winmdroot.System.Com.SAFEARRAY** pRetVal);
Windows.Win32.ITextSelection.g.cs (381)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ITextSelection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextSelection*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 ((delegate *unmanaged [Stdcall]<ITextSelection*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextSelection*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 71 ((delegate *unmanaged [Stdcall]<ITextSelection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextSelection*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 92 ((delegate *unmanaged [Stdcall]<ITextSelection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITextSelection*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 109 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextSelection*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 115 private static winmdroot.Foundation.HRESULT GetText(ITextSelection* pThis, winmdroot.Foundation.BSTR* pbstr) 119 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 134 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextSelection*)Unsafe.AsPointer(ref this), pbstr).ThrowOnFailure(); 140 private static winmdroot.Foundation.HRESULT SetText(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr) 144 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 153 return (winmdroot.Foundation.HRESULT)ex.HResult; 159 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextSelection*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 174 private static winmdroot.Foundation.HRESULT GetChar(ITextSelection* pThis, int* pChar) 178 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 187 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextSelection*)Unsafe.AsPointer(ref this), pChar).ThrowOnFailure(); 199 private static winmdroot.Foundation.HRESULT SetChar(ITextSelection* pThis, int Char) 203 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 212 return (winmdroot.Foundation.HRESULT)ex.HResult; 218 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((ITextSelection*)Unsafe.AsPointer(ref this), Char).ThrowOnFailure(); 224 private static winmdroot.Foundation.HRESULT GetDuplicate(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 228 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 237 return (winmdroot.Foundation.HRESULT)ex.HResult; 243 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((ITextSelection*)Unsafe.AsPointer(ref this), ppRange).ThrowOnFailure(); 249 private static winmdroot.Foundation.HRESULT GetFormattedText(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 253 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 262 return (winmdroot.Foundation.HRESULT)ex.HResult; 268 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((ITextSelection*)Unsafe.AsPointer(ref this), ppRange).ThrowOnFailure(); 274 private static winmdroot.Foundation.HRESULT SetFormattedText(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange) 278 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 287 return (winmdroot.Foundation.HRESULT)ex.HResult; 293 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((ITextSelection*)Unsafe.AsPointer(ref this), pRange).ThrowOnFailure(); 308 private static winmdroot.Foundation.HRESULT GetStart(ITextSelection* pThis, int* pcpFirst) 312 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 321 return (winmdroot.Foundation.HRESULT)ex.HResult; 327 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((ITextSelection*)Unsafe.AsPointer(ref this), pcpFirst).ThrowOnFailure(); 333 private static winmdroot.Foundation.HRESULT SetStart(ITextSelection* pThis, int cpFirst) 337 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 346 return (winmdroot.Foundation.HRESULT)ex.HResult; 352 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((ITextSelection*)Unsafe.AsPointer(ref this), cpFirst).ThrowOnFailure(); 367 private static winmdroot.Foundation.HRESULT GetEnd(ITextSelection* pThis, int* pcpLim) 371 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 380 return (winmdroot.Foundation.HRESULT)ex.HResult; 386 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((ITextSelection*)Unsafe.AsPointer(ref this), pcpLim).ThrowOnFailure(); 392 private static winmdroot.Foundation.HRESULT SetEnd(ITextSelection* pThis, int cpLim) 396 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 405 return (winmdroot.Foundation.HRESULT)ex.HResult; 411 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((ITextSelection*)Unsafe.AsPointer(ref this), cpLim).ThrowOnFailure(); 417 private static winmdroot.Foundation.HRESULT GetFont(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.ITextFont** ppFont) 421 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 430 return (winmdroot.Foundation.HRESULT)ex.HResult; 436 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((ITextSelection*)Unsafe.AsPointer(ref this), ppFont).ThrowOnFailure(); 442 private static winmdroot.Foundation.HRESULT SetFont(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont) 446 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 455 return (winmdroot.Foundation.HRESULT)ex.HResult; 461 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((ITextSelection*)Unsafe.AsPointer(ref this), pFont).ThrowOnFailure(); 467 private static winmdroot.Foundation.HRESULT GetPara(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.ITextPara** ppPara) 471 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 480 return (winmdroot.Foundation.HRESULT)ex.HResult; 486 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((ITextSelection*)Unsafe.AsPointer(ref this), ppPara).ThrowOnFailure(); 492 private static winmdroot.Foundation.HRESULT SetPara(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara) 496 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 505 return (winmdroot.Foundation.HRESULT)ex.HResult; 511 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((ITextSelection*)Unsafe.AsPointer(ref this), pPara).ThrowOnFailure(); 526 private static winmdroot.Foundation.HRESULT GetStoryLength(ITextSelection* pThis, int* pCount) 530 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 539 return (winmdroot.Foundation.HRESULT)ex.HResult; 545 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((ITextSelection*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 560 private static winmdroot.Foundation.HRESULT GetStoryType(ITextSelection* pThis, int* pValue) 564 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 573 return (winmdroot.Foundation.HRESULT)ex.HResult; 579 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((ITextSelection*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 585 private static winmdroot.Foundation.HRESULT Collapse(ITextSelection* pThis, int bStart) 589 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 598 return (winmdroot.Foundation.HRESULT)ex.HResult; 604 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((ITextSelection*)Unsafe.AsPointer(ref this), bStart).ThrowOnFailure(); 619 private static winmdroot.Foundation.HRESULT Expand(ITextSelection* pThis, int Unit, int* pDelta) 623 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 632 return (winmdroot.Foundation.HRESULT)ex.HResult; 638 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, pDelta).ThrowOnFailure(); 653 private static winmdroot.Foundation.HRESULT GetIndex(ITextSelection* pThis, int Unit, int* pIndex) 657 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 666 return (winmdroot.Foundation.HRESULT)ex.HResult; 672 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, pIndex).ThrowOnFailure(); 678 private static winmdroot.Foundation.HRESULT SetIndex(ITextSelection* pThis, int Unit, int Index, int Extend) 682 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 691 return (winmdroot.Foundation.HRESULT)ex.HResult; 697 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Index, Extend).ThrowOnFailure(); 703 private static winmdroot.Foundation.HRESULT SetRange(ITextSelection* pThis, int cpAnchor, int cpActive) 707 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 716 return (winmdroot.Foundation.HRESULT)ex.HResult; 722 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((ITextSelection*)Unsafe.AsPointer(ref this), cpAnchor, cpActive).ThrowOnFailure(); 737 private static winmdroot.Foundation.HRESULT InRange(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 741 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 750 return (winmdroot.Foundation.HRESULT)ex.HResult; 756 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((ITextSelection*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 771 private static winmdroot.Foundation.HRESULT InStory(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 775 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 784 return (winmdroot.Foundation.HRESULT)ex.HResult; 790 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((ITextSelection*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 805 private static winmdroot.Foundation.HRESULT IsEqual(ITextSelection* pThis, [Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue) 809 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 818 return (winmdroot.Foundation.HRESULT)ex.HResult; 824 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((ITextSelection*)Unsafe.AsPointer(ref this), pRange, pValue).ThrowOnFailure(); 830 private static winmdroot.Foundation.HRESULT Select(ITextSelection* pThis) 834 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 843 return (winmdroot.Foundation.HRESULT)ex.HResult; 849 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.HRESULT>)lpVtbl[32])((ITextSelection*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 864 private static winmdroot.Foundation.HRESULT StartOf(ITextSelection* pThis, int Unit, int Extend, int* pDelta) 868 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 877 return (winmdroot.Foundation.HRESULT)ex.HResult; 883 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Extend, pDelta).ThrowOnFailure(); 898 private static winmdroot.Foundation.HRESULT EndOf(ITextSelection* pThis, int Unit, int Extend, int* pDelta) 902 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 911 return (winmdroot.Foundation.HRESULT)ex.HResult; 917 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Extend, pDelta).ThrowOnFailure(); 932 private static winmdroot.Foundation.HRESULT Move(ITextSelection* pThis, int Unit, int Count, int* pDelta) 936 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 945 return (winmdroot.Foundation.HRESULT)ex.HResult; 951 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 966 private static winmdroot.Foundation.HRESULT MoveStart(ITextSelection* pThis, int Unit, int Count, int* pDelta) 970 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 979 return (winmdroot.Foundation.HRESULT)ex.HResult; 985 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1000 private static winmdroot.Foundation.HRESULT MoveEnd(ITextSelection* pThis, int Unit, int Count, int* pDelta) 1004 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1013 return (winmdroot.Foundation.HRESULT)ex.HResult; 1019 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1037 private static winmdroot.Foundation.HRESULT MoveWhile(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1041 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1050 return (winmdroot.Foundation.HRESULT)ex.HResult; 1056 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1074 private static winmdroot.Foundation.HRESULT MoveStartWhile(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1078 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1087 return (winmdroot.Foundation.HRESULT)ex.HResult; 1093 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1111 private static winmdroot.Foundation.HRESULT MoveEndWhile(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1115 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1124 return (winmdroot.Foundation.HRESULT)ex.HResult; 1130 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1148 private static winmdroot.Foundation.HRESULT MoveUntil(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1152 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1161 return (winmdroot.Foundation.HRESULT)ex.HResult; 1167 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1185 private static winmdroot.Foundation.HRESULT MoveStartUntil(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1189 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1198 return (winmdroot.Foundation.HRESULT)ex.HResult; 1204 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1222 private static winmdroot.Foundation.HRESULT MoveEndUntil(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta) 1226 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1235 return (winmdroot.Foundation.HRESULT)ex.HResult; 1241 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((ITextSelection*)Unsafe.AsPointer(ref this), Cset, Count, pDelta).ThrowOnFailure(); 1256 private static winmdroot.Foundation.HRESULT FindText(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1260 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1269 return (winmdroot.Foundation.HRESULT)ex.HResult; 1275 ((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(); 1290 private static winmdroot.Foundation.HRESULT FindTextStart(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1294 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1303 return (winmdroot.Foundation.HRESULT)ex.HResult; 1309 ((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(); 1324 private static winmdroot.Foundation.HRESULT FindTextEnd(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength) 1328 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1337 return (winmdroot.Foundation.HRESULT)ex.HResult; 1343 ((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(); 1358 private static winmdroot.Foundation.HRESULT Delete(ITextSelection* pThis, int Unit, int Count, int* pDelta) 1362 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1371 return (winmdroot.Foundation.HRESULT)ex.HResult; 1377 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, pDelta).ThrowOnFailure(); 1392 private static winmdroot.Foundation.HRESULT Cut(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* pVar) 1396 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1405 return (winmdroot.Foundation.HRESULT)ex.HResult; 1411 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((ITextSelection*)Unsafe.AsPointer(ref this), pVar).ThrowOnFailure(); 1426 private static winmdroot.Foundation.HRESULT Copy(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* pVar) 1430 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1439 return (winmdroot.Foundation.HRESULT)ex.HResult; 1445 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((ITextSelection*)Unsafe.AsPointer(ref this), pVar).ThrowOnFailure(); 1460 private static winmdroot.Foundation.HRESULT Paste(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* pVar, int Format) 1464 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1473 return (winmdroot.Foundation.HRESULT)ex.HResult; 1479 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((ITextSelection*)Unsafe.AsPointer(ref this), pVar, Format).ThrowOnFailure(); 1497 private static winmdroot.Foundation.HRESULT CanPaste(ITextSelection* pThis, winmdroot.System.Variant.VARIANT* pVar, int Format, int* pValue) 1501 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1510 return (winmdroot.Foundation.HRESULT)ex.HResult; 1516 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((ITextSelection*)Unsafe.AsPointer(ref this), pVar, Format, pValue).ThrowOnFailure(); 1531 private static winmdroot.Foundation.HRESULT CanEdit(ITextSelection* pThis, int* pValue) 1535 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1544 return (winmdroot.Foundation.HRESULT)ex.HResult; 1550 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((ITextSelection*)Unsafe.AsPointer(ref this), pValue).ThrowOnFailure(); 1556 private static winmdroot.Foundation.HRESULT ChangeCase(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Type) 1560 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1569 return (winmdroot.Foundation.HRESULT)ex.HResult; 1575 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((ITextSelection*)Unsafe.AsPointer(ref this), Type).ThrowOnFailure(); 1593 private static winmdroot.Foundation.HRESULT GetPoint(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Type, int* px, int* py) 1597 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1606 return (winmdroot.Foundation.HRESULT)ex.HResult; 1612 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((ITextSelection*)Unsafe.AsPointer(ref this), Type, px, py).ThrowOnFailure(); 1618 private static winmdroot.Foundation.HRESULT SetPoint(ITextSelection* pThis, int x, int y, winmdroot.UI.Controls.RichEdit.tomConstants Type, int Extend) 1622 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1631 return (winmdroot.Foundation.HRESULT)ex.HResult; 1637 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((ITextSelection*)Unsafe.AsPointer(ref this), x, y, Type, Extend).ThrowOnFailure(); 1643 private static winmdroot.Foundation.HRESULT ScrollIntoView(ITextSelection* pThis, int Value) 1647 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1656 return (winmdroot.Foundation.HRESULT)ex.HResult; 1662 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((ITextSelection*)Unsafe.AsPointer(ref this), Value).ThrowOnFailure(); 1668 private static winmdroot.Foundation.HRESULT GetEmbeddedObject(ITextSelection* pThis, winmdroot.System.Com.IUnknown** ppObject) 1672 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1681 return (winmdroot.Foundation.HRESULT)ex.HResult; 1687 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((ITextSelection*)Unsafe.AsPointer(ref this), ppObject).ThrowOnFailure(); 1702 private static winmdroot.Foundation.HRESULT GetFlags(ITextSelection* pThis, int* pFlags) 1706 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1715 return (winmdroot.Foundation.HRESULT)ex.HResult; 1734 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((ITextSelection*)Unsafe.AsPointer(ref this), pFlags).ThrowOnFailure(); 1740 private static winmdroot.Foundation.HRESULT SetFlags(ITextSelection* pThis, int Flags) 1744 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1753 return (winmdroot.Foundation.HRESULT)ex.HResult; 1775 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((ITextSelection*)Unsafe.AsPointer(ref this), Flags).ThrowOnFailure(); 1790 private static winmdroot.Foundation.HRESULT GetType(ITextSelection* pThis, int* pType) 1794 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1803 return (winmdroot.Foundation.HRESULT)ex.HResult; 1822 ((delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((ITextSelection*)Unsafe.AsPointer(ref this), pType).ThrowOnFailure(); 1837 private static winmdroot.Foundation.HRESULT MoveLeft(ITextSelection* pThis, int Unit, int Count, int Extend, int* pDelta) 1841 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1850 return (winmdroot.Foundation.HRESULT)ex.HResult; 1884 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, Extend, pDelta).ThrowOnFailure(); 1899 private static winmdroot.Foundation.HRESULT MoveRight(ITextSelection* pThis, int Unit, int Count, int Extend, int* pDelta) 1903 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1912 return (winmdroot.Foundation.HRESULT)ex.HResult; 1946 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, Extend, pDelta).ThrowOnFailure(); 1961 private static winmdroot.Foundation.HRESULT MoveUp(ITextSelection* pThis, int Unit, int Count, int Extend, int* pDelta) 1965 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1974 return (winmdroot.Foundation.HRESULT)ex.HResult; 2004 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, Extend, pDelta).ThrowOnFailure(); 2019 private static winmdroot.Foundation.HRESULT MoveDown(ITextSelection* pThis, int Unit, int Count, int Extend, int* pDelta) 2023 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2032 return (winmdroot.Foundation.HRESULT)ex.HResult; 2062 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Count, Extend, pDelta).ThrowOnFailure(); 2077 private static winmdroot.Foundation.HRESULT HomeKey(ITextSelection* pThis, winmdroot.UI.Controls.RichEdit.tomConstants Unit, int Extend, int* pDelta) 2081 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2090 return (winmdroot.Foundation.HRESULT)ex.HResult; 2114 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Extend, pDelta).ThrowOnFailure(); 2129 private static winmdroot.Foundation.HRESULT EndKey(ITextSelection* pThis, int Unit, int Extend, int* pDelta) 2133 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2142 return (winmdroot.Foundation.HRESULT)ex.HResult; 2171 ((delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((ITextSelection*)Unsafe.AsPointer(ref this), Unit, Extend, pDelta).ThrowOnFailure(); 2177 private static winmdroot.Foundation.HRESULT TypeText(ITextSelection* pThis, winmdroot.Foundation.BSTR bstr) 2181 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2190 return (winmdroot.Foundation.HRESULT)ex.HResult; 2209 ((delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((ITextSelection*)Unsafe.AsPointer(ref this), bstr).ThrowOnFailure(); 2212 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2216 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 2233 internal delegate *unmanaged [Stdcall]<ITextSelection*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2239 internal delegate *unmanaged [Stdcall]<ITextSelection*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2241 internal delegate *unmanaged [Stdcall]<ITextSelection*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2243 internal delegate *unmanaged [Stdcall]<ITextSelection*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2245 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 2247 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetText_8; 2249 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> SetText_9; 2251 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetChar_10; 2253 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> SetChar_11; 2255 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> GetDuplicate_12; 2257 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> GetFormattedText_13; 2259 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,winmdroot.Foundation.HRESULT> SetFormattedText_14; 2261 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetStart_15; 2263 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> SetStart_16; 2265 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetEnd_17; 2267 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> SetEnd_18; 2269 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextFont** ,winmdroot.Foundation.HRESULT> GetFont_19; 2271 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextFont* ,winmdroot.Foundation.HRESULT> SetFont_20; 2273 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextPara** ,winmdroot.Foundation.HRESULT> GetPara_21; 2275 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextPara* ,winmdroot.Foundation.HRESULT> SetPara_22; 2277 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetStoryLength_23; 2279 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetStoryType_24; 2281 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> Collapse_25; 2283 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int* ,winmdroot.Foundation.HRESULT> Expand_26; 2285 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int* ,winmdroot.Foundation.HRESULT> GetIndex_27; 2287 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,winmdroot.Foundation.HRESULT> SetIndex_28; 2289 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,winmdroot.Foundation.HRESULT> SetRange_29; 2291 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> InRange_30; 2293 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> InStory_31; 2295 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.ITextRange* ,int* ,winmdroot.Foundation.HRESULT> IsEqual_32; 2297 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.HRESULT> Select_33; 2299 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> StartOf_34; 2301 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> EndOf_35; 2303 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> Move_36; 2305 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStart_37; 2307 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEnd_38; 2309 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveWhile_39; 2311 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStartWhile_40; 2313 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEndWhile_41; 2315 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveUntil_42; 2317 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveStartUntil_43; 2319 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> MoveEndUntil_44; 2321 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindText_45; 2323 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextStart_46; 2325 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,winmdroot.Foundation.HRESULT> FindTextEnd_47; 2327 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> Delete_48; 2329 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Cut_49; 2331 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Copy_50; 2333 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,winmdroot.Foundation.HRESULT> Paste_51; 2335 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Variant.VARIANT* ,int ,int* ,winmdroot.Foundation.HRESULT> CanPaste_52; 2337 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> CanEdit_53; 2339 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.tomConstants ,winmdroot.Foundation.HRESULT> ChangeCase_54; 2341 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.tomConstants ,int* ,int* ,winmdroot.Foundation.HRESULT> GetPoint_55; 2343 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,winmdroot.Foundation.HRESULT> SetPoint_56; 2345 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> ScrollIntoView_57; 2347 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetEmbeddedObject_58; 2349 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetFlags_59; 2351 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,winmdroot.Foundation.HRESULT> SetFlags_60; 2353 internal delegate *unmanaged [Stdcall]<ITextSelection*,int* ,winmdroot.Foundation.HRESULT> GetType_61; 2355 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveLeft_62; 2357 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveRight_63; 2359 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveUp_64; 2361 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int ,int* ,winmdroot.Foundation.HRESULT> MoveDown_65; 2363 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.UI.Controls.RichEdit.tomConstants ,int ,int* ,winmdroot.Foundation.HRESULT> HomeKey_66; 2365 internal delegate *unmanaged [Stdcall]<ITextSelection*,int ,int ,int* ,winmdroot.Foundation.HRESULT> EndKey_67; 2367 internal delegate *unmanaged [Stdcall]<ITextSelection*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> TypeText_68; 2454 unsafe new winmdroot.Foundation.HRESULT GetText(winmdroot.Foundation.BSTR* pbstr); 2457 new winmdroot.Foundation.HRESULT SetText(winmdroot.Foundation.BSTR bstr); 2460 unsafe new winmdroot.Foundation.HRESULT GetChar(int* pChar); 2463 new winmdroot.Foundation.HRESULT SetChar(int Char); 2466 unsafe new winmdroot.Foundation.HRESULT GetDuplicate(winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 2469 unsafe new winmdroot.Foundation.HRESULT GetFormattedText(winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 2472 unsafe new winmdroot.Foundation.HRESULT SetFormattedText([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange); 2475 unsafe new winmdroot.Foundation.HRESULT GetStart(int* pcpFirst); 2478 new winmdroot.Foundation.HRESULT SetStart(int cpFirst); 2481 unsafe new winmdroot.Foundation.HRESULT GetEnd(int* pcpLim); 2484 new winmdroot.Foundation.HRESULT SetEnd(int cpLim); 2487 unsafe new winmdroot.Foundation.HRESULT GetFont(winmdroot.UI.Controls.RichEdit.ITextFont** ppFont); 2490 unsafe new winmdroot.Foundation.HRESULT SetFont([Optional] winmdroot.UI.Controls.RichEdit.ITextFont* pFont); 2493 unsafe new winmdroot.Foundation.HRESULT GetPara(winmdroot.UI.Controls.RichEdit.ITextPara** ppPara); 2496 unsafe new winmdroot.Foundation.HRESULT SetPara([Optional] winmdroot.UI.Controls.RichEdit.ITextPara* pPara); 2499 unsafe new winmdroot.Foundation.HRESULT GetStoryLength(int* pCount); 2502 unsafe new winmdroot.Foundation.HRESULT GetStoryType(int* pValue); 2505 new winmdroot.Foundation.HRESULT Collapse(int bStart); 2508 unsafe new winmdroot.Foundation.HRESULT Expand(int Unit, int* pDelta); 2511 unsafe new winmdroot.Foundation.HRESULT GetIndex(int Unit, int* pIndex); 2514 new winmdroot.Foundation.HRESULT SetIndex(int Unit, int Index, int Extend); 2517 new winmdroot.Foundation.HRESULT SetRange(int cpAnchor, int cpActive); 2520 unsafe new winmdroot.Foundation.HRESULT InRange([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2523 unsafe new winmdroot.Foundation.HRESULT InStory([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2526 unsafe new winmdroot.Foundation.HRESULT IsEqual([Optional] winmdroot.UI.Controls.RichEdit.ITextRange* pRange, int* pValue); 2529 new winmdroot.Foundation.HRESULT Select(); 2532 unsafe new winmdroot.Foundation.HRESULT StartOf(int Unit, int Extend, int* pDelta); 2535 unsafe new winmdroot.Foundation.HRESULT EndOf(int Unit, int Extend, int* pDelta); 2538 unsafe new winmdroot.Foundation.HRESULT Move(int Unit, int Count, int* pDelta); 2541 unsafe new winmdroot.Foundation.HRESULT MoveStart(int Unit, int Count, int* pDelta); 2544 unsafe new winmdroot.Foundation.HRESULT MoveEnd(int Unit, int Count, int* pDelta); 2547 unsafe new winmdroot.Foundation.HRESULT MoveWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2550 unsafe new winmdroot.Foundation.HRESULT MoveStartWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2553 unsafe new winmdroot.Foundation.HRESULT MoveEndWhile(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2556 unsafe new winmdroot.Foundation.HRESULT MoveUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2559 unsafe new winmdroot.Foundation.HRESULT MoveStartUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2562 unsafe new winmdroot.Foundation.HRESULT MoveEndUntil(winmdroot.System.Variant.VARIANT* Cset, int Count, int* pDelta); 2565 unsafe new winmdroot.Foundation.HRESULT FindText(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2568 unsafe new winmdroot.Foundation.HRESULT FindTextStart(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2571 unsafe new winmdroot.Foundation.HRESULT FindTextEnd(winmdroot.Foundation.BSTR bstr, int Count, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int* pLength); 2574 unsafe new winmdroot.Foundation.HRESULT Delete(int Unit, int Count, int* pDelta); 2577 unsafe new winmdroot.Foundation.HRESULT Cut(winmdroot.System.Variant.VARIANT* pVar); 2580 unsafe new winmdroot.Foundation.HRESULT Copy(winmdroot.System.Variant.VARIANT* pVar); 2583 unsafe new winmdroot.Foundation.HRESULT Paste(winmdroot.System.Variant.VARIANT* pVar, int Format); 2586 unsafe new winmdroot.Foundation.HRESULT CanPaste(winmdroot.System.Variant.VARIANT* pVar, int Format, int* pValue); 2589 unsafe new winmdroot.Foundation.HRESULT CanEdit(int* pValue); 2592 new winmdroot.Foundation.HRESULT ChangeCase(winmdroot.UI.Controls.RichEdit.tomConstants Type); 2595 unsafe new winmdroot.Foundation.HRESULT GetPoint(winmdroot.UI.Controls.RichEdit.tomConstants Type, int* px, int* py); 2598 new winmdroot.Foundation.HRESULT SetPoint(int x, int y, winmdroot.UI.Controls.RichEdit.tomConstants Type, int Extend); 2601 new winmdroot.Foundation.HRESULT ScrollIntoView(int Value); 2604 unsafe new winmdroot.Foundation.HRESULT GetEmbeddedObject(winmdroot.System.Com.IUnknown** ppObject); 2607 unsafe winmdroot.Foundation.HRESULT GetFlags(int* pFlags); 2610winmdroot.Foundation.HRESULT SetFlags(int Flags); 2613 unsafe winmdroot.Foundation.HRESULT GetType(int* pType); 2616 unsafe winmdroot.Foundation.HRESULT MoveLeft(int Unit, int Count, int Extend, int* pDelta); 2619 unsafe winmdroot.Foundation.HRESULT MoveRight(int Unit, int Count, int Extend, int* pDelta); 2622 unsafe winmdroot.Foundation.HRESULT MoveUp(int Unit, int Count, int Extend, int* pDelta); 2625 unsafe winmdroot.Foundation.HRESULT MoveDown(int Unit, int Count, int Extend, int* pDelta); 2628 unsafe winmdroot.Foundation.HRESULT HomeKey(winmdroot.UI.Controls.RichEdit.tomConstants Unit, int Extend, int* pDelta); 2631 unsafe winmdroot.Foundation.HRESULT EndKey(int Unit, int Extend, int* pDelta); 2634winmdroot.Foundation.HRESULT TypeText(winmdroot.Foundation.BSTR bstr);
Windows.Win32.ITextStoryRanges.g.cs (33)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((ITextStoryRanges*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((ITextStoryRanges*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 71 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((ITextStoryRanges*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 92 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((ITextStoryRanges*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 109 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((ITextStoryRanges*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 115 private static winmdroot.Foundation.HRESULT _NewEnum(ITextStoryRanges* pThis, winmdroot.System.Com.IUnknown** ppunkEnum) 119 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 128 return (winmdroot.Foundation.HRESULT)ex.HResult; 149 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((ITextStoryRanges*)Unsafe.AsPointer(ref this), ppunkEnum).ThrowOnFailure(); 155 private static winmdroot.Foundation.HRESULT Item(ITextStoryRanges* pThis, int Index, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange) 159 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 168 return (winmdroot.Foundation.HRESULT)ex.HResult; 190 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,int ,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((ITextStoryRanges*)Unsafe.AsPointer(ref this), Index, ppRange).ThrowOnFailure(); 205 private static winmdroot.Foundation.HRESULT GetCount(ITextStoryRanges* pThis, int* pCount) 209 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 218 return (winmdroot.Foundation.HRESULT)ex.HResult; 235 ((delegate *unmanaged [Stdcall]<ITextStoryRanges*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((ITextStoryRanges*)Unsafe.AsPointer(ref this), pCount).ThrowOnFailure(); 238 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 242 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 259 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 265 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 267 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 269 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 271 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 273 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> _NewEnum_8; 275 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,int ,winmdroot.UI.Controls.RichEdit.ITextRange** ,winmdroot.Foundation.HRESULT> Item_9; 277 internal delegate *unmanaged [Stdcall]<ITextStoryRanges*,int* ,winmdroot.Foundation.HRESULT> GetCount_10; 306 unsafe winmdroot.Foundation.HRESULT _NewEnum(winmdroot.System.Com.IUnknown** ppunkEnum); 309 unsafe winmdroot.Foundation.HRESULT Item(int Index, winmdroot.UI.Controls.RichEdit.ITextRange** ppRange); 312 unsafe winmdroot.Foundation.HRESULT GetCount(int* pCount);
Windows.Win32.IToggleProvider.g.cs (22)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IToggleProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IToggleProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT Toggle(IToggleProvider* pThis) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 ((delegate *unmanaged [Stdcall]<IToggleProvider*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IToggleProvider*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 89 internal unsafe winmdroot.Foundation.HRESULT get_ToggleState(out winmdroot.UI.Accessibility.ToggleState pRetVal) 93 winmdroot.Foundation.HRESULT __result = this.get_ToggleState(pRetValLocal); 101 private static winmdroot.Foundation.HRESULT get_ToggleState(IToggleProvider* pThis, winmdroot.UI.Accessibility.ToggleState* pRetVal) 105 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 114 return (winmdroot.Foundation.HRESULT)ex.HResult; 123 public unsafe winmdroot.Foundation.HRESULT get_ToggleState(winmdroot.UI.Accessibility.ToggleState* pRetVal) 125 return ((delegate *unmanaged [Stdcall]<IToggleProvider*,winmdroot.UI.Accessibility.ToggleState* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IToggleProvider*)Unsafe.AsPointer(ref this), pRetVal); 128 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 132 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 149 internal delegate *unmanaged [Stdcall]<IToggleProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 155 internal delegate *unmanaged [Stdcall]<IToggleProvider*,winmdroot.Foundation.HRESULT> Toggle_4; 157 internal delegate *unmanaged [Stdcall]<IToggleProvider*,winmdroot.UI.Accessibility.ToggleState* ,winmdroot.Foundation.HRESULT> get_ToggleState_5; 185winmdroot.Foundation.HRESULT Toggle(); 188 unsafe winmdroot.Foundation.HRESULT get_ToggleState(winmdroot.UI.Accessibility.ToggleState* pRetVal);
Windows.Win32.IUIAutomation.g.cs (338)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomation*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomation*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT CompareElements(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* el1, winmdroot.UI.Accessibility.IUIAutomationElement* el2, winmdroot.Foundation.BOOL* areSame) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 93 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomation*)Unsafe.AsPointer(ref this), el1, el2, &__retVal).ThrowOnFailure(); 100 private static winmdroot.Foundation.HRESULT CompareRuntimeIds(IUIAutomation* pThis, winmdroot.System.Com.SAFEARRAY* runtimeId1, winmdroot.System.Com.SAFEARRAY* runtimeId2, winmdroot.Foundation.BOOL* areSame) 104 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 113 return (winmdroot.Foundation.HRESULT)ex.HResult; 135 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomation*)Unsafe.AsPointer(ref this), runtimeId1, runtimeId2, &__retVal).ThrowOnFailure(); 142 private static winmdroot.Foundation.HRESULT GetRootElement(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement** root) 146 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 155 return (winmdroot.Foundation.HRESULT)ex.HResult; 170 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IUIAutomation*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 177 private static winmdroot.Foundation.HRESULT ElementFromHandle(IUIAutomation* pThis, winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IUIAutomationElement** element) 181 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 190 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.HWND ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IUIAutomation*)Unsafe.AsPointer(ref this), hwnd, &__retVal).ThrowOnFailure(); 215 private static winmdroot.Foundation.HRESULT ElementFromPoint(IUIAutomation* pThis, global::System.Drawing.Point pt, winmdroot.UI.Accessibility.IUIAutomationElement** element) 219 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 228 return (winmdroot.Foundation.HRESULT)ex.HResult; 244 ((delegate *unmanaged [Stdcall]<IUIAutomation*,global::System.Drawing.Point ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IUIAutomation*)Unsafe.AsPointer(ref this), pt, &__retVal).ThrowOnFailure(); 251 private static winmdroot.Foundation.HRESULT GetFocusedElement(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement** element) 255 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 264 return (winmdroot.Foundation.HRESULT)ex.HResult; 277 public unsafe winmdroot.Foundation.HRESULT GetFocusedElement(winmdroot.UI.Accessibility.IUIAutomationElement** element) 279 return ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IUIAutomation*)Unsafe.AsPointer(ref this), element); 285 private static winmdroot.Foundation.HRESULT GetRootElementBuildCache(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** root) 289 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 298 return (winmdroot.Foundation.HRESULT)ex.HResult; 317 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IUIAutomation*)Unsafe.AsPointer(ref this), cacheRequest, &__retVal).ThrowOnFailure(); 324 private static winmdroot.Foundation.HRESULT ElementFromHandleBuildCache(IUIAutomation* pThis, winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element) 328 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 337 return (winmdroot.Foundation.HRESULT)ex.HResult; 359 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.HWND ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IUIAutomation*)Unsafe.AsPointer(ref this), hwnd, cacheRequest, &__retVal).ThrowOnFailure(); 366 private static winmdroot.Foundation.HRESULT ElementFromPointBuildCache(IUIAutomation* pThis, global::System.Drawing.Point pt, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element) 370 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 379 return (winmdroot.Foundation.HRESULT)ex.HResult; 401 ((delegate *unmanaged [Stdcall]<IUIAutomation*,global::System.Drawing.Point ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IUIAutomation*)Unsafe.AsPointer(ref this), pt, cacheRequest, &__retVal).ThrowOnFailure(); 408 private static winmdroot.Foundation.HRESULT GetFocusedElementBuildCache(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element) 412 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 421 return (winmdroot.Foundation.HRESULT)ex.HResult; 439 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IUIAutomation*)Unsafe.AsPointer(ref this), cacheRequest, &__retVal).ThrowOnFailure(); 446 private static winmdroot.Foundation.HRESULT CreateTreeWalker(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition* pCondition, winmdroot.UI.Accessibility.IUIAutomationTreeWalker** walker) 450 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 459 return (winmdroot.Foundation.HRESULT)ex.HResult; 477 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IUIAutomation*)Unsafe.AsPointer(ref this), pCondition, &__retVal).ThrowOnFailure(); 484 private static winmdroot.Foundation.HRESULT get_ControlViewWalker(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationTreeWalker** walker) 488 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 494 return winmdroot.Foundation.HRESULT.S_OK; 498 return (winmdroot.Foundation.HRESULT)ex.HResult; 511 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 519 private static winmdroot.Foundation.HRESULT get_ContentViewWalker(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationTreeWalker** walker) 523 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 529 return winmdroot.Foundation.HRESULT.S_OK; 533 return (winmdroot.Foundation.HRESULT)ex.HResult; 546 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 554 private static winmdroot.Foundation.HRESULT get_RawViewWalker(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationTreeWalker** walker) 558 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 564 return winmdroot.Foundation.HRESULT.S_OK; 568 return (winmdroot.Foundation.HRESULT)ex.HResult; 581 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 589 private static winmdroot.Foundation.HRESULT get_RawViewCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** condition) 593 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 599 return winmdroot.Foundation.HRESULT.S_OK; 603 return (winmdroot.Foundation.HRESULT)ex.HResult; 614 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 622 private static winmdroot.Foundation.HRESULT get_ControlViewCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** condition) 626 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 632 return winmdroot.Foundation.HRESULT.S_OK; 636 return (winmdroot.Foundation.HRESULT)ex.HResult; 649 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 657 private static winmdroot.Foundation.HRESULT get_ContentViewCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** condition) 661 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 667 return winmdroot.Foundation.HRESULT.S_OK; 671 return (winmdroot.Foundation.HRESULT)ex.HResult; 684 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 692 private static winmdroot.Foundation.HRESULT CreateCacheRequest(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest** cacheRequest) 696 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 705 return (winmdroot.Foundation.HRESULT)ex.HResult; 717 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest** ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IUIAutomation*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 724 private static winmdroot.Foundation.HRESULT CreateTrueCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 728 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 737 return (winmdroot.Foundation.HRESULT)ex.HResult; 751 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IUIAutomation*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 758 private static winmdroot.Foundation.HRESULT CreateFalseCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 762 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 771 return (winmdroot.Foundation.HRESULT)ex.HResult; 783 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IUIAutomation*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 790 private static winmdroot.Foundation.HRESULT CreatePropertyCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT value, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 794 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 803 return (winmdroot.Foundation.HRESULT)ex.HResult; 825 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IUIAutomation*)Unsafe.AsPointer(ref this), propertyId, value, &__retVal).ThrowOnFailure(); 832 private static winmdroot.Foundation.HRESULT CreatePropertyConditionEx(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT value, winmdroot.UI.Accessibility.PropertyConditionFlags flags, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 836 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 845 return (winmdroot.Foundation.HRESULT)ex.HResult; 867 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.UI.Accessibility.PropertyConditionFlags ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IUIAutomation*)Unsafe.AsPointer(ref this), propertyId, value, flags, &__retVal).ThrowOnFailure(); 874 private static winmdroot.Foundation.HRESULT CreateAndCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition* condition1, winmdroot.UI.Accessibility.IUIAutomationCondition* condition2, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 878 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 887 return (winmdroot.Foundation.HRESULT)ex.HResult; 911 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IUIAutomation*)Unsafe.AsPointer(ref this), condition1, condition2, &__retVal).ThrowOnFailure(); 918 private static winmdroot.Foundation.HRESULT CreateAndConditionFromArray(IUIAutomation* pThis, winmdroot.System.Com.SAFEARRAY* conditions, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 922 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 931 return (winmdroot.Foundation.HRESULT)ex.HResult; 947 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IUIAutomation*)Unsafe.AsPointer(ref this), conditions, &__retVal).ThrowOnFailure(); 954 private static winmdroot.Foundation.HRESULT CreateAndConditionFromNativeArray(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** conditions, int conditionCount, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 958 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 967 return (winmdroot.Foundation.HRESULT)ex.HResult; 987 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,int ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IUIAutomation*)Unsafe.AsPointer(ref this), conditions, conditionCount, &__retVal).ThrowOnFailure(); 994 private static winmdroot.Foundation.HRESULT CreateOrCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition* condition1, winmdroot.UI.Accessibility.IUIAutomationCondition* condition2, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 998 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1007 return (winmdroot.Foundation.HRESULT)ex.HResult; 1027 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IUIAutomation*)Unsafe.AsPointer(ref this), condition1, condition2, &__retVal).ThrowOnFailure(); 1034 private static winmdroot.Foundation.HRESULT CreateOrConditionFromArray(IUIAutomation* pThis, winmdroot.System.Com.SAFEARRAY* conditions, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 1038 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1047 return (winmdroot.Foundation.HRESULT)ex.HResult; 1063 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IUIAutomation*)Unsafe.AsPointer(ref this), conditions, &__retVal).ThrowOnFailure(); 1070 private static winmdroot.Foundation.HRESULT CreateOrConditionFromNativeArray(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** conditions, int conditionCount, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 1074 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1083 return (winmdroot.Foundation.HRESULT)ex.HResult; 1103 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,int ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IUIAutomation*)Unsafe.AsPointer(ref this), conditions, conditionCount, &__retVal).ThrowOnFailure(); 1110 private static winmdroot.Foundation.HRESULT CreateNotCondition(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition) 1114 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1123 return (winmdroot.Foundation.HRESULT)ex.HResult; 1139 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IUIAutomation*)Unsafe.AsPointer(ref this), condition, &__retVal).ThrowOnFailure(); 1146 private static winmdroot.Foundation.HRESULT AddAutomationEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationEventHandler* handler) 1150 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1159 return (winmdroot.Foundation.HRESULT)ex.HResult; 1186 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationEventHandler* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IUIAutomation*)Unsafe.AsPointer(ref this), eventId, element, scope, cacheRequest, handler).ThrowOnFailure(); 1192 private static winmdroot.Foundation.HRESULT RemoveAutomationEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationEventHandler* handler) 1196 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1205 return (winmdroot.Foundation.HRESULT)ex.HResult; 1231 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationEventHandler* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IUIAutomation*)Unsafe.AsPointer(ref this), eventId, element, handler).ThrowOnFailure(); 1246 private static winmdroot.Foundation.HRESULT AddPropertyChangedEventHandlerNativeArray(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler, winmdroot.UI.Accessibility.UIA_PROPERTY_ID* propertyArray, int propertyCount) 1250 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1259 return (winmdroot.Foundation.HRESULT)ex.HResult; 1294 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID* ,int ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IUIAutomation*)Unsafe.AsPointer(ref this), element, scope, cacheRequest, handler, propertyArray, propertyCount).ThrowOnFailure(); 1300 private static winmdroot.Foundation.HRESULT AddPropertyChangedEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler, winmdroot.System.Com.SAFEARRAY* propertyArray) 1304 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1313 return (winmdroot.Foundation.HRESULT)ex.HResult; 1344 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IUIAutomation*)Unsafe.AsPointer(ref this), element, scope, cacheRequest, handler, propertyArray).ThrowOnFailure(); 1350 private static winmdroot.Foundation.HRESULT RemovePropertyChangedEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler) 1354 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1363 return (winmdroot.Foundation.HRESULT)ex.HResult; 1385 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IUIAutomation*)Unsafe.AsPointer(ref this), element, handler).ThrowOnFailure(); 1391 private static winmdroot.Foundation.HRESULT AddStructureChangedEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationStructureChangedEventHandler* handler) 1395 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1404 return (winmdroot.Foundation.HRESULT)ex.HResult; 1427 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationStructureChangedEventHandler* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IUIAutomation*)Unsafe.AsPointer(ref this), element, scope, cacheRequest, handler).ThrowOnFailure(); 1433 private static winmdroot.Foundation.HRESULT RemoveStructureChangedEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationStructureChangedEventHandler* handler) 1437 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1446 return (winmdroot.Foundation.HRESULT)ex.HResult; 1468 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationStructureChangedEventHandler* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IUIAutomation*)Unsafe.AsPointer(ref this), element, handler).ThrowOnFailure(); 1474 private static winmdroot.Foundation.HRESULT AddFocusChangedEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* handler) 1478 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1487 return (winmdroot.Foundation.HRESULT)ex.HResult; 1509 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IUIAutomation*)Unsafe.AsPointer(ref this), cacheRequest, handler).ThrowOnFailure(); 1515 private static winmdroot.Foundation.HRESULT RemoveFocusChangedEventHandler(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* handler) 1519 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1528 return (winmdroot.Foundation.HRESULT)ex.HResult; 1546 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IUIAutomation*)Unsafe.AsPointer(ref this), handler).ThrowOnFailure(); 1552 private static winmdroot.Foundation.HRESULT RemoveAllEventHandlers(IUIAutomation* pThis) 1556 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1565 return (winmdroot.Foundation.HRESULT)ex.HResult; 1579 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IUIAutomation*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 1595 private static winmdroot.Foundation.HRESULT IntNativeArrayToSafeArray(IUIAutomation* pThis, int* array, int arrayCount, winmdroot.System.Com.SAFEARRAY** safeArray) 1599 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1608 return (winmdroot.Foundation.HRESULT)ex.HResult; 1630 ((delegate *unmanaged [Stdcall]<IUIAutomation*,int* ,int ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IUIAutomation*)Unsafe.AsPointer(ref this), array, arrayCount, &__retVal).ThrowOnFailure(); 1637 private static winmdroot.Foundation.HRESULT IntSafeArrayToNativeArray(IUIAutomation* pThis, winmdroot.System.Com.SAFEARRAY* intArray, int** array, int* arrayCount) 1641 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1650 return (winmdroot.Foundation.HRESULT)ex.HResult; 1672 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,int** ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IUIAutomation*)Unsafe.AsPointer(ref this), intArray, array, &__retVal).ThrowOnFailure(); 1679 private static winmdroot.Foundation.HRESULT RectToVariant(IUIAutomation* pThis, winmdroot.Foundation.RECT rc, winmdroot.System.Variant.VARIANT* var) 1683 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1692 return (winmdroot.Foundation.HRESULT)ex.HResult; 1708 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.RECT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IUIAutomation*)Unsafe.AsPointer(ref this), rc, &__retVal).ThrowOnFailure(); 1715 private static winmdroot.Foundation.HRESULT VariantToRect(IUIAutomation* pThis, winmdroot.System.Variant.VARIANT var, winmdroot.Foundation.RECT* rc) 1719 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1728 return (winmdroot.Foundation.HRESULT)ex.HResult; 1746 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IUIAutomation*)Unsafe.AsPointer(ref this), var, &__retVal).ThrowOnFailure(); 1753 private static winmdroot.Foundation.HRESULT SafeArrayToRectNativeArray(IUIAutomation* pThis, winmdroot.System.Com.SAFEARRAY* rects, winmdroot.Foundation.RECT** rectArray, int* rectArrayCount) 1757 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1766 return (winmdroot.Foundation.HRESULT)ex.HResult; 1788 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.RECT** ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IUIAutomation*)Unsafe.AsPointer(ref this), rects, rectArray, &__retVal).ThrowOnFailure(); 1795 private static winmdroot.Foundation.HRESULT CreateProxyFactoryEntry(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationProxyFactory* factory, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** factoryEntry) 1799 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1808 return (winmdroot.Foundation.HRESULT)ex.HResult; 1824 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationProxyFactory* ,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IUIAutomation*)Unsafe.AsPointer(ref this), factory, &__retVal).ThrowOnFailure(); 1831 private static winmdroot.Foundation.HRESULT get_ProxyFactoryMapping(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryMapping** factoryMapping) 1835 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1841 return winmdroot.Foundation.HRESULT.S_OK; 1845 return (winmdroot.Foundation.HRESULT)ex.HResult; 1858 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryMapping** ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1866 private static winmdroot.Foundation.HRESULT GetPropertyProgrammaticName(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID property, winmdroot.Foundation.BSTR* name) 1870 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1879 return (winmdroot.Foundation.HRESULT)ex.HResult; 1898 ((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(); 1905 private static winmdroot.Foundation.HRESULT GetPatternProgrammaticName(IUIAutomation* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID pattern, winmdroot.Foundation.BSTR* name) 1909 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1918 return (winmdroot.Foundation.HRESULT)ex.HResult; 1937 ((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(); 1956 private static winmdroot.Foundation.HRESULT PollForPotentialSupportedPatterns(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* pElement, winmdroot.System.Com.SAFEARRAY** patternIds, winmdroot.System.Com.SAFEARRAY** patternNames) 1960 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1969 return (winmdroot.Foundation.HRESULT)ex.HResult; 1995 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IUIAutomation*)Unsafe.AsPointer(ref this), pElement, patternIds, patternNames).ThrowOnFailure(); 2013 private static winmdroot.Foundation.HRESULT PollForPotentialSupportedProperties(IUIAutomation* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* pElement, winmdroot.System.Com.SAFEARRAY** propertyIds, winmdroot.System.Com.SAFEARRAY** propertyNames) 2017 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2026 return (winmdroot.Foundation.HRESULT)ex.HResult; 2052 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IUIAutomation*)Unsafe.AsPointer(ref this), pElement, propertyIds, propertyNames).ThrowOnFailure(); 2058 private static winmdroot.Foundation.HRESULT CheckNotSupported(IUIAutomation* pThis, winmdroot.System.Variant.VARIANT value, winmdroot.Foundation.BOOL* isNotSupported) 2062 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2071 return (winmdroot.Foundation.HRESULT)ex.HResult; 2087 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IUIAutomation*)Unsafe.AsPointer(ref this), value, &__retVal).ThrowOnFailure(); 2094 private static winmdroot.Foundation.HRESULT get_ReservedNotSupportedValue(IUIAutomation* pThis, winmdroot.System.Com.IUnknown** notSupportedValue) 2098 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2104 return winmdroot.Foundation.HRESULT.S_OK; 2108 return (winmdroot.Foundation.HRESULT)ex.HResult; 2119 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2127 private static winmdroot.Foundation.HRESULT get_ReservedMixedAttributeValue(IUIAutomation* pThis, winmdroot.System.Com.IUnknown** mixedAttributeValue) 2131 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2137 return winmdroot.Foundation.HRESULT.S_OK; 2141 return (winmdroot.Foundation.HRESULT)ex.HResult; 2152 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IUIAutomation*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2160 private static winmdroot.Foundation.HRESULT ElementFromIAccessible(IUIAutomation* pThis, winmdroot.UI.Accessibility.IAccessible* accessible, int childId, winmdroot.UI.Accessibility.IUIAutomationElement** element) 2164 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2173 return (winmdroot.Foundation.HRESULT)ex.HResult; 2196 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IAccessible* ,int ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IUIAutomation*)Unsafe.AsPointer(ref this), accessible, childId, &__retVal).ThrowOnFailure(); 2203 private static winmdroot.Foundation.HRESULT ElementFromIAccessibleBuildCache(IUIAutomation* pThis, winmdroot.UI.Accessibility.IAccessible* accessible, int childId, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element) 2207 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2216 return (winmdroot.Foundation.HRESULT)ex.HResult; 2243 ((delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IAccessible* ,int ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IUIAutomation*)Unsafe.AsPointer(ref this), accessible, childId, cacheRequest, &__retVal).ThrowOnFailure(); 2247 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2251 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 2268 internal delegate *unmanaged [Stdcall]<IUIAutomation*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2274 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> CompareElements_4; 2276 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> CompareRuntimeIds_5; 2278 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetRootElement_6; 2280 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.HWND ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromHandle_7; 2282 internal delegate *unmanaged [Stdcall]<IUIAutomation*,global::System.Drawing.Point ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromPoint_8; 2284 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetFocusedElement_9; 2286 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetRootElementBuildCache_10; 2288 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.HWND ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromHandleBuildCache_11; 2290 internal delegate *unmanaged [Stdcall]<IUIAutomation*,global::System.Drawing.Point ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromPointBuildCache_12; 2292 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetFocusedElementBuildCache_13; 2294 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT> CreateTreeWalker_14; 2296 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT> get_ControlViewWalker_15; 2298 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT> get_ContentViewWalker_16; 2300 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationTreeWalker** ,winmdroot.Foundation.HRESULT> get_RawViewWalker_17; 2302 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> get_RawViewCondition_18; 2304 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> get_ControlViewCondition_19; 2306 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> get_ContentViewCondition_20; 2308 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest** ,winmdroot.Foundation.HRESULT> CreateCacheRequest_21; 2310 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateTrueCondition_22; 2312 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateFalseCondition_23; 2314 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreatePropertyCondition_24; 2316 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.UI.Accessibility.PropertyConditionFlags ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreatePropertyConditionEx_25; 2318 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateAndCondition_26; 2320 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateAndConditionFromArray_27; 2322 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,int ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateAndConditionFromNativeArray_28; 2324 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateOrCondition_29; 2326 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateOrConditionFromArray_30; 2328 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,int ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateOrConditionFromNativeArray_31; 2330 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> CreateNotCondition_32; 2332 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationEventHandler* ,winmdroot.Foundation.HRESULT> AddAutomationEventHandler_33; 2334 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationEventHandler* ,winmdroot.Foundation.HRESULT> RemoveAutomationEventHandler_34; 2336 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID* ,int ,winmdroot.Foundation.HRESULT> AddPropertyChangedEventHandlerNativeArray_35; 2338 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> AddPropertyChangedEventHandler_36; 2340 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* ,winmdroot.Foundation.HRESULT> RemovePropertyChangedEventHandler_37; 2342 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationStructureChangedEventHandler* ,winmdroot.Foundation.HRESULT> AddStructureChangedEventHandler_38; 2344 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationStructureChangedEventHandler* ,winmdroot.Foundation.HRESULT> RemoveStructureChangedEventHandler_39; 2346 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* ,winmdroot.Foundation.HRESULT> AddFocusChangedEventHandler_40; 2348 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* ,winmdroot.Foundation.HRESULT> RemoveFocusChangedEventHandler_41; 2350 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.HRESULT> RemoveAllEventHandlers_42; 2352 internal delegate *unmanaged [Stdcall]<IUIAutomation*,int* ,int ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> IntNativeArrayToSafeArray_43; 2354 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,int** ,int* ,winmdroot.Foundation.HRESULT> IntSafeArrayToNativeArray_44; 2356 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.Foundation.RECT ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> RectToVariant_45; 2358 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> VariantToRect_46; 2360 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.RECT** ,int* ,winmdroot.Foundation.HRESULT> SafeArrayToRectNativeArray_47; 2362 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationProxyFactory* ,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** ,winmdroot.Foundation.HRESULT> CreateProxyFactoryEntry_48; 2364 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryMapping** ,winmdroot.Foundation.HRESULT> get_ProxyFactoryMapping_49; 2366 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetPropertyProgrammaticName_50; 2368 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> GetPatternProgrammaticName_51; 2370 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> PollForPotentialSupportedPatterns_52; 2372 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> PollForPotentialSupportedProperties_53; 2374 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> CheckNotSupported_54; 2376 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get_ReservedNotSupportedValue_55; 2378 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> get_ReservedMixedAttributeValue_56; 2380 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IAccessible* ,int ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromIAccessible_57; 2382 internal delegate *unmanaged [Stdcall]<IUIAutomation*,winmdroot.UI.Accessibility.IAccessible* ,int ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> ElementFromIAccessibleBuildCache_58; 2463 unsafe winmdroot.Foundation.HRESULT CompareElements(winmdroot.UI.Accessibility.IUIAutomationElement* el1, winmdroot.UI.Accessibility.IUIAutomationElement* el2, winmdroot.Foundation.BOOL* areSame); 2466 unsafe winmdroot.Foundation.HRESULT CompareRuntimeIds(winmdroot.System.Com.SAFEARRAY* runtimeId1, winmdroot.System.Com.SAFEARRAY* runtimeId2, winmdroot.Foundation.BOOL* areSame); 2469 unsafe winmdroot.Foundation.HRESULT GetRootElement(winmdroot.UI.Accessibility.IUIAutomationElement** root); 2472 unsafe winmdroot.Foundation.HRESULT ElementFromHandle(winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2475 unsafe winmdroot.Foundation.HRESULT ElementFromPoint(global::System.Drawing.Point pt, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2478 unsafe winmdroot.Foundation.HRESULT GetFocusedElement(winmdroot.UI.Accessibility.IUIAutomationElement** element); 2481 unsafe winmdroot.Foundation.HRESULT GetRootElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** root); 2484 unsafe winmdroot.Foundation.HRESULT ElementFromHandleBuildCache(winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2487 unsafe winmdroot.Foundation.HRESULT ElementFromPointBuildCache(global::System.Drawing.Point pt, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2490 unsafe winmdroot.Foundation.HRESULT GetFocusedElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2493 unsafe winmdroot.Foundation.HRESULT CreateTreeWalker(winmdroot.UI.Accessibility.IUIAutomationCondition* pCondition, winmdroot.UI.Accessibility.IUIAutomationTreeWalker** walker); 2526 unsafe winmdroot.Foundation.HRESULT CreateCacheRequest(winmdroot.UI.Accessibility.IUIAutomationCacheRequest** cacheRequest); 2529 unsafe winmdroot.Foundation.HRESULT CreateTrueCondition(winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2532 unsafe winmdroot.Foundation.HRESULT CreateFalseCondition(winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2535 unsafe winmdroot.Foundation.HRESULT CreatePropertyCondition(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT value, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2538 unsafe winmdroot.Foundation.HRESULT CreatePropertyConditionEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT value, winmdroot.UI.Accessibility.PropertyConditionFlags flags, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2541 unsafe winmdroot.Foundation.HRESULT CreateAndCondition(winmdroot.UI.Accessibility.IUIAutomationCondition* condition1, winmdroot.UI.Accessibility.IUIAutomationCondition* condition2, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2544 unsafe winmdroot.Foundation.HRESULT CreateAndConditionFromArray(winmdroot.System.Com.SAFEARRAY* conditions, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2547 unsafe winmdroot.Foundation.HRESULT CreateAndConditionFromNativeArray(winmdroot.UI.Accessibility.IUIAutomationCondition** conditions, int conditionCount, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2550 unsafe winmdroot.Foundation.HRESULT CreateOrCondition(winmdroot.UI.Accessibility.IUIAutomationCondition* condition1, winmdroot.UI.Accessibility.IUIAutomationCondition* condition2, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2553 unsafe winmdroot.Foundation.HRESULT CreateOrConditionFromArray(winmdroot.System.Com.SAFEARRAY* conditions, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2556 unsafe winmdroot.Foundation.HRESULT CreateOrConditionFromNativeArray(winmdroot.UI.Accessibility.IUIAutomationCondition** conditions, int conditionCount, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2559 unsafe winmdroot.Foundation.HRESULT CreateNotCondition(winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationCondition** newCondition); 2562 unsafe winmdroot.Foundation.HRESULT AddAutomationEventHandler(winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationEventHandler* handler); 2565 unsafe winmdroot.Foundation.HRESULT RemoveAutomationEventHandler(winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationEventHandler* handler); 2568 unsafe winmdroot.Foundation.HRESULT AddPropertyChangedEventHandlerNativeArray(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler, winmdroot.UI.Accessibility.UIA_PROPERTY_ID* propertyArray, int propertyCount); 2571 unsafe winmdroot.Foundation.HRESULT AddPropertyChangedEventHandler(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler, winmdroot.System.Com.SAFEARRAY* propertyArray); 2574 unsafe winmdroot.Foundation.HRESULT RemovePropertyChangedEventHandler(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler); 2577 unsafe winmdroot.Foundation.HRESULT AddStructureChangedEventHandler(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationStructureChangedEventHandler* handler); 2580 unsafe winmdroot.Foundation.HRESULT RemoveStructureChangedEventHandler(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationStructureChangedEventHandler* handler); 2583 unsafe winmdroot.Foundation.HRESULT AddFocusChangedEventHandler(winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* handler); 2586 unsafe winmdroot.Foundation.HRESULT RemoveFocusChangedEventHandler(winmdroot.UI.Accessibility.IUIAutomationFocusChangedEventHandler* handler); 2589winmdroot.Foundation.HRESULT RemoveAllEventHandlers(); 2592 unsafe winmdroot.Foundation.HRESULT IntNativeArrayToSafeArray(int* array, int arrayCount, winmdroot.System.Com.SAFEARRAY** safeArray); 2595 unsafe winmdroot.Foundation.HRESULT IntSafeArrayToNativeArray(winmdroot.System.Com.SAFEARRAY* intArray, int** array, int* arrayCount); 2598 unsafe winmdroot.Foundation.HRESULT RectToVariant(winmdroot.Foundation.RECT rc, winmdroot.System.Variant.VARIANT* var); 2601 unsafe winmdroot.Foundation.HRESULT VariantToRect(winmdroot.System.Variant.VARIANT var, winmdroot.Foundation.RECT* rc); 2604 unsafe winmdroot.Foundation.HRESULT SafeArrayToRectNativeArray(winmdroot.System.Com.SAFEARRAY* rects, winmdroot.Foundation.RECT** rectArray, int* rectArrayCount); 2607 unsafe winmdroot.Foundation.HRESULT CreateProxyFactoryEntry(winmdroot.UI.Accessibility.IUIAutomationProxyFactory* factory, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** factoryEntry); 2615 unsafe winmdroot.Foundation.HRESULT GetPropertyProgrammaticName(winmdroot.UI.Accessibility.UIA_PROPERTY_ID property, winmdroot.Foundation.BSTR* name); 2618 unsafe winmdroot.Foundation.HRESULT GetPatternProgrammaticName(winmdroot.UI.Accessibility.UIA_PATTERN_ID pattern, winmdroot.Foundation.BSTR* name); 2621 unsafe winmdroot.Foundation.HRESULT PollForPotentialSupportedPatterns(winmdroot.UI.Accessibility.IUIAutomationElement* pElement, winmdroot.System.Com.SAFEARRAY** patternIds, winmdroot.System.Com.SAFEARRAY** patternNames); 2624 unsafe winmdroot.Foundation.HRESULT PollForPotentialSupportedProperties(winmdroot.UI.Accessibility.IUIAutomationElement* pElement, winmdroot.System.Com.SAFEARRAY** propertyIds, winmdroot.System.Com.SAFEARRAY** propertyNames); 2627 unsafe winmdroot.Foundation.HRESULT CheckNotSupported(winmdroot.System.Variant.VARIANT value, winmdroot.Foundation.BOOL* isNotSupported); 2640 unsafe winmdroot.Foundation.HRESULT ElementFromIAccessible(winmdroot.UI.Accessibility.IAccessible* accessible, int childId, winmdroot.UI.Accessibility.IUIAutomationElement** element); 2643 unsafe winmdroot.Foundation.HRESULT ElementFromIAccessibleBuildCache(winmdroot.UI.Accessibility.IAccessible* accessible, int childId, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** element);
Windows.Win32.IUIAutomationCacheRequest.g.cs (61)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT AddProperty(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 88 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), propertyId).ThrowOnFailure(); 94 private static winmdroot.Foundation.HRESULT AddPattern(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId) 98 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 122 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), patternId).ThrowOnFailure(); 128 private static winmdroot.Foundation.HRESULT Clone(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest** clonedRequest) 132 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 141 return (winmdroot.Foundation.HRESULT)ex.HResult; 155 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 162 private static winmdroot.Foundation.HRESULT get_TreeScope(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.TreeScope* scope) 166 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 172 return winmdroot.Foundation.HRESULT.S_OK; 176 return (winmdroot.Foundation.HRESULT)ex.HResult; 187 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.TreeScope* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 192 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 199 private static winmdroot.Foundation.HRESULT put_TreeScope(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.TreeScope scope) 203 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 209 return winmdroot.Foundation.HRESULT.S_OK; 213 return (winmdroot.Foundation.HRESULT)ex.HResult; 220 private static winmdroot.Foundation.HRESULT get_TreeFilter(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** filter) 224 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 230 return winmdroot.Foundation.HRESULT.S_OK; 234 return (winmdroot.Foundation.HRESULT)ex.HResult; 247 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 252 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 259 private static winmdroot.Foundation.HRESULT put_TreeFilter(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition* filter) 263 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 269 return winmdroot.Foundation.HRESULT.S_OK; 273 return (winmdroot.Foundation.HRESULT)ex.HResult; 280 private static winmdroot.Foundation.HRESULT get_AutomationElementMode(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.AutomationElementMode* mode) 284 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 290 return winmdroot.Foundation.HRESULT.S_OK; 294 return (winmdroot.Foundation.HRESULT)ex.HResult; 308 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.AutomationElementMode* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 313 ((delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.AutomationElementMode ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IUIAutomationCacheRequest*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 320 private static winmdroot.Foundation.HRESULT put_AutomationElementMode(IUIAutomationCacheRequest* pThis, winmdroot.UI.Accessibility.AutomationElementMode mode) 324 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 330 return winmdroot.Foundation.HRESULT.S_OK; 334 return (winmdroot.Foundation.HRESULT)ex.HResult; 338 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 342 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 359 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 365 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.HRESULT> AddProperty_4; 367 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.Foundation.HRESULT> AddPattern_5; 369 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest** ,winmdroot.Foundation.HRESULT> Clone_6; 371 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.TreeScope* ,winmdroot.Foundation.HRESULT> get_TreeScope_7; 373 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.Foundation.HRESULT> put_TreeScope_8; 375 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> get_TreeFilter_9; 377 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.Foundation.HRESULT> put_TreeFilter_10; 379 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.AutomationElementMode* ,winmdroot.Foundation.HRESULT> get_AutomationElementMode_11; 381 internal delegate *unmanaged [Stdcall]<IUIAutomationCacheRequest*,winmdroot.UI.Accessibility.AutomationElementMode ,winmdroot.Foundation.HRESULT> put_AutomationElementMode_12; 416winmdroot.Foundation.HRESULT AddProperty(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId); 419winmdroot.Foundation.HRESULT AddPattern(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId); 422 unsafe winmdroot.Foundation.HRESULT Clone(winmdroot.UI.Accessibility.IUIAutomationCacheRequest** clonedRequest);
Windows.Win32.IUIAutomationCondition.g.cs (7)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationCondition*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationCondition*)Unsafe.AsPointer(ref this), riid, ppvObject); 55 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 59 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 76 internal delegate *unmanaged [Stdcall]<IUIAutomationCondition*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1;
Windows.Win32.IUIAutomationElement.g.cs (507)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationElement*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT SetFocus(IUIAutomationElement* pThis) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 82 public winmdroot.Foundation.HRESULT SetFocus() 84 return ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationElement*)Unsafe.AsPointer(ref this)); 90 private static winmdroot.Foundation.HRESULT GetRuntimeId(IUIAutomationElement* pThis, winmdroot.System.Com.SAFEARRAY** runtimeId) 94 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 103 return (winmdroot.Foundation.HRESULT)ex.HResult; 118 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 125 private static winmdroot.Foundation.HRESULT FindFirst(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationElement** found) 129 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 138 return (winmdroot.Foundation.HRESULT)ex.HResult; 157 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IUIAutomationElement*)Unsafe.AsPointer(ref this), scope, condition, &__retVal).ThrowOnFailure(); 164 private static winmdroot.Foundation.HRESULT FindAll(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationElementArray** found) 168 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 196 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IUIAutomationElement*)Unsafe.AsPointer(ref this), scope, condition, &__retVal).ThrowOnFailure(); 203 private static winmdroot.Foundation.HRESULT FindFirstBuildCache(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** found) 207 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 216 return (winmdroot.Foundation.HRESULT)ex.HResult; 239 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IUIAutomationElement*)Unsafe.AsPointer(ref this), scope, condition, cacheRequest, &__retVal).ThrowOnFailure(); 246 private static winmdroot.Foundation.HRESULT FindAllBuildCache(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElementArray** found) 250 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 259 return (winmdroot.Foundation.HRESULT)ex.HResult; 282 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IUIAutomationElement*)Unsafe.AsPointer(ref this), scope, condition, cacheRequest, &__retVal).ThrowOnFailure(); 289 private static winmdroot.Foundation.HRESULT BuildUpdatedCache(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** updatedElement) 293 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 302 return (winmdroot.Foundation.HRESULT)ex.HResult; 318 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IUIAutomationElement*)Unsafe.AsPointer(ref this), cacheRequest, &__retVal).ThrowOnFailure(); 325 private static winmdroot.Foundation.HRESULT GetCurrentPropertyValue(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal) 329 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 338 return (winmdroot.Foundation.HRESULT)ex.HResult; 354 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IUIAutomationElement*)Unsafe.AsPointer(ref this), propertyId, &__retVal).ThrowOnFailure(); 361 private static winmdroot.Foundation.HRESULT GetCurrentPropertyValueEx(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal) 365 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 374 return (winmdroot.Foundation.HRESULT)ex.HResult; 397 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BOOL ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IUIAutomationElement*)Unsafe.AsPointer(ref this), propertyId, ignoreDefaultValue, &__retVal).ThrowOnFailure(); 404 private static winmdroot.Foundation.HRESULT GetCachedPropertyValue(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal) 408 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 417 return (winmdroot.Foundation.HRESULT)ex.HResult; 433 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IUIAutomationElement*)Unsafe.AsPointer(ref this), propertyId, &__retVal).ThrowOnFailure(); 440 private static winmdroot.Foundation.HRESULT GetCachedPropertyValueEx(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal) 444 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 453 return (winmdroot.Foundation.HRESULT)ex.HResult; 476 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BOOL ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IUIAutomationElement*)Unsafe.AsPointer(ref this), propertyId, ignoreDefaultValue, &__retVal).ThrowOnFailure(); 493 private static winmdroot.Foundation.HRESULT GetCurrentPatternAs(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, global::System.Guid* riid, void** patternObject) 497 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 506 return (winmdroot.Foundation.HRESULT)ex.HResult; 526 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IUIAutomationElement*)Unsafe.AsPointer(ref this), patternId, riid, &__retVal).ThrowOnFailure(); 543 private static winmdroot.Foundation.HRESULT GetCachedPatternAs(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, global::System.Guid* riid, void** patternObject) 547 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 556 return (winmdroot.Foundation.HRESULT)ex.HResult; 576 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IUIAutomationElement*)Unsafe.AsPointer(ref this), patternId, riid, &__retVal).ThrowOnFailure(); 583 private static winmdroot.Foundation.HRESULT GetCurrentPattern(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** patternObject) 587 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 596 return (winmdroot.Foundation.HRESULT)ex.HResult; 615 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IUIAutomationElement*)Unsafe.AsPointer(ref this), patternId, &__retVal).ThrowOnFailure(); 622 private static winmdroot.Foundation.HRESULT GetCachedPattern(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** patternObject) 626 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 635 return (winmdroot.Foundation.HRESULT)ex.HResult; 653 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IUIAutomationElement*)Unsafe.AsPointer(ref this), patternId, &__retVal).ThrowOnFailure(); 660 private static winmdroot.Foundation.HRESULT GetCachedParent(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElement** parent) 664 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 673 return (winmdroot.Foundation.HRESULT)ex.HResult; 687 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 694 private static winmdroot.Foundation.HRESULT GetCachedChildren(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** children) 698 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 707 return (winmdroot.Foundation.HRESULT)ex.HResult; 722 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 729 private static winmdroot.Foundation.HRESULT get_CurrentProcessId(IUIAutomationElement* pThis, int* retVal) 733 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 739 return winmdroot.Foundation.HRESULT.S_OK; 743 return (winmdroot.Foundation.HRESULT)ex.HResult; 756 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 764 private static winmdroot.Foundation.HRESULT get_CurrentControlType(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* retVal) 768 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 774 return winmdroot.Foundation.HRESULT.S_OK; 778 return (winmdroot.Foundation.HRESULT)ex.HResult; 792 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 800 private static winmdroot.Foundation.HRESULT get_CurrentLocalizedControlType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 804 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 810 return winmdroot.Foundation.HRESULT.S_OK; 814 return (winmdroot.Foundation.HRESULT)ex.HResult; 827 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 835 private static winmdroot.Foundation.HRESULT get_CurrentName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 839 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 848 return (winmdroot.Foundation.HRESULT)ex.HResult; 854 public unsafe winmdroot.Foundation.HRESULT get_CurrentName(winmdroot.Foundation.BSTR* retVal) 856 return ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IUIAutomationElement*)Unsafe.AsPointer(ref this), retVal); 862 private static winmdroot.Foundation.HRESULT get_CurrentAcceleratorKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 866 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 872 return winmdroot.Foundation.HRESULT.S_OK; 876 return (winmdroot.Foundation.HRESULT)ex.HResult; 889 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 897 private static winmdroot.Foundation.HRESULT get_CurrentAccessKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 901 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 907 return winmdroot.Foundation.HRESULT.S_OK; 911 return (winmdroot.Foundation.HRESULT)ex.HResult; 922 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 930 private static winmdroot.Foundation.HRESULT get_CurrentHasKeyboardFocus(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 934 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 940 return winmdroot.Foundation.HRESULT.S_OK; 944 return (winmdroot.Foundation.HRESULT)ex.HResult; 957 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 965 private static winmdroot.Foundation.HRESULT get_CurrentIsKeyboardFocusable(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 969 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 975 return winmdroot.Foundation.HRESULT.S_OK; 979 return (winmdroot.Foundation.HRESULT)ex.HResult; 992 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1000 private static winmdroot.Foundation.HRESULT get_CurrentIsEnabled(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1004 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1010 return winmdroot.Foundation.HRESULT.S_OK; 1014 return (winmdroot.Foundation.HRESULT)ex.HResult; 1027 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1035 private static winmdroot.Foundation.HRESULT get_CurrentAutomationId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1039 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1045 return winmdroot.Foundation.HRESULT.S_OK; 1049 return (winmdroot.Foundation.HRESULT)ex.HResult; 1060 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1068 private static winmdroot.Foundation.HRESULT get_CurrentClassName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1072 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1078 return winmdroot.Foundation.HRESULT.S_OK; 1082 return (winmdroot.Foundation.HRESULT)ex.HResult; 1093 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1101 private static winmdroot.Foundation.HRESULT get_CurrentHelpText(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1105 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1111 return winmdroot.Foundation.HRESULT.S_OK; 1115 return (winmdroot.Foundation.HRESULT)ex.HResult; 1129 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1137 private static winmdroot.Foundation.HRESULT get_CurrentCulture(IUIAutomationElement* pThis, int* retVal) 1141 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1147 return winmdroot.Foundation.HRESULT.S_OK; 1151 return (winmdroot.Foundation.HRESULT)ex.HResult; 1164 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1172 private static winmdroot.Foundation.HRESULT get_CurrentIsControlElement(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1176 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1182 return winmdroot.Foundation.HRESULT.S_OK; 1186 return (winmdroot.Foundation.HRESULT)ex.HResult; 1199 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1207 private static winmdroot.Foundation.HRESULT get_CurrentIsContentElement(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1211 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1217 return winmdroot.Foundation.HRESULT.S_OK; 1221 return (winmdroot.Foundation.HRESULT)ex.HResult; 1232 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1240 private static winmdroot.Foundation.HRESULT get_CurrentIsPassword(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1244 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1250 return winmdroot.Foundation.HRESULT.S_OK; 1254 return (winmdroot.Foundation.HRESULT)ex.HResult; 1265 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1273 private static winmdroot.Foundation.HRESULT get_CurrentNativeWindowHandle(IUIAutomationElement* pThis, winmdroot.Foundation.HWND* retVal) 1277 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1283 return winmdroot.Foundation.HRESULT.S_OK; 1287 return (winmdroot.Foundation.HRESULT)ex.HResult; 1300 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1308 private static winmdroot.Foundation.HRESULT get_CurrentItemType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1312 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1318 return winmdroot.Foundation.HRESULT.S_OK; 1322 return (winmdroot.Foundation.HRESULT)ex.HResult; 1333 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1341 private static winmdroot.Foundation.HRESULT get_CurrentIsOffscreen(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1345 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1351 return winmdroot.Foundation.HRESULT.S_OK; 1355 return (winmdroot.Foundation.HRESULT)ex.HResult; 1368 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1376 private static winmdroot.Foundation.HRESULT get_CurrentOrientation(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.OrientationType* retVal) 1380 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1386 return winmdroot.Foundation.HRESULT.S_OK; 1390 return (winmdroot.Foundation.HRESULT)ex.HResult; 1401 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.OrientationType* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1409 private static winmdroot.Foundation.HRESULT get_CurrentFrameworkId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1413 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1419 return winmdroot.Foundation.HRESULT.S_OK; 1423 return (winmdroot.Foundation.HRESULT)ex.HResult; 1436 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1444 private static winmdroot.Foundation.HRESULT get_CurrentIsRequiredForForm(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1448 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1454 return winmdroot.Foundation.HRESULT.S_OK; 1458 return (winmdroot.Foundation.HRESULT)ex.HResult; 1471 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1479 private static winmdroot.Foundation.HRESULT get_CurrentItemStatus(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1483 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1489 return winmdroot.Foundation.HRESULT.S_OK; 1493 return (winmdroot.Foundation.HRESULT)ex.HResult; 1504 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1510 internal unsafe winmdroot.Foundation.HRESULT get_CurrentBoundingRectangle(out winmdroot.Foundation.RECT retVal) 1514 winmdroot.Foundation.HRESULT __result = this.get_CurrentBoundingRectangle(retValLocal); 1522 private static winmdroot.Foundation.HRESULT get_CurrentBoundingRectangle(IUIAutomationElement* pThis, winmdroot.Foundation.RECT* retVal) 1526 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1535 return (winmdroot.Foundation.HRESULT)ex.HResult; 1543 public unsafe winmdroot.Foundation.HRESULT get_CurrentBoundingRectangle(winmdroot.Foundation.RECT* retVal) 1545 return ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IUIAutomationElement*)Unsafe.AsPointer(ref this), retVal); 1551 private static winmdroot.Foundation.HRESULT get_CurrentLabeledBy(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElement** retVal) 1555 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1561 return winmdroot.Foundation.HRESULT.S_OK; 1565 return (winmdroot.Foundation.HRESULT)ex.HResult; 1579 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1587 private static winmdroot.Foundation.HRESULT get_CurrentAriaRole(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1591 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1597 return winmdroot.Foundation.HRESULT.S_OK; 1601 return (winmdroot.Foundation.HRESULT)ex.HResult; 1614 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1622 private static winmdroot.Foundation.HRESULT get_CurrentAriaProperties(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1626 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1632 return winmdroot.Foundation.HRESULT.S_OK; 1636 return (winmdroot.Foundation.HRESULT)ex.HResult; 1649 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1657 private static winmdroot.Foundation.HRESULT get_CurrentIsDataValidForForm(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 1661 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1667 return winmdroot.Foundation.HRESULT.S_OK; 1671 return (winmdroot.Foundation.HRESULT)ex.HResult; 1684 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1692 private static winmdroot.Foundation.HRESULT get_CurrentControllerFor(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 1696 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1702 return winmdroot.Foundation.HRESULT.S_OK; 1706 return (winmdroot.Foundation.HRESULT)ex.HResult; 1719 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1727 private static winmdroot.Foundation.HRESULT get_CurrentDescribedBy(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 1731 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1737 return winmdroot.Foundation.HRESULT.S_OK; 1741 return (winmdroot.Foundation.HRESULT)ex.HResult; 1752 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1760 private static winmdroot.Foundation.HRESULT get_CurrentFlowsTo(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 1764 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1770 return winmdroot.Foundation.HRESULT.S_OK; 1774 return (winmdroot.Foundation.HRESULT)ex.HResult; 1785 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1793 private static winmdroot.Foundation.HRESULT get_CurrentProviderDescription(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1797 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1803 return winmdroot.Foundation.HRESULT.S_OK; 1807 return (winmdroot.Foundation.HRESULT)ex.HResult; 1820 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1828 private static winmdroot.Foundation.HRESULT get_CachedProcessId(IUIAutomationElement* pThis, int* retVal) 1832 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1838 return winmdroot.Foundation.HRESULT.S_OK; 1842 return (winmdroot.Foundation.HRESULT)ex.HResult; 1855 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1863 private static winmdroot.Foundation.HRESULT get_CachedControlType(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* retVal) 1867 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1873 return winmdroot.Foundation.HRESULT.S_OK; 1877 return (winmdroot.Foundation.HRESULT)ex.HResult; 1888 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1896 private static winmdroot.Foundation.HRESULT get_CachedLocalizedControlType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1900 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1906 return winmdroot.Foundation.HRESULT.S_OK; 1910 return (winmdroot.Foundation.HRESULT)ex.HResult; 1923 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1931 private static winmdroot.Foundation.HRESULT get_CachedName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1935 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1941 return winmdroot.Foundation.HRESULT.S_OK; 1945 return (winmdroot.Foundation.HRESULT)ex.HResult; 1956 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1964 private static winmdroot.Foundation.HRESULT get_CachedAcceleratorKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 1968 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1974 return winmdroot.Foundation.HRESULT.S_OK; 1978 return (winmdroot.Foundation.HRESULT)ex.HResult; 1991 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1999 private static winmdroot.Foundation.HRESULT get_CachedAccessKey(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2003 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2009 return winmdroot.Foundation.HRESULT.S_OK; 2013 return (winmdroot.Foundation.HRESULT)ex.HResult; 2024 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2032 private static winmdroot.Foundation.HRESULT get_CachedHasKeyboardFocus(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2036 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2042 return winmdroot.Foundation.HRESULT.S_OK; 2046 return (winmdroot.Foundation.HRESULT)ex.HResult; 2059 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2067 private static winmdroot.Foundation.HRESULT get_CachedIsKeyboardFocusable(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2071 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2077 return winmdroot.Foundation.HRESULT.S_OK; 2081 return (winmdroot.Foundation.HRESULT)ex.HResult; 2094 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2102 private static winmdroot.Foundation.HRESULT get_CachedIsEnabled(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2106 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2112 return winmdroot.Foundation.HRESULT.S_OK; 2116 return (winmdroot.Foundation.HRESULT)ex.HResult; 2129 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2137 private static winmdroot.Foundation.HRESULT get_CachedAutomationId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2141 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2147 return winmdroot.Foundation.HRESULT.S_OK; 2151 return (winmdroot.Foundation.HRESULT)ex.HResult; 2162 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2170 private static winmdroot.Foundation.HRESULT get_CachedClassName(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2174 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2180 return winmdroot.Foundation.HRESULT.S_OK; 2184 return (winmdroot.Foundation.HRESULT)ex.HResult; 2195 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2203 private static winmdroot.Foundation.HRESULT get_CachedHelpText(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2207 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2213 return winmdroot.Foundation.HRESULT.S_OK; 2217 return (winmdroot.Foundation.HRESULT)ex.HResult; 2231 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2239 private static winmdroot.Foundation.HRESULT get_CachedCulture(IUIAutomationElement* pThis, int* retVal) 2243 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2249 return winmdroot.Foundation.HRESULT.S_OK; 2253 return (winmdroot.Foundation.HRESULT)ex.HResult; 2266 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2274 private static winmdroot.Foundation.HRESULT get_CachedIsControlElement(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2278 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2284 return winmdroot.Foundation.HRESULT.S_OK; 2288 return (winmdroot.Foundation.HRESULT)ex.HResult; 2299 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2307 private static winmdroot.Foundation.HRESULT get_CachedIsContentElement(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2311 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2317 return winmdroot.Foundation.HRESULT.S_OK; 2321 return (winmdroot.Foundation.HRESULT)ex.HResult; 2332 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2340 private static winmdroot.Foundation.HRESULT get_CachedIsPassword(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2344 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2350 return winmdroot.Foundation.HRESULT.S_OK; 2354 return (winmdroot.Foundation.HRESULT)ex.HResult; 2365 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2373 private static winmdroot.Foundation.HRESULT get_CachedNativeWindowHandle(IUIAutomationElement* pThis, winmdroot.Foundation.HWND* retVal) 2377 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2383 return winmdroot.Foundation.HRESULT.S_OK; 2387 return (winmdroot.Foundation.HRESULT)ex.HResult; 2400 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2408 private static winmdroot.Foundation.HRESULT get_CachedItemType(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2412 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2418 return winmdroot.Foundation.HRESULT.S_OK; 2422 return (winmdroot.Foundation.HRESULT)ex.HResult; 2433 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2441 private static winmdroot.Foundation.HRESULT get_CachedIsOffscreen(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2445 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2451 return winmdroot.Foundation.HRESULT.S_OK; 2455 return (winmdroot.Foundation.HRESULT)ex.HResult; 2468 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2476 private static winmdroot.Foundation.HRESULT get_CachedOrientation(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.OrientationType* retVal) 2480 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2486 return winmdroot.Foundation.HRESULT.S_OK; 2490 return (winmdroot.Foundation.HRESULT)ex.HResult; 2501 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.OrientationType* ,winmdroot.Foundation.HRESULT>)lpVtbl[71])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2509 private static winmdroot.Foundation.HRESULT get_CachedFrameworkId(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2513 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2519 return winmdroot.Foundation.HRESULT.S_OK; 2523 return (winmdroot.Foundation.HRESULT)ex.HResult; 2536 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[72])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2544 private static winmdroot.Foundation.HRESULT get_CachedIsRequiredForForm(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2548 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2554 return winmdroot.Foundation.HRESULT.S_OK; 2558 return (winmdroot.Foundation.HRESULT)ex.HResult; 2571 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[73])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2579 private static winmdroot.Foundation.HRESULT get_CachedItemStatus(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2583 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2589 return winmdroot.Foundation.HRESULT.S_OK; 2593 return (winmdroot.Foundation.HRESULT)ex.HResult; 2604 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[74])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2612 private static winmdroot.Foundation.HRESULT get_CachedBoundingRectangle(IUIAutomationElement* pThis, winmdroot.Foundation.RECT* retVal) 2616 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2622 return winmdroot.Foundation.HRESULT.S_OK; 2626 return (winmdroot.Foundation.HRESULT)ex.HResult; 2639 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT>)lpVtbl[75])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2647 private static winmdroot.Foundation.HRESULT get_CachedLabeledBy(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElement** retVal) 2651 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2657 return winmdroot.Foundation.HRESULT.S_OK; 2661 return (winmdroot.Foundation.HRESULT)ex.HResult; 2675 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[76])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2683 private static winmdroot.Foundation.HRESULT get_CachedAriaRole(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2687 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2693 return winmdroot.Foundation.HRESULT.S_OK; 2697 return (winmdroot.Foundation.HRESULT)ex.HResult; 2710 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[77])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2718 private static winmdroot.Foundation.HRESULT get_CachedAriaProperties(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2722 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2728 return winmdroot.Foundation.HRESULT.S_OK; 2732 return (winmdroot.Foundation.HRESULT)ex.HResult; 2745 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[78])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2753 private static winmdroot.Foundation.HRESULT get_CachedIsDataValidForForm(IUIAutomationElement* pThis, winmdroot.Foundation.BOOL* retVal) 2757 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2763 return winmdroot.Foundation.HRESULT.S_OK; 2767 return (winmdroot.Foundation.HRESULT)ex.HResult; 2780 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[79])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2788 private static winmdroot.Foundation.HRESULT get_CachedControllerFor(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 2792 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2798 return winmdroot.Foundation.HRESULT.S_OK; 2802 return (winmdroot.Foundation.HRESULT)ex.HResult; 2815 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[80])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2823 private static winmdroot.Foundation.HRESULT get_CachedDescribedBy(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 2827 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2833 return winmdroot.Foundation.HRESULT.S_OK; 2837 return (winmdroot.Foundation.HRESULT)ex.HResult; 2848 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[81])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2856 private static winmdroot.Foundation.HRESULT get_CachedFlowsTo(IUIAutomationElement* pThis, winmdroot.UI.Accessibility.IUIAutomationElementArray** retVal) 2860 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2866 return winmdroot.Foundation.HRESULT.S_OK; 2870 return (winmdroot.Foundation.HRESULT)ex.HResult; 2881 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT>)lpVtbl[82])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2889 private static winmdroot.Foundation.HRESULT get_CachedProviderDescription(IUIAutomationElement* pThis, winmdroot.Foundation.BSTR* retVal) 2893 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2899 return winmdroot.Foundation.HRESULT.S_OK; 2903 return (winmdroot.Foundation.HRESULT)ex.HResult; 2916 ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[83])((IUIAutomationElement*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 2922 internal unsafe winmdroot.Foundation.HRESULT GetClickablePoint(out global::System.Drawing.Point clickable, out winmdroot.Foundation.BOOL gotClickable) 2928 winmdroot.Foundation.HRESULT __result = this.GetClickablePoint(clickableLocal, gotClickableLocal); 2937 private static winmdroot.Foundation.HRESULT GetClickablePoint(IUIAutomationElement* pThis, global::System.Drawing.Point* clickable, winmdroot.Foundation.BOOL* gotClickable) 2941 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 2950 return (winmdroot.Foundation.HRESULT)ex.HResult; 2971 public unsafe winmdroot.Foundation.HRESULT GetClickablePoint(global::System.Drawing.Point* clickable, winmdroot.Foundation.BOOL* gotClickable) 2973 return ((delegate *unmanaged [Stdcall]<IUIAutomationElement*,global::System.Drawing.Point* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[84])((IUIAutomationElement*)Unsafe.AsPointer(ref this), clickable, gotClickable); 2976 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 2980 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 2997 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 3003 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HRESULT> SetFocus_4; 3005 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetRuntimeId_5; 3007 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> FindFirst_6; 3009 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> FindAll_7; 3011 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> FindFirstBuildCache_8; 3013 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.TreeScope ,winmdroot.UI.Accessibility.IUIAutomationCondition* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> FindAllBuildCache_9; 3015 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> BuildUpdatedCache_10; 3017 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCurrentPropertyValue_11; 3019 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BOOL ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCurrentPropertyValueEx_12; 3021 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCachedPropertyValue_13; 3023 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.Foundation.BOOL ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetCachedPropertyValueEx_14; 3025 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetCurrentPatternAs_15; 3027 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> GetCachedPatternAs_16; 3029 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetCurrentPattern_17; 3031 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_PATTERN_ID ,winmdroot.System.Com.IUnknown** ,winmdroot.Foundation.HRESULT> GetCachedPattern_18; 3033 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetCachedParent_19; 3035 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> GetCachedChildren_20; 3037 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT> get_CurrentProcessId_21; 3039 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* ,winmdroot.Foundation.HRESULT> get_CurrentControlType_22; 3041 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentLocalizedControlType_23; 3043 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentName_24; 3045 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAcceleratorKey_25; 3047 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAccessKey_26; 3049 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentHasKeyboardFocus_27; 3051 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsKeyboardFocusable_28; 3053 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsEnabled_29; 3055 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAutomationId_30; 3057 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentClassName_31; 3059 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentHelpText_32; 3061 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT> get_CurrentCulture_33; 3063 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsControlElement_34; 3065 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsContentElement_35; 3067 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsPassword_36; 3069 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> get_CurrentNativeWindowHandle_37; 3071 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentItemType_38; 3073 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsOffscreen_39; 3075 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.OrientationType* ,winmdroot.Foundation.HRESULT> get_CurrentOrientation_40; 3077 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentFrameworkId_41; 3079 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsRequiredForForm_42; 3081 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentItemStatus_43; 3083 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> get_CurrentBoundingRectangle_44; 3085 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> get_CurrentLabeledBy_45; 3087 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAriaRole_46; 3089 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentAriaProperties_47; 3091 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CurrentIsDataValidForForm_48; 3093 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CurrentControllerFor_49; 3095 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CurrentDescribedBy_50; 3097 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CurrentFlowsTo_51; 3099 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CurrentProviderDescription_52; 3101 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT> get_CachedProcessId_53; 3103 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.UIA_CONTROLTYPE_ID* ,winmdroot.Foundation.HRESULT> get_CachedControlType_54; 3105 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedLocalizedControlType_55; 3107 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedName_56; 3109 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAcceleratorKey_57; 3111 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAccessKey_58; 3113 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedHasKeyboardFocus_59; 3115 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsKeyboardFocusable_60; 3117 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsEnabled_61; 3119 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAutomationId_62; 3121 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedClassName_63; 3123 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedHelpText_64; 3125 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,int* ,winmdroot.Foundation.HRESULT> get_CachedCulture_65; 3127 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsControlElement_66; 3129 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsContentElement_67; 3131 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsPassword_68; 3133 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.HWND* ,winmdroot.Foundation.HRESULT> get_CachedNativeWindowHandle_69; 3135 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedItemType_70; 3137 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsOffscreen_71; 3139 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.OrientationType* ,winmdroot.Foundation.HRESULT> get_CachedOrientation_72; 3141 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedFrameworkId_73; 3143 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsRequiredForForm_74; 3145 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedItemStatus_75; 3147 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.RECT* ,winmdroot.Foundation.HRESULT> get_CachedBoundingRectangle_76; 3149 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> get_CachedLabeledBy_77; 3151 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAriaRole_78; 3153 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedAriaProperties_79; 3155 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CachedIsDataValidForForm_80; 3157 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CachedControllerFor_81; 3159 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CachedDescribedBy_82; 3161 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.UI.Accessibility.IUIAutomationElementArray** ,winmdroot.Foundation.HRESULT> get_CachedFlowsTo_83; 3163 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_CachedProviderDescription_84; 3165 internal delegate *unmanaged [Stdcall]<IUIAutomationElement*,global::System.Drawing.Point* ,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> GetClickablePoint_85; 3273winmdroot.Foundation.HRESULT SetFocus(); 3276 unsafe winmdroot.Foundation.HRESULT GetRuntimeId(winmdroot.System.Com.SAFEARRAY** runtimeId); 3279 unsafe winmdroot.Foundation.HRESULT FindFirst(winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationElement** found); 3282 unsafe winmdroot.Foundation.HRESULT FindAll(winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationElementArray** found); 3285 unsafe winmdroot.Foundation.HRESULT FindFirstBuildCache(winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** found); 3288 unsafe winmdroot.Foundation.HRESULT FindAllBuildCache(winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCondition* condition, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElementArray** found); 3291 unsafe winmdroot.Foundation.HRESULT BuildUpdatedCache(winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** updatedElement); 3294 unsafe winmdroot.Foundation.HRESULT GetCurrentPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal); 3297 unsafe winmdroot.Foundation.HRESULT GetCurrentPropertyValueEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal); 3300 unsafe winmdroot.Foundation.HRESULT GetCachedPropertyValue(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT* retVal); 3303 unsafe winmdroot.Foundation.HRESULT GetCachedPropertyValueEx(winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, winmdroot.System.Variant.VARIANT* retVal); 3306 unsafe winmdroot.Foundation.HRESULT GetCurrentPatternAs(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, global::System.Guid* riid, void** patternObject); 3309 unsafe winmdroot.Foundation.HRESULT GetCachedPatternAs(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, global::System.Guid* riid, void** patternObject); 3312 unsafe winmdroot.Foundation.HRESULT GetCurrentPattern(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** patternObject); 3315 unsafe winmdroot.Foundation.HRESULT GetCachedPattern(winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, winmdroot.System.Com.IUnknown** patternObject); 3318 unsafe winmdroot.Foundation.HRESULT GetCachedParent(winmdroot.UI.Accessibility.IUIAutomationElement** parent); 3321 unsafe winmdroot.Foundation.HRESULT GetCachedChildren(winmdroot.UI.Accessibility.IUIAutomationElementArray** children); 3339 unsafe winmdroot.Foundation.HRESULT get_CurrentName(winmdroot.Foundation.BSTR* retVal); 3437 unsafe winmdroot.Foundation.HRESULT get_CurrentBoundingRectangle(winmdroot.Foundation.RECT* retVal); 3640 unsafe winmdroot.Foundation.HRESULT GetClickablePoint(global::System.Drawing.Point* clickable, winmdroot.Foundation.BOOL* gotClickable);
Windows.Win32.IUIAutomationElementArray.g.cs (19)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationElementArray*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT get_Length(IUIAutomationElementArray* pThis, int* length) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 68 return winmdroot.Foundation.HRESULT.S_OK; 72 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 ((delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationElementArray*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 93 private static winmdroot.Foundation.HRESULT GetElement(IUIAutomationElementArray* pThis, int index, winmdroot.UI.Accessibility.IUIAutomationElement** element) 97 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 124 ((delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,int ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationElementArray*)Unsafe.AsPointer(ref this), index, &__retVal).ThrowOnFailure(); 128 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 132 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 149 internal delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 155 internal delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,int* ,winmdroot.Foundation.HRESULT> get_Length_4; 157 internal delegate *unmanaged [Stdcall]<IUIAutomationElementArray*,int ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetElement_5; 190 unsafe winmdroot.Foundation.HRESULT GetElement(int index, winmdroot.UI.Accessibility.IUIAutomationElement** element);
Windows.Win32.IUIAutomationEventHandler.g.cs (13)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationEventHandler*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT HandleAutomationEvent(IUIAutomationEventHandler* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 94 ((delegate *unmanaged [Stdcall]<IUIAutomationEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationEventHandler*)Unsafe.AsPointer(ref this), sender, eventId).ThrowOnFailure(); 97 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 101 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 118 internal delegate *unmanaged [Stdcall]<IUIAutomationEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 124 internal delegate *unmanaged [Stdcall]<IUIAutomationEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.Foundation.HRESULT> HandleAutomationEvent_4; 151 unsafe winmdroot.Foundation.HRESULT HandleAutomationEvent(winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId);
Windows.Win32.IUIAutomationFocusChangedEventHandler.g.cs (13)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationFocusChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationFocusChangedEventHandler*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT HandleFocusChangedEvent(IUIAutomationFocusChangedEventHandler* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* sender) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 90 ((delegate *unmanaged [Stdcall]<IUIAutomationFocusChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationFocusChangedEventHandler*)Unsafe.AsPointer(ref this), sender).ThrowOnFailure(); 93 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 97 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 114 internal delegate *unmanaged [Stdcall]<IUIAutomationFocusChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 120 internal delegate *unmanaged [Stdcall]<IUIAutomationFocusChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.Foundation.HRESULT> HandleFocusChangedEvent_4; 147 unsafe winmdroot.Foundation.HRESULT HandleFocusChangedEvent(winmdroot.UI.Accessibility.IUIAutomationElement* sender);
Windows.Win32.IUIAutomationPropertyChangedEventHandler.g.cs (13)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationPropertyChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationPropertyChangedEventHandler*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT HandlePropertyChangedEvent(IUIAutomationPropertyChangedEventHandler* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT newValue) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 98 ((delegate *unmanaged [Stdcall]<IUIAutomationPropertyChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationPropertyChangedEventHandler*)Unsafe.AsPointer(ref this), sender, propertyId, newValue).ThrowOnFailure(); 101 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 105 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 122 internal delegate *unmanaged [Stdcall]<IUIAutomationPropertyChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 128 internal delegate *unmanaged [Stdcall]<IUIAutomationPropertyChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> HandlePropertyChangedEvent_4; 155 unsafe winmdroot.Foundation.HRESULT HandlePropertyChangedEvent(winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Variant.VARIANT newValue);
Windows.Win32.IUIAutomationProxyFactory.g.cs (19)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationProxyFactory*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT CreateProvider(IUIAutomationProxyFactory* pThis, winmdroot.Foundation.HWND hwnd, int idObject, int idChild, winmdroot.UI.Accessibility.IRawElementProviderSimple** provider) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 95 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,winmdroot.Foundation.HWND ,int ,int ,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationProxyFactory*)Unsafe.AsPointer(ref this), hwnd, idObject, idChild, &__retVal).ThrowOnFailure(); 102 private static winmdroot.Foundation.HRESULT get_ProxyFactoryId(IUIAutomationProxyFactory* pThis, winmdroot.Foundation.BSTR* factoryId) 106 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 112 return winmdroot.Foundation.HRESULT.S_OK; 116 return (winmdroot.Foundation.HRESULT)ex.HResult; 129 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationProxyFactory*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 134 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 138 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 155 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 161 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,winmdroot.Foundation.HWND ,int ,int ,winmdroot.UI.Accessibility.IRawElementProviderSimple** ,winmdroot.Foundation.HRESULT> CreateProvider_4; 163 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactory*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_ProxyFactoryId_5; 191 unsafe winmdroot.Foundation.HRESULT CreateProvider(winmdroot.Foundation.HWND hwnd, int idObject, int idChild, winmdroot.UI.Accessibility.IRawElementProviderSimple** provider);
Windows.Win32.IUIAutomationProxyFactoryEntry.g.cs (85)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT get_ProxyFactory(IUIAutomationProxyFactoryEntry* pThis, winmdroot.UI.Accessibility.IUIAutomationProxyFactory** factory) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 68 return winmdroot.Foundation.HRESULT.S_OK; 72 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.IUIAutomationProxyFactory** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 93 private static winmdroot.Foundation.HRESULT get_ClassName(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BSTR* className) 97 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 117 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 124 private static winmdroot.Foundation.HRESULT get_ImageName(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BSTR* imageName) 128 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 137 return (winmdroot.Foundation.HRESULT)ex.HResult; 148 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 155 private static winmdroot.Foundation.HRESULT get_AllowSubstringMatch(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL* allowSubstringMatch) 159 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 168 return (winmdroot.Foundation.HRESULT)ex.HResult; 181 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 186 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 193 private static winmdroot.Foundation.HRESULT get_CanCheckBaseClass(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL* canCheckBaseClass) 197 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 206 return (winmdroot.Foundation.HRESULT)ex.HResult; 219 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 224 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 231 private static winmdroot.Foundation.HRESULT get_NeedsAdviseEvents(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL* adviseEvents) 235 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 244 return (winmdroot.Foundation.HRESULT)ex.HResult; 257 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 262 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 278 private static winmdroot.Foundation.HRESULT put_ClassName(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.PCWSTR className) 282 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 291 return (winmdroot.Foundation.HRESULT)ex.HResult; 301 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), className).ThrowOnFailure(); 316 private static winmdroot.Foundation.HRESULT put_ImageName(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.PCWSTR imageName) 320 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 329 return (winmdroot.Foundation.HRESULT)ex.HResult; 339 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), imageName).ThrowOnFailure(); 345 private static winmdroot.Foundation.HRESULT put_AllowSubstringMatch(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL allowSubstringMatch) 349 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 358 return (winmdroot.Foundation.HRESULT)ex.HResult; 365 private static winmdroot.Foundation.HRESULT put_CanCheckBaseClass(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL canCheckBaseClass) 369 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 378 return (winmdroot.Foundation.HRESULT)ex.HResult; 385 private static winmdroot.Foundation.HRESULT put_NeedsAdviseEvents(IUIAutomationProxyFactoryEntry* pThis, winmdroot.Foundation.BOOL adviseEvents) 389 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 398 return (winmdroot.Foundation.HRESULT)ex.HResult; 405 private static winmdroot.Foundation.HRESULT SetWinEventsForAutomationEvent(IUIAutomationProxyFactoryEntry* pThis, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Com.SAFEARRAY* winEvents) 409 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 418 return (winmdroot.Foundation.HRESULT)ex.HResult; 441 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), eventId, propertyId, winEvents).ThrowOnFailure(); 447 private static winmdroot.Foundation.HRESULT GetWinEventsForAutomationEvent(IUIAutomationProxyFactoryEntry* pThis, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Com.SAFEARRAY** winEvents) 451 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 460 return (winmdroot.Foundation.HRESULT)ex.HResult; 482 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IUIAutomationProxyFactoryEntry*)Unsafe.AsPointer(ref this), eventId, propertyId, &__retVal).ThrowOnFailure(); 486 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 490 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 507 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 513 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.IUIAutomationProxyFactory** ,winmdroot.Foundation.HRESULT> get_ProxyFactory_4; 515 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_ClassName_5; 517 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_ImageName_6; 519 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_AllowSubstringMatch_7; 521 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_CanCheckBaseClass_8; 523 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_NeedsAdviseEvents_9; 525 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> put_ClassName_10; 527 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> put_ImageName_11; 529 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_AllowSubstringMatch_12; 531 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_CanCheckBaseClass_13; 533 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.Foundation.BOOL ,winmdroot.Foundation.HRESULT> put_NeedsAdviseEvents_14; 535 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> SetWinEventsForAutomationEvent_15; 537 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryEntry*,winmdroot.UI.Accessibility.UIA_EVENT_ID ,winmdroot.UI.Accessibility.UIA_PROPERTY_ID ,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetWinEventsForAutomationEvent_16; 581 unsafe winmdroot.Foundation.HRESULT get_ClassName(winmdroot.Foundation.BSTR* className); 584 unsafe winmdroot.Foundation.HRESULT get_ImageName(winmdroot.Foundation.BSTR* imageName); 587 unsafe winmdroot.Foundation.HRESULT get_AllowSubstringMatch(winmdroot.Foundation.BOOL* allowSubstringMatch); 590 unsafe winmdroot.Foundation.HRESULT get_CanCheckBaseClass(winmdroot.Foundation.BOOL* canCheckBaseClass); 593 unsafe winmdroot.Foundation.HRESULT get_NeedsAdviseEvents(winmdroot.Foundation.BOOL* adviseEvents); 596winmdroot.Foundation.HRESULT put_ClassName(winmdroot.Foundation.PCWSTR className); 599winmdroot.Foundation.HRESULT put_ImageName(winmdroot.Foundation.PCWSTR imageName); 602winmdroot.Foundation.HRESULT put_AllowSubstringMatch(winmdroot.Foundation.BOOL allowSubstringMatch); 605winmdroot.Foundation.HRESULT put_CanCheckBaseClass(winmdroot.Foundation.BOOL canCheckBaseClass); 608winmdroot.Foundation.HRESULT put_NeedsAdviseEvents(winmdroot.Foundation.BOOL adviseEvents); 611 unsafe winmdroot.Foundation.HRESULT SetWinEventsForAutomationEvent(winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Com.SAFEARRAY* winEvents); 614 unsafe winmdroot.Foundation.HRESULT GetWinEventsForAutomationEvent(winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.System.Com.SAFEARRAY** winEvents);
Windows.Win32.IUIAutomationProxyFactoryMapping.g.cs (61)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT get_Count(IUIAutomationProxyFactoryMapping* pThis, uint* count) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 68 return winmdroot.Foundation.HRESULT.S_OK; 72 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 93 private static winmdroot.Foundation.HRESULT GetTable(IUIAutomationProxyFactoryMapping* pThis, winmdroot.System.Com.SAFEARRAY** table) 97 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 106 return (winmdroot.Foundation.HRESULT)ex.HResult; 120 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), &__retVal).ThrowOnFailure(); 127 private static winmdroot.Foundation.HRESULT GetEntry(IUIAutomationProxyFactoryMapping* pThis, uint index, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** entry) 131 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 140 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), index, &__retVal).ThrowOnFailure(); 165 private static winmdroot.Foundation.HRESULT SetTable(IUIAutomationProxyFactoryMapping* pThis, winmdroot.System.Com.SAFEARRAY* factoryList) 169 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 178 return (winmdroot.Foundation.HRESULT)ex.HResult; 195 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), factoryList).ThrowOnFailure(); 201 private static winmdroot.Foundation.HRESULT InsertEntries(IUIAutomationProxyFactoryMapping* pThis, uint before, winmdroot.System.Com.SAFEARRAY* factoryList) 205 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 214 return (winmdroot.Foundation.HRESULT)ex.HResult; 235 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), before, factoryList).ThrowOnFailure(); 241 private static winmdroot.Foundation.HRESULT InsertEntry(IUIAutomationProxyFactoryMapping* pThis, uint before, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry* factory) 245 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 254 return (winmdroot.Foundation.HRESULT)ex.HResult; 275 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry* ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), before, factory).ThrowOnFailure(); 281 private static winmdroot.Foundation.HRESULT RemoveEntry(IUIAutomationProxyFactoryMapping* pThis, uint index) 285 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 294 return (winmdroot.Foundation.HRESULT)ex.HResult; 311 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this), index).ThrowOnFailure(); 317 private static winmdroot.Foundation.HRESULT ClearTable(IUIAutomationProxyFactoryMapping* pThis) 321 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 330 return (winmdroot.Foundation.HRESULT)ex.HResult; 343 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 349 private static winmdroot.Foundation.HRESULT RestoreDefaultTable(IUIAutomationProxyFactoryMapping* pThis) 353 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 362 return (winmdroot.Foundation.HRESULT)ex.HResult; 375 ((delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IUIAutomationProxyFactoryMapping*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 378 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 382 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 399 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 405 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint* ,winmdroot.Foundation.HRESULT> get_Count_4; 407 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.System.Com.SAFEARRAY** ,winmdroot.Foundation.HRESULT> GetTable_5; 409 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** ,winmdroot.Foundation.HRESULT> GetEntry_6; 411 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> SetTable_7; 413 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> InsertEntries_8; 415 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry* ,winmdroot.Foundation.HRESULT> InsertEntry_9; 417 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,uint ,winmdroot.Foundation.HRESULT> RemoveEntry_10; 419 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.Foundation.HRESULT> ClearTable_11; 421 internal delegate *unmanaged [Stdcall]<IUIAutomationProxyFactoryMapping*,winmdroot.Foundation.HRESULT> RestoreDefaultTable_12; 461 unsafe winmdroot.Foundation.HRESULT GetTable(winmdroot.System.Com.SAFEARRAY** table); 464 unsafe winmdroot.Foundation.HRESULT GetEntry(uint index, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry** entry); 467 unsafe winmdroot.Foundation.HRESULT SetTable(winmdroot.System.Com.SAFEARRAY* factoryList); 470 unsafe winmdroot.Foundation.HRESULT InsertEntries(uint before, winmdroot.System.Com.SAFEARRAY* factoryList); 473 unsafe winmdroot.Foundation.HRESULT InsertEntry(uint before, winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry* factory); 476winmdroot.Foundation.HRESULT RemoveEntry(uint index); 479winmdroot.Foundation.HRESULT ClearTable(); 482winmdroot.Foundation.HRESULT RestoreDefaultTable();
Windows.Win32.IUIAutomationStructureChangedEventHandler.g.cs (13)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationStructureChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationStructureChangedEventHandler*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT HandleStructureChangedEvent(IUIAutomationStructureChangedEventHandler* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.StructureChangeType changeType, winmdroot.System.Com.SAFEARRAY* runtimeId) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 94 ((delegate *unmanaged [Stdcall]<IUIAutomationStructureChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.StructureChangeType ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationStructureChangedEventHandler*)Unsafe.AsPointer(ref this), sender, changeType, runtimeId).ThrowOnFailure(); 97 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 101 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 118 internal delegate *unmanaged [Stdcall]<IUIAutomationStructureChangedEventHandler*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 124 internal delegate *unmanaged [Stdcall]<IUIAutomationStructureChangedEventHandler*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.StructureChangeType ,winmdroot.System.Com.SAFEARRAY* ,winmdroot.Foundation.HRESULT> HandleStructureChangedEvent_4; 151 unsafe winmdroot.Foundation.HRESULT HandleStructureChangedEvent(winmdroot.UI.Accessibility.IUIAutomationElement* sender, winmdroot.UI.Accessibility.StructureChangeType changeType, winmdroot.System.Com.SAFEARRAY* runtimeId);
Windows.Win32.IUIAutomationTreeWalker.g.cs (85)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), riid, ppvObject); 58 private static winmdroot.Foundation.HRESULT GetParentElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** parent) 62 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 71 return (winmdroot.Foundation.HRESULT)ex.HResult; 87 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, &__retVal).ThrowOnFailure(); 94 private static winmdroot.Foundation.HRESULT GetFirstChildElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** first) 98 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 107 return (winmdroot.Foundation.HRESULT)ex.HResult; 126 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, &__retVal).ThrowOnFailure(); 133 private static winmdroot.Foundation.HRESULT GetLastChildElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** last) 137 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 146 return (winmdroot.Foundation.HRESULT)ex.HResult; 165 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, &__retVal).ThrowOnFailure(); 172 private static winmdroot.Foundation.HRESULT GetNextSiblingElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** next) 176 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 185 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, &__retVal).ThrowOnFailure(); 211 private static winmdroot.Foundation.HRESULT GetPreviousSiblingElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** previous) 215 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 224 return (winmdroot.Foundation.HRESULT)ex.HResult; 243 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, &__retVal).ThrowOnFailure(); 250 private static winmdroot.Foundation.HRESULT NormalizeElement(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** normalized) 254 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 263 return (winmdroot.Foundation.HRESULT)ex.HResult; 282 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, &__retVal).ThrowOnFailure(); 289 private static winmdroot.Foundation.HRESULT GetParentElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** parent) 293 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 302 return (winmdroot.Foundation.HRESULT)ex.HResult; 322 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, cacheRequest, &__retVal).ThrowOnFailure(); 329 private static winmdroot.Foundation.HRESULT GetFirstChildElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** first) 333 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 342 return (winmdroot.Foundation.HRESULT)ex.HResult; 365 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, cacheRequest, &__retVal).ThrowOnFailure(); 372 private static winmdroot.Foundation.HRESULT GetLastChildElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** last) 376 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 385 return (winmdroot.Foundation.HRESULT)ex.HResult; 408 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[11])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, cacheRequest, &__retVal).ThrowOnFailure(); 415 private static winmdroot.Foundation.HRESULT GetNextSiblingElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** next) 419 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 428 return (winmdroot.Foundation.HRESULT)ex.HResult; 451 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, cacheRequest, &__retVal).ThrowOnFailure(); 458 private static winmdroot.Foundation.HRESULT GetPreviousSiblingElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** previous) 462 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 471 return (winmdroot.Foundation.HRESULT)ex.HResult; 494 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, cacheRequest, &__retVal).ThrowOnFailure(); 501 private static winmdroot.Foundation.HRESULT NormalizeElementBuildCache(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** normalized) 505 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 514 return (winmdroot.Foundation.HRESULT)ex.HResult; 538 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), element, cacheRequest, &__retVal).ThrowOnFailure(); 545 private static winmdroot.Foundation.HRESULT get_Condition(IUIAutomationTreeWalker* pThis, winmdroot.UI.Accessibility.IUIAutomationCondition** condition) 549 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 555 return winmdroot.Foundation.HRESULT.S_OK; 559 return (winmdroot.Foundation.HRESULT)ex.HResult; 572 ((delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IUIAutomationTreeWalker*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 577 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 581 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 598 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 604 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetParentElement_4; 606 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetFirstChildElement_5; 608 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetLastChildElement_6; 610 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetNextSiblingElement_7; 612 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetPreviousSiblingElement_8; 614 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> NormalizeElement_9; 616 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetParentElementBuildCache_10; 618 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetFirstChildElementBuildCache_11; 620 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetLastChildElementBuildCache_12; 622 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetNextSiblingElementBuildCache_13; 624 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> GetPreviousSiblingElementBuildCache_14; 626 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationElement* ,winmdroot.UI.Accessibility.IUIAutomationCacheRequest* ,winmdroot.UI.Accessibility.IUIAutomationElement** ,winmdroot.Foundation.HRESULT> NormalizeElementBuildCache_15; 628 internal delegate *unmanaged [Stdcall]<IUIAutomationTreeWalker*,winmdroot.UI.Accessibility.IUIAutomationCondition** ,winmdroot.Foundation.HRESULT> get_Condition_16; 667 unsafe winmdroot.Foundation.HRESULT GetParentElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** parent); 670 unsafe winmdroot.Foundation.HRESULT GetFirstChildElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** first); 673 unsafe winmdroot.Foundation.HRESULT GetLastChildElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** last); 676 unsafe winmdroot.Foundation.HRESULT GetNextSiblingElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** next); 679 unsafe winmdroot.Foundation.HRESULT GetPreviousSiblingElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** previous); 682 unsafe winmdroot.Foundation.HRESULT NormalizeElement(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationElement** normalized); 685 unsafe winmdroot.Foundation.HRESULT GetParentElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** parent); 688 unsafe winmdroot.Foundation.HRESULT GetFirstChildElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** first); 691 unsafe winmdroot.Foundation.HRESULT GetLastChildElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** last); 694 unsafe winmdroot.Foundation.HRESULT GetNextSiblingElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** next); 697 unsafe winmdroot.Foundation.HRESULT GetPreviousSiblingElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** previous); 700 unsafe winmdroot.Foundation.HRESULT NormalizeElementBuildCache(winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationElement** normalized);
Windows.Win32.IValueProvider.g.cs (29)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IValueProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IValueProvider*)Unsafe.AsPointer(ref this), riid, ppvObject); 67 private static winmdroot.Foundation.HRESULT SetValue(IValueProvider* pThis, winmdroot.Foundation.PCWSTR val) 71 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 80 return (winmdroot.Foundation.HRESULT)ex.HResult; 99 ((delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IValueProvider*)Unsafe.AsPointer(ref this), val).ThrowOnFailure(); 105 private static winmdroot.Foundation.HRESULT get_Value(IValueProvider* pThis, winmdroot.Foundation.BSTR* pRetVal) 109 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 118 return (winmdroot.Foundation.HRESULT)ex.HResult; 129 public unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pRetVal) 131 return ((delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 135 internal unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(out winmdroot.Foundation.BOOL pRetVal) 139 winmdroot.Foundation.HRESULT __result = this.get_IsReadOnly(pRetValLocal); 147 private static winmdroot.Foundation.HRESULT get_IsReadOnly(IValueProvider* pThis, winmdroot.Foundation.BOOL* pRetVal) 151 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 160 return (winmdroot.Foundation.HRESULT)ex.HResult; 169 public unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(winmdroot.Foundation.BOOL* pRetVal) 171 return ((delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IValueProvider*)Unsafe.AsPointer(ref this), pRetVal); 174 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 178 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 195 internal delegate *unmanaged [Stdcall]<IValueProvider*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 201 internal delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.PCWSTR ,winmdroot.Foundation.HRESULT> SetValue_4; 203 internal delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Value_5; 205 internal delegate *unmanaged [Stdcall]<IValueProvider*,winmdroot.Foundation.BOOL* ,winmdroot.Foundation.HRESULT> get_IsReadOnly_6; 234winmdroot.Foundation.HRESULT SetValue(winmdroot.Foundation.PCWSTR val); 237 unsafe winmdroot.Foundation.HRESULT get_Value(winmdroot.Foundation.BSTR* pRetVal); 240 unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(winmdroot.Foundation.BOOL* pRetVal);
Windows.Win32.IVBFormat.g.cs (13)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IVBFormat*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IVBFormat*)Unsafe.AsPointer(ref this), riid, ppvObject); 69 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) 73 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 82 return (winmdroot.Foundation.HRESULT)ex.HResult; 112 ((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(); 115 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 119 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 136 internal delegate *unmanaged [Stdcall]<IVBFormat*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 142 internal delegate *unmanaged [Stdcall]<IVBFormat*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.BSTR ,void* ,ushort ,int ,short ,ushort ,ushort* ,winmdroot.Foundation.HRESULT> Format_4; 168 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);
Windows.Win32.IVBGetControl.g.cs (13)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IVBGetControl*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IVBGetControl*)Unsafe.AsPointer(ref this), riid, ppvObject); 57 private static winmdroot.Foundation.HRESULT EnumControls(IVBGetControl* pThis, uint dwOleContF, winmdroot.System.Ole.ENUM_CONTROLS_WHICH_FLAGS dwWhich, winmdroot.System.Com.IEnumUnknown** ppenumUnk) 61 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 70 return (winmdroot.Foundation.HRESULT)ex.HResult; 91 ((delegate *unmanaged [Stdcall]<IVBGetControl*,uint ,winmdroot.System.Ole.ENUM_CONTROLS_WHICH_FLAGS ,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IVBGetControl*)Unsafe.AsPointer(ref this), dwOleContF, dwWhich, ppenumUnk).ThrowOnFailure(); 94 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 98 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 115 internal delegate *unmanaged [Stdcall]<IVBGetControl*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 121 internal delegate *unmanaged [Stdcall]<IVBGetControl*,uint ,winmdroot.System.Ole.ENUM_CONTROLS_WHICH_FLAGS ,winmdroot.System.Com.IEnumUnknown** ,winmdroot.Foundation.HRESULT> EnumControls_4; 147 unsafe winmdroot.Foundation.HRESULT EnumControls(uint dwOleContF, winmdroot.System.Ole.ENUM_CONTROLS_WHICH_FLAGS dwWhich, winmdroot.System.Com.IEnumUnknown** ppenumUnk);
Windows.Win32.IViewObject.g.cs (43)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IViewObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IViewObject*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 private static winmdroot.Foundation.HRESULT Draw(IViewObject* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, [Optional] winmdroot.Foundation.RECTL* lprcBounds, [Optional] winmdroot.Foundation.RECTL* lprcWBounds, nint pfnContinue, nuint dwContinue) 70 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 79 return (winmdroot.Foundation.HRESULT)ex.HResult; 108 ((delegate *unmanaged [Stdcall]<IViewObject*,winmdroot.System.Com.DVASPECT ,int ,void* ,winmdroot.System.Com.DVTARGETDEVICE* ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Foundation.RECTL* ,winmdroot.Foundation.RECTL* ,nint ,nuint ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IViewObject*)Unsafe.AsPointer(ref this), dwDrawAspect, lindex, pvAspect, ptd, hdcTargetDev, hdcDraw, lprcBounds, lprcWBounds, pfnContinue, dwContinue).ThrowOnFailure(); 123 private static winmdroot.Foundation.HRESULT GetColorSet(IViewObject* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hicTargetDev, winmdroot.Graphics.Gdi.LOGPALETTE** ppColorSet) 127 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 136 return (winmdroot.Foundation.HRESULT)ex.HResult; 157 ((delegate *unmanaged [Stdcall]<IViewObject*,winmdroot.System.Com.DVASPECT ,int ,void* ,winmdroot.System.Com.DVTARGETDEVICE* ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.LOGPALETTE** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IViewObject*)Unsafe.AsPointer(ref this), dwDrawAspect, lindex, pvAspect, ptd, hicTargetDev, ppColorSet).ThrowOnFailure(); 172 private static winmdroot.Foundation.HRESULT Freeze(IViewObject* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, uint* pdwFreeze) 176 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 185 return (winmdroot.Foundation.HRESULT)ex.HResult; 204 ((delegate *unmanaged [Stdcall]<IViewObject*,winmdroot.System.Com.DVASPECT ,int ,void* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IViewObject*)Unsafe.AsPointer(ref this), dwDrawAspect, lindex, pvAspect, pdwFreeze).ThrowOnFailure(); 210 private static winmdroot.Foundation.HRESULT Unfreeze(IViewObject* pThis, uint dwFreeze) 214 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 223 return (winmdroot.Foundation.HRESULT)ex.HResult; 238 ((delegate *unmanaged [Stdcall]<IViewObject*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IViewObject*)Unsafe.AsPointer(ref this), dwFreeze).ThrowOnFailure(); 244 private static winmdroot.Foundation.HRESULT SetAdvise(IViewObject* pThis, winmdroot.System.Com.DVASPECT aspects, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink) 248 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 257 return (winmdroot.Foundation.HRESULT)ex.HResult; 279 ((delegate *unmanaged [Stdcall]<IViewObject*,winmdroot.System.Com.DVASPECT ,uint ,winmdroot.System.Com.IAdviseSink* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IViewObject*)Unsafe.AsPointer(ref this), aspects, advf, pAdvSink).ThrowOnFailure(); 285 private static winmdroot.Foundation.HRESULT GetAdvise(IViewObject* pThis, [Optional] uint* pAspects, [Optional] uint* pAdvf, winmdroot.System.Com.IAdviseSink** ppAdvSink) 289 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 298 return (winmdroot.Foundation.HRESULT)ex.HResult; 312 ((delegate *unmanaged [Stdcall]<IViewObject*,uint* ,uint* ,winmdroot.System.Com.IAdviseSink** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IViewObject*)Unsafe.AsPointer(ref this), pAspects, pAdvf, ppAdvSink).ThrowOnFailure(); 315 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 319 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 336 internal delegate *unmanaged [Stdcall]<IViewObject*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 342 internal delegate *unmanaged [Stdcall]<IViewObject*,winmdroot.System.Com.DVASPECT ,int ,void* ,winmdroot.System.Com.DVTARGETDEVICE* ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Foundation.RECTL* ,winmdroot.Foundation.RECTL* ,nint ,nuint ,winmdroot.Foundation.HRESULT> Draw_4; 344 internal delegate *unmanaged [Stdcall]<IViewObject*,winmdroot.System.Com.DVASPECT ,int ,void* ,winmdroot.System.Com.DVTARGETDEVICE* ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.LOGPALETTE** ,winmdroot.Foundation.HRESULT> GetColorSet_5; 346 internal delegate *unmanaged [Stdcall]<IViewObject*,winmdroot.System.Com.DVASPECT ,int ,void* ,uint* ,winmdroot.Foundation.HRESULT> Freeze_6; 348 internal delegate *unmanaged [Stdcall]<IViewObject*,uint ,winmdroot.Foundation.HRESULT> Unfreeze_7; 350 internal delegate *unmanaged [Stdcall]<IViewObject*,winmdroot.System.Com.DVASPECT ,uint ,winmdroot.System.Com.IAdviseSink* ,winmdroot.Foundation.HRESULT> SetAdvise_8; 352 internal delegate *unmanaged [Stdcall]<IViewObject*,uint* ,uint* ,winmdroot.System.Com.IAdviseSink** ,winmdroot.Foundation.HRESULT> GetAdvise_9; 384 unsafe winmdroot.Foundation.HRESULT Draw(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, [Optional] winmdroot.Foundation.RECTL* lprcBounds, [Optional] winmdroot.Foundation.RECTL* lprcWBounds, nint pfnContinue, nuint dwContinue); 387 unsafe winmdroot.Foundation.HRESULT GetColorSet(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hicTargetDev, winmdroot.Graphics.Gdi.LOGPALETTE** ppColorSet); 390 unsafe winmdroot.Foundation.HRESULT Freeze(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, uint* pdwFreeze); 393winmdroot.Foundation.HRESULT Unfreeze(uint dwFreeze); 396 unsafe winmdroot.Foundation.HRESULT SetAdvise(winmdroot.System.Com.DVASPECT aspects, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink); 399 unsafe winmdroot.Foundation.HRESULT GetAdvise([Optional] uint* pAspects, [Optional] uint* pAdvf, winmdroot.System.Com.IAdviseSink** ppAdvSink);
Windows.Win32.IViewObject2.g.cs (49)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IViewObject2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IViewObject2*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 private static winmdroot.Foundation.HRESULT Draw(IViewObject2* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, [Optional] winmdroot.Foundation.RECTL* lprcBounds, [Optional] winmdroot.Foundation.RECTL* lprcWBounds, nint pfnContinue, nuint dwContinue) 70 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 79 return (winmdroot.Foundation.HRESULT)ex.HResult; 85 ((delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,int ,void* ,winmdroot.System.Com.DVTARGETDEVICE* ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Foundation.RECTL* ,winmdroot.Foundation.RECTL* ,nint ,nuint ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IViewObject2*)Unsafe.AsPointer(ref this), dwDrawAspect, lindex, pvAspect, ptd, hdcTargetDev, hdcDraw, lprcBounds, lprcWBounds, pfnContinue, dwContinue).ThrowOnFailure(); 100 private static winmdroot.Foundation.HRESULT GetColorSet(IViewObject2* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hicTargetDev, winmdroot.Graphics.Gdi.LOGPALETTE** ppColorSet) 104 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 113 return (winmdroot.Foundation.HRESULT)ex.HResult; 119 ((delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,int ,void* ,winmdroot.System.Com.DVTARGETDEVICE* ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.LOGPALETTE** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IViewObject2*)Unsafe.AsPointer(ref this), dwDrawAspect, lindex, pvAspect, ptd, hicTargetDev, ppColorSet).ThrowOnFailure(); 134 private static winmdroot.Foundation.HRESULT Freeze(IViewObject2* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, uint* pdwFreeze) 138 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 147 return (winmdroot.Foundation.HRESULT)ex.HResult; 153 ((delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,int ,void* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IViewObject2*)Unsafe.AsPointer(ref this), dwDrawAspect, lindex, pvAspect, pdwFreeze).ThrowOnFailure(); 159 private static winmdroot.Foundation.HRESULT Unfreeze(IViewObject2* pThis, uint dwFreeze) 163 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 172 return (winmdroot.Foundation.HRESULT)ex.HResult; 178 ((delegate *unmanaged [Stdcall]<IViewObject2*,uint ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IViewObject2*)Unsafe.AsPointer(ref this), dwFreeze).ThrowOnFailure(); 184 private static winmdroot.Foundation.HRESULT SetAdvise(IViewObject2* pThis, winmdroot.System.Com.DVASPECT aspects, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink) 188 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 197 return (winmdroot.Foundation.HRESULT)ex.HResult; 203 ((delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,uint ,winmdroot.System.Com.IAdviseSink* ,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IViewObject2*)Unsafe.AsPointer(ref this), aspects, advf, pAdvSink).ThrowOnFailure(); 209 private static winmdroot.Foundation.HRESULT GetAdvise(IViewObject2* pThis, [Optional] uint* pAspects, [Optional] uint* pAdvf, winmdroot.System.Com.IAdviseSink** ppAdvSink) 213 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 222 return (winmdroot.Foundation.HRESULT)ex.HResult; 228 ((delegate *unmanaged [Stdcall]<IViewObject2*,uint* ,uint* ,winmdroot.System.Com.IAdviseSink** ,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IViewObject2*)Unsafe.AsPointer(ref this), pAspects, pAdvf, ppAdvSink).ThrowOnFailure(); 243 private static winmdroot.Foundation.HRESULT GetExtent(IViewObject2* pThis, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Foundation.SIZE* lpsizel) 247 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 256 return (winmdroot.Foundation.HRESULT)ex.HResult; 276 ((delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,int ,winmdroot.System.Com.DVTARGETDEVICE* ,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IViewObject2*)Unsafe.AsPointer(ref this), dwDrawAspect, lindex, ptd, lpsizel).ThrowOnFailure(); 279 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 283 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 300 internal delegate *unmanaged [Stdcall]<IViewObject2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 306 internal delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,int ,void* ,winmdroot.System.Com.DVTARGETDEVICE* ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Foundation.RECTL* ,winmdroot.Foundation.RECTL* ,nint ,nuint ,winmdroot.Foundation.HRESULT> Draw_4; 308 internal delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,int ,void* ,winmdroot.System.Com.DVTARGETDEVICE* ,winmdroot.Graphics.Gdi.HDC ,winmdroot.Graphics.Gdi.LOGPALETTE** ,winmdroot.Foundation.HRESULT> GetColorSet_5; 310 internal delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,int ,void* ,uint* ,winmdroot.Foundation.HRESULT> Freeze_6; 312 internal delegate *unmanaged [Stdcall]<IViewObject2*,uint ,winmdroot.Foundation.HRESULT> Unfreeze_7; 314 internal delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,uint ,winmdroot.System.Com.IAdviseSink* ,winmdroot.Foundation.HRESULT> SetAdvise_8; 316 internal delegate *unmanaged [Stdcall]<IViewObject2*,uint* ,uint* ,winmdroot.System.Com.IAdviseSink** ,winmdroot.Foundation.HRESULT> GetAdvise_9; 318 internal delegate *unmanaged [Stdcall]<IViewObject2*,winmdroot.System.Com.DVASPECT ,int ,winmdroot.System.Com.DVTARGETDEVICE* ,winmdroot.Foundation.SIZE* ,winmdroot.Foundation.HRESULT> GetExtent_10; 351 unsafe new winmdroot.Foundation.HRESULT Draw(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, [Optional] winmdroot.Foundation.RECTL* lprcBounds, [Optional] winmdroot.Foundation.RECTL* lprcWBounds, nint pfnContinue, nuint dwContinue); 354 unsafe new winmdroot.Foundation.HRESULT GetColorSet(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, [Optional] winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hicTargetDev, winmdroot.Graphics.Gdi.LOGPALETTE** ppColorSet); 357 unsafe new winmdroot.Foundation.HRESULT Freeze(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, uint* pdwFreeze); 360 new winmdroot.Foundation.HRESULT Unfreeze(uint dwFreeze); 363 unsafe new winmdroot.Foundation.HRESULT SetAdvise(winmdroot.System.Com.DVASPECT aspects, uint advf, winmdroot.System.Com.IAdviseSink* pAdvSink); 366 unsafe new winmdroot.Foundation.HRESULT GetAdvise([Optional] uint* pAspects, [Optional] uint* pAdvf, winmdroot.System.Com.IAdviseSink** ppAdvSink); 369 unsafe winmdroot.Foundation.HRESULT GetExtent(winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Foundation.SIZE* lpsizel);
Windows.Win32.IWebBrowser.g.cs (171)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IWebBrowser*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IWebBrowser*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IWebBrowser*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IWebBrowser*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IWebBrowser*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IWebBrowser*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IWebBrowser*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IWebBrowser*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT GoBack(IWebBrowser* pThis) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 133 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 139 private static winmdroot.Foundation.HRESULT GoForward(IWebBrowser* pThis) 143 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 164 private static winmdroot.Foundation.HRESULT GoHome(IWebBrowser* pThis) 168 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 183 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 189 private static winmdroot.Foundation.HRESULT GoSearch(IWebBrowser* pThis) 193 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 224 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) 228 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 237 return (winmdroot.Foundation.HRESULT)ex.HResult; 243 ((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(); 249 private static winmdroot.Foundation.HRESULT Refresh(IWebBrowser* pThis) 253 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 262 return (winmdroot.Foundation.HRESULT)ex.HResult; 268 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 281 private static winmdroot.Foundation.HRESULT Refresh2(IWebBrowser* pThis, [Optional] winmdroot.System.Variant.VARIANT* Level) 285 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 294 return (winmdroot.Foundation.HRESULT)ex.HResult; 300 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IWebBrowser*)Unsafe.AsPointer(ref this), Level).ThrowOnFailure(); 306 private static winmdroot.Foundation.HRESULT Stop(IWebBrowser* pThis) 310 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 319 return (winmdroot.Foundation.HRESULT)ex.HResult; 325 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IWebBrowser*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 331 private static winmdroot.Foundation.HRESULT get_Application(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 335 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 341 return winmdroot.Foundation.HRESULT.S_OK; 345 return (winmdroot.Foundation.HRESULT)ex.HResult; 354 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 362 private static winmdroot.Foundation.HRESULT get_Parent(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 366 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 372 return winmdroot.Foundation.HRESULT.S_OK; 376 return (winmdroot.Foundation.HRESULT)ex.HResult; 385 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 393 private static winmdroot.Foundation.HRESULT get_Container(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 397 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 403 return winmdroot.Foundation.HRESULT.S_OK; 407 return (winmdroot.Foundation.HRESULT)ex.HResult; 416 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 424 private static winmdroot.Foundation.HRESULT get_Document(IWebBrowser* pThis, winmdroot.System.Com.IDispatch** ppDisp) 428 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 437 return (winmdroot.Foundation.HRESULT)ex.HResult; 441 public unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp) 443 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IWebBrowser*)Unsafe.AsPointer(ref this), ppDisp); 449 private static winmdroot.Foundation.HRESULT get_TopLevelContainer(IWebBrowser* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 453 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 459 return winmdroot.Foundation.HRESULT.S_OK; 463 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 480 private static winmdroot.Foundation.HRESULT get_Type(IWebBrowser* pThis, winmdroot.Foundation.BSTR* Type) 484 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 490 return winmdroot.Foundation.HRESULT.S_OK; 494 return (winmdroot.Foundation.HRESULT)ex.HResult; 503 ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 511 private static winmdroot.Foundation.HRESULT get_Left(IWebBrowser* pThis, int* pl) 515 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 521 return winmdroot.Foundation.HRESULT.S_OK; 525 return (winmdroot.Foundation.HRESULT)ex.HResult; 534 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 539 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IWebBrowser*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 546 private static winmdroot.Foundation.HRESULT put_Left(IWebBrowser* pThis, int Left) 550 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 556 return winmdroot.Foundation.HRESULT.S_OK; 560 return (winmdroot.Foundation.HRESULT)ex.HResult; 567 private static winmdroot.Foundation.HRESULT get_Top(IWebBrowser* pThis, int* pl) 571 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 577 return winmdroot.Foundation.HRESULT.S_OK; 581 return (winmdroot.Foundation.HRESULT)ex.HResult; 590 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 595 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IWebBrowser*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 602 private static winmdroot.Foundation.HRESULT put_Top(IWebBrowser* pThis, int Top) 606 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 612 return winmdroot.Foundation.HRESULT.S_OK; 616 return (winmdroot.Foundation.HRESULT)ex.HResult; 623 private static winmdroot.Foundation.HRESULT get_Width(IWebBrowser* pThis, int* pl) 627 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 633 return winmdroot.Foundation.HRESULT.S_OK; 637 return (winmdroot.Foundation.HRESULT)ex.HResult; 646 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 651 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IWebBrowser*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 658 private static winmdroot.Foundation.HRESULT put_Width(IWebBrowser* pThis, int Width) 662 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 668 return winmdroot.Foundation.HRESULT.S_OK; 672 return (winmdroot.Foundation.HRESULT)ex.HResult; 679 private static winmdroot.Foundation.HRESULT get_Height(IWebBrowser* pThis, int* pl) 683 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 689 return winmdroot.Foundation.HRESULT.S_OK; 693 return (winmdroot.Foundation.HRESULT)ex.HResult; 702 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IWebBrowser*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 707 ((delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IWebBrowser*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 714 private static winmdroot.Foundation.HRESULT put_Height(IWebBrowser* pThis, int Height) 718 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 724 return winmdroot.Foundation.HRESULT.S_OK; 728 return (winmdroot.Foundation.HRESULT)ex.HResult; 735 private static winmdroot.Foundation.HRESULT get_LocationName(IWebBrowser* pThis, winmdroot.Foundation.BSTR* LocationName) 739 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 748 return (winmdroot.Foundation.HRESULT)ex.HResult; 752 public unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName) 754 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IWebBrowser*)Unsafe.AsPointer(ref this), LocationName); 760 private static winmdroot.Foundation.HRESULT get_LocationURL(IWebBrowser* pThis, winmdroot.Foundation.BSTR* LocationURL) 764 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 773 return (winmdroot.Foundation.HRESULT)ex.HResult; 777 public unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL) 779 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IWebBrowser*)Unsafe.AsPointer(ref this), LocationURL); 783 internal unsafe winmdroot.Foundation.HRESULT get_Busy(out winmdroot.Foundation.VARIANT_BOOL pBool) 787 winmdroot.Foundation.HRESULT __result = this.get_Busy(pBoolLocal); 795 private static winmdroot.Foundation.HRESULT get_Busy(IWebBrowser* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 799 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 808 return (winmdroot.Foundation.HRESULT)ex.HResult; 812 public unsafe winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool) 814 return ((delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IWebBrowser*)Unsafe.AsPointer(ref this), pBool); 817 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 821 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 838 internal delegate *unmanaged [Stdcall]<IWebBrowser*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 844 internal delegate *unmanaged [Stdcall]<IWebBrowser*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 846 internal delegate *unmanaged [Stdcall]<IWebBrowser*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 848 internal delegate *unmanaged [Stdcall]<IWebBrowser*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 850 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 852 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> GoBack_8; 854 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> GoForward_9; 856 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> GoHome_10; 858 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> GoSearch_11; 860 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; 862 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> Refresh_13; 864 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Refresh2_14; 866 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.HRESULT> Stop_15; 868 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Application_16; 870 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Parent_17; 872 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Container_18; 874 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Document_19; 876 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_TopLevelContainer_20; 878 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Type_21; 880 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT> get_Left_22; 882 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT> put_Left_23; 884 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT> get_Top_24; 886 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT> put_Top_25; 888 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT> get_Width_26; 890 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT> put_Width_27; 892 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int* ,winmdroot.Foundation.HRESULT> get_Height_28; 894 internal delegate *unmanaged [Stdcall]<IWebBrowser*,int ,winmdroot.Foundation.HRESULT> put_Height_29; 896 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationName_30; 898 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationURL_31; 900 internal delegate *unmanaged [Stdcall]<IWebBrowser*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Busy_32; 950winmdroot.Foundation.HRESULT GoBack(); 953winmdroot.Foundation.HRESULT GoForward(); 956winmdroot.Foundation.HRESULT GoHome(); 959winmdroot.Foundation.HRESULT GoSearch(); 962 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); 965winmdroot.Foundation.HRESULT Refresh(); 968 unsafe winmdroot.Foundation.HRESULT Refresh2([Optional] winmdroot.System.Variant.VARIANT* Level); 971winmdroot.Foundation.HRESULT Stop(); 989 unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp); 1026 unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName); 1029 unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL); 1032 unsafe winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool);
Windows.Win32.IWebBrowser2.g.cs (434)
28 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 40 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 42 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IWebBrowser2*)Unsafe.AsPointer(ref this), riid, ppvObject); 66 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IWebBrowser2*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 82 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IWebBrowser2*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 103 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IWebBrowser2*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 120 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IWebBrowser2*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 126 private static winmdroot.Foundation.HRESULT GoBack(IWebBrowser2* pThis) 130 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 139 return (winmdroot.Foundation.HRESULT)ex.HResult; 143 public winmdroot.Foundation.HRESULT GoBack() 145 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 151 private static winmdroot.Foundation.HRESULT GoForward(IWebBrowser2* pThis) 155 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 164 return (winmdroot.Foundation.HRESULT)ex.HResult; 168 public winmdroot.Foundation.HRESULT GoForward() 170 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 176 private static winmdroot.Foundation.HRESULT GoHome(IWebBrowser2* pThis) 180 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 189 return (winmdroot.Foundation.HRESULT)ex.HResult; 193 public winmdroot.Foundation.HRESULT GoHome() 195 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 201 private static winmdroot.Foundation.HRESULT GoSearch(IWebBrowser2* pThis) 205 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 214 return (winmdroot.Foundation.HRESULT)ex.HResult; 218 public winmdroot.Foundation.HRESULT GoSearch() 220 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 236 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) 240 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 249 return (winmdroot.Foundation.HRESULT)ex.HResult; 255 ((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(); 261 private static winmdroot.Foundation.HRESULT Refresh(IWebBrowser2* pThis) 265 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 274 return (winmdroot.Foundation.HRESULT)ex.HResult; 278 public winmdroot.Foundation.HRESULT Refresh() 280 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 284 internal unsafe winmdroot.Foundation.HRESULT Refresh2(winmdroot.System.Variant.VARIANT? Level) 287 winmdroot.Foundation.HRESULT __result = this.Refresh2(Level.HasValue ? &LevelLocal : null); 294 private static winmdroot.Foundation.HRESULT Refresh2(IWebBrowser2* pThis, [Optional] winmdroot.System.Variant.VARIANT* Level) 298 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 307 return (winmdroot.Foundation.HRESULT)ex.HResult; 311 public unsafe winmdroot.Foundation.HRESULT Refresh2([Optional] winmdroot.System.Variant.VARIANT* Level) 313 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IWebBrowser2*)Unsafe.AsPointer(ref this), Level); 319 private static winmdroot.Foundation.HRESULT Stop(IWebBrowser2* pThis) 323 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 332 return (winmdroot.Foundation.HRESULT)ex.HResult; 336 public winmdroot.Foundation.HRESULT Stop() 338 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IWebBrowser2*)Unsafe.AsPointer(ref this)); 344 private static winmdroot.Foundation.HRESULT get_Application(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 348 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 354 return winmdroot.Foundation.HRESULT.S_OK; 358 return (winmdroot.Foundation.HRESULT)ex.HResult; 367 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 375 private static winmdroot.Foundation.HRESULT get_Parent(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 379 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 385 return winmdroot.Foundation.HRESULT.S_OK; 389 return (winmdroot.Foundation.HRESULT)ex.HResult; 398 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 406 private static winmdroot.Foundation.HRESULT get_Container(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 410 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 416 return winmdroot.Foundation.HRESULT.S_OK; 420 return (winmdroot.Foundation.HRESULT)ex.HResult; 429 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 437 private static winmdroot.Foundation.HRESULT get_Document(IWebBrowser2* pThis, winmdroot.System.Com.IDispatch** ppDisp) 441 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 450 return (winmdroot.Foundation.HRESULT)ex.HResult; 454 public unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp) 456 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IWebBrowser2*)Unsafe.AsPointer(ref this), ppDisp); 462 private static winmdroot.Foundation.HRESULT get_TopLevelContainer(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 466 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 472 return winmdroot.Foundation.HRESULT.S_OK; 476 return (winmdroot.Foundation.HRESULT)ex.HResult; 485 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 493 private static winmdroot.Foundation.HRESULT get_Type(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* Type) 497 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 503 return winmdroot.Foundation.HRESULT.S_OK; 507 return (winmdroot.Foundation.HRESULT)ex.HResult; 516 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 524 private static winmdroot.Foundation.HRESULT get_Left(IWebBrowser2* pThis, int* pl) 528 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 534 return winmdroot.Foundation.HRESULT.S_OK; 538 return (winmdroot.Foundation.HRESULT)ex.HResult; 547 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 552 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 559 private static winmdroot.Foundation.HRESULT put_Left(IWebBrowser2* pThis, int Left) 563 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 569 return winmdroot.Foundation.HRESULT.S_OK; 573 return (winmdroot.Foundation.HRESULT)ex.HResult; 580 private static winmdroot.Foundation.HRESULT get_Top(IWebBrowser2* pThis, int* pl) 584 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 590 return winmdroot.Foundation.HRESULT.S_OK; 594 return (winmdroot.Foundation.HRESULT)ex.HResult; 603 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 608 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 615 private static winmdroot.Foundation.HRESULT put_Top(IWebBrowser2* pThis, int Top) 619 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 625 return winmdroot.Foundation.HRESULT.S_OK; 629 return (winmdroot.Foundation.HRESULT)ex.HResult; 636 private static winmdroot.Foundation.HRESULT get_Width(IWebBrowser2* pThis, int* pl) 640 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 646 return winmdroot.Foundation.HRESULT.S_OK; 650 return (winmdroot.Foundation.HRESULT)ex.HResult; 659 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 664 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 671 private static winmdroot.Foundation.HRESULT put_Width(IWebBrowser2* pThis, int Width) 675 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 681 return winmdroot.Foundation.HRESULT.S_OK; 685 return (winmdroot.Foundation.HRESULT)ex.HResult; 692 private static winmdroot.Foundation.HRESULT get_Height(IWebBrowser2* pThis, int* pl) 696 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 702 return winmdroot.Foundation.HRESULT.S_OK; 706 return (winmdroot.Foundation.HRESULT)ex.HResult; 715 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 720 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 727 private static winmdroot.Foundation.HRESULT put_Height(IWebBrowser2* pThis, int Height) 731 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 737 return winmdroot.Foundation.HRESULT.S_OK; 741 return (winmdroot.Foundation.HRESULT)ex.HResult; 748 private static winmdroot.Foundation.HRESULT get_LocationName(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* LocationName) 752 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 761 return (winmdroot.Foundation.HRESULT)ex.HResult; 765 public unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName) 767 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IWebBrowser2*)Unsafe.AsPointer(ref this), LocationName); 773 private static winmdroot.Foundation.HRESULT get_LocationURL(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* LocationURL) 777 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 786 return (winmdroot.Foundation.HRESULT)ex.HResult; 790 public unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL) 792 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IWebBrowser2*)Unsafe.AsPointer(ref this), LocationURL); 796 internal unsafe winmdroot.Foundation.HRESULT get_Busy(out winmdroot.Foundation.VARIANT_BOOL pBool) 800 winmdroot.Foundation.HRESULT __result = this.get_Busy(pBoolLocal); 808 private static winmdroot.Foundation.HRESULT get_Busy(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 812 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 821 return (winmdroot.Foundation.HRESULT)ex.HResult; 825 public unsafe winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool) 827 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IWebBrowser2*)Unsafe.AsPointer(ref this), pBool); 833 private static winmdroot.Foundation.HRESULT Quit(IWebBrowser2* pThis) 837 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 846 return (winmdroot.Foundation.HRESULT)ex.HResult; 852 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IWebBrowser2*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 870 private static winmdroot.Foundation.HRESULT ClientToWindow(IWebBrowser2* pThis, int* pcx, int* pcy) 874 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 883 return (winmdroot.Foundation.HRESULT)ex.HResult; 889 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IWebBrowser2*)Unsafe.AsPointer(ref this), pcx, pcy).ThrowOnFailure(); 895 private static winmdroot.Foundation.HRESULT PutProperty(IWebBrowser2* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue) 899 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 908 return (winmdroot.Foundation.HRESULT)ex.HResult; 914 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IWebBrowser2*)Unsafe.AsPointer(ref this), Property, vtValue).ThrowOnFailure(); 920 private static winmdroot.Foundation.HRESULT GetProperty(IWebBrowser2* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue) 924 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 933 return (winmdroot.Foundation.HRESULT)ex.HResult; 940 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IWebBrowser2*)Unsafe.AsPointer(ref this), Property, &__retVal).ThrowOnFailure(); 947 private static winmdroot.Foundation.HRESULT get_Name(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* Name) 951 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 957 return winmdroot.Foundation.HRESULT.S_OK; 961 return (winmdroot.Foundation.HRESULT)ex.HResult; 970 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 978 private static winmdroot.Foundation.HRESULT get_HWND(IWebBrowser2* pThis, winmdroot.Foundation.SHANDLE_PTR* pHWND) 982 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 988 return winmdroot.Foundation.HRESULT.S_OK; 992 return (winmdroot.Foundation.HRESULT)ex.HResult; 1003 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.SHANDLE_PTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1011 private static winmdroot.Foundation.HRESULT get_FullName(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* FullName) 1015 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1021 return winmdroot.Foundation.HRESULT.S_OK; 1025 return (winmdroot.Foundation.HRESULT)ex.HResult; 1034 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1042 private static winmdroot.Foundation.HRESULT get_Path(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* Path) 1046 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1052 return winmdroot.Foundation.HRESULT.S_OK; 1056 return (winmdroot.Foundation.HRESULT)ex.HResult; 1065 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1073 private static winmdroot.Foundation.HRESULT get_Visible(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 1077 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1083 return winmdroot.Foundation.HRESULT.S_OK; 1087 return (winmdroot.Foundation.HRESULT)ex.HResult; 1096 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1101 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1108 private static winmdroot.Foundation.HRESULT put_Visible(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1112 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1118 return winmdroot.Foundation.HRESULT.S_OK; 1122 return (winmdroot.Foundation.HRESULT)ex.HResult; 1129 private static winmdroot.Foundation.HRESULT get_StatusBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 1133 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1139 return winmdroot.Foundation.HRESULT.S_OK; 1143 return (winmdroot.Foundation.HRESULT)ex.HResult; 1152 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1157 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1164 private static winmdroot.Foundation.HRESULT put_StatusBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1168 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1174 return winmdroot.Foundation.HRESULT.S_OK; 1178 return (winmdroot.Foundation.HRESULT)ex.HResult; 1185 private static winmdroot.Foundation.HRESULT get_StatusText(IWebBrowser2* pThis, winmdroot.Foundation.BSTR* StatusText) 1189 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1195 return winmdroot.Foundation.HRESULT.S_OK; 1199 return (winmdroot.Foundation.HRESULT)ex.HResult; 1208 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1213 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1220 private static winmdroot.Foundation.HRESULT put_StatusText(IWebBrowser2* pThis, winmdroot.Foundation.BSTR StatusText) 1224 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1230 return winmdroot.Foundation.HRESULT.S_OK; 1234 return (winmdroot.Foundation.HRESULT)ex.HResult; 1241 private static winmdroot.Foundation.HRESULT get_ToolBar(IWebBrowser2* pThis, int* Value) 1245 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1251 return winmdroot.Foundation.HRESULT.S_OK; 1255 return (winmdroot.Foundation.HRESULT)ex.HResult; 1269 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1274 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1281 private static winmdroot.Foundation.HRESULT put_ToolBar(IWebBrowser2* pThis, int Value) 1285 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1291 return winmdroot.Foundation.HRESULT.S_OK; 1295 return (winmdroot.Foundation.HRESULT)ex.HResult; 1302 private static winmdroot.Foundation.HRESULT get_MenuBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* Value) 1306 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1312 return winmdroot.Foundation.HRESULT.S_OK; 1316 return (winmdroot.Foundation.HRESULT)ex.HResult; 1325 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1330 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1337 private static winmdroot.Foundation.HRESULT put_MenuBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1341 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1347 return winmdroot.Foundation.HRESULT.S_OK; 1351 return (winmdroot.Foundation.HRESULT)ex.HResult; 1358 private static winmdroot.Foundation.HRESULT get_FullScreen(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbFullScreen) 1362 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1368 return winmdroot.Foundation.HRESULT.S_OK; 1372 return (winmdroot.Foundation.HRESULT)ex.HResult; 1381 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1386 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1393 private static winmdroot.Foundation.HRESULT put_FullScreen(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bFullScreen) 1397 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1403 return winmdroot.Foundation.HRESULT.S_OK; 1407 return (winmdroot.Foundation.HRESULT)ex.HResult; 1412 internal unsafe winmdroot.Foundation.HRESULT Navigate2(in winmdroot.System.Variant.VARIANT URL, winmdroot.System.Variant.VARIANT? Flags, winmdroot.System.Variant.VARIANT? TargetFrameName, winmdroot.System.Variant.VARIANT? PostData, winmdroot.System.Variant.VARIANT? Headers) 1420 winmdroot.Foundation.HRESULT __result = this.Navigate2(URLLocal, Flags.HasValue ? &FlagsLocal : null, TargetFrameName.HasValue ? &TargetFrameNameLocal : null, PostData.HasValue ? &PostDataLocal : null, Headers.HasValue ? &HeadersLocal : null); 1428 private static winmdroot.Foundation.HRESULT Navigate2(IWebBrowser2* pThis, winmdroot.System.Variant.VARIANT* 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) 1432 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1441 return (winmdroot.Foundation.HRESULT)ex.HResult; 1445 public unsafe winmdroot.Foundation.HRESULT Navigate2(winmdroot.System.Variant.VARIANT* 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) 1447 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[52])((IWebBrowser2*)Unsafe.AsPointer(ref this), URL, Flags, TargetFrameName, PostData, Headers); 1453 private static winmdroot.Foundation.HRESULT QueryStatusWB(IWebBrowser2* pThis, winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDF* pcmdf) 1457 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1466 return (winmdroot.Foundation.HRESULT)ex.HResult; 1473 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Ole.OLECMDID ,winmdroot.System.Ole.OLECMDF* ,winmdroot.Foundation.HRESULT>)lpVtbl[53])((IWebBrowser2*)Unsafe.AsPointer(ref this), cmdID, &__retVal).ThrowOnFailure(); 1478 internal unsafe winmdroot.Foundation.HRESULT ExecWB(winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDEXECOPT cmdexecopt, winmdroot.System.Variant.VARIANT? pvaIn, winmdroot.System.Variant.VARIANT* pvaOut) 1481 winmdroot.Foundation.HRESULT __result = this.ExecWB(cmdID, cmdexecopt, pvaIn.HasValue ? &pvaInLocal : null, pvaOut); 1488 private static winmdroot.Foundation.HRESULT ExecWB(IWebBrowser2* pThis, winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDEXECOPT cmdexecopt, [Optional] winmdroot.System.Variant.VARIANT* pvaIn, [Optional] winmdroot.System.Variant.VARIANT* pvaOut) 1492 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1501 return (winmdroot.Foundation.HRESULT)ex.HResult; 1505 public unsafe winmdroot.Foundation.HRESULT ExecWB(winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDEXECOPT cmdexecopt, [Optional] winmdroot.System.Variant.VARIANT* pvaIn, [Optional] winmdroot.System.Variant.VARIANT* pvaOut) 1507 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Ole.OLECMDID ,winmdroot.System.Ole.OLECMDEXECOPT ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[54])((IWebBrowser2*)Unsafe.AsPointer(ref this), cmdID, cmdexecopt, pvaIn, pvaOut); 1524 private static winmdroot.Foundation.HRESULT ShowBrowserBar(IWebBrowser2* pThis, winmdroot.System.Variant.VARIANT* pvaClsid, [Optional] winmdroot.System.Variant.VARIANT* pvarShow, [Optional] winmdroot.System.Variant.VARIANT* pvarSize) 1528 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1537 return (winmdroot.Foundation.HRESULT)ex.HResult; 1543 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[55])((IWebBrowser2*)Unsafe.AsPointer(ref this), pvaClsid, pvarShow, pvarSize).ThrowOnFailure(); 1547 internal unsafe winmdroot.Foundation.HRESULT get_ReadyState(out winmdroot.System.Ole.READYSTATE plReadyState) 1551 winmdroot.Foundation.HRESULT __result = this.get_ReadyState(plReadyStateLocal); 1559 private static winmdroot.Foundation.HRESULT get_ReadyState(IWebBrowser2* pThis, winmdroot.System.Ole.READYSTATE* plReadyState) 1563 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1572 return (winmdroot.Foundation.HRESULT)ex.HResult; 1576 public unsafe winmdroot.Foundation.HRESULT get_ReadyState(winmdroot.System.Ole.READYSTATE* plReadyState) 1578 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Ole.READYSTATE* ,winmdroot.Foundation.HRESULT>)lpVtbl[56])((IWebBrowser2*)Unsafe.AsPointer(ref this), plReadyState); 1582 internal unsafe winmdroot.Foundation.HRESULT get_Offline(out winmdroot.Foundation.VARIANT_BOOL pbOffline) 1586 winmdroot.Foundation.HRESULT __result = this.get_Offline(pbOfflineLocal); 1594 private static winmdroot.Foundation.HRESULT get_Offline(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbOffline) 1598 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1607 return (winmdroot.Foundation.HRESULT)ex.HResult; 1611 public unsafe winmdroot.Foundation.HRESULT get_Offline(winmdroot.Foundation.VARIANT_BOOL* pbOffline) 1613 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[57])((IWebBrowser2*)Unsafe.AsPointer(ref this), pbOffline); 1619 private static winmdroot.Foundation.HRESULT put_Offline(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bOffline) 1623 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1629 return winmdroot.Foundation.HRESULT.S_OK; 1633 return (winmdroot.Foundation.HRESULT)ex.HResult; 1641 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[58])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1646 internal unsafe winmdroot.Foundation.HRESULT get_Silent(out winmdroot.Foundation.VARIANT_BOOL pbSilent) 1650 winmdroot.Foundation.HRESULT __result = this.get_Silent(pbSilentLocal); 1658 private static winmdroot.Foundation.HRESULT get_Silent(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbSilent) 1662 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1671 return (winmdroot.Foundation.HRESULT)ex.HResult; 1675 public unsafe winmdroot.Foundation.HRESULT get_Silent(winmdroot.Foundation.VARIANT_BOOL* pbSilent) 1677 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[59])((IWebBrowser2*)Unsafe.AsPointer(ref this), pbSilent); 1683 private static winmdroot.Foundation.HRESULT put_Silent(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bSilent) 1687 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1696 return (winmdroot.Foundation.HRESULT)ex.HResult; 1700 public winmdroot.Foundation.HRESULT put_Silent(winmdroot.Foundation.VARIANT_BOOL bSilent) 1702 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[60])((IWebBrowser2*)Unsafe.AsPointer(ref this), bSilent); 1708 private static winmdroot.Foundation.HRESULT get_RegisterAsBrowser(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbRegister) 1712 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1718 return winmdroot.Foundation.HRESULT.S_OK; 1722 return (winmdroot.Foundation.HRESULT)ex.HResult; 1731 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[61])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1736 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[62])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1743 private static winmdroot.Foundation.HRESULT put_RegisterAsBrowser(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bRegister) 1747 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1753 return winmdroot.Foundation.HRESULT.S_OK; 1757 return (winmdroot.Foundation.HRESULT)ex.HResult; 1762 internal unsafe winmdroot.Foundation.HRESULT get_RegisterAsDropTarget(out winmdroot.Foundation.VARIANT_BOOL pbRegister) 1766 winmdroot.Foundation.HRESULT __result = this.get_RegisterAsDropTarget(pbRegisterLocal); 1774 private static winmdroot.Foundation.HRESULT get_RegisterAsDropTarget(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbRegister) 1778 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1787 return (winmdroot.Foundation.HRESULT)ex.HResult; 1791 public unsafe winmdroot.Foundation.HRESULT get_RegisterAsDropTarget(winmdroot.Foundation.VARIANT_BOOL* pbRegister) 1793 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[63])((IWebBrowser2*)Unsafe.AsPointer(ref this), pbRegister); 1799 private static winmdroot.Foundation.HRESULT put_RegisterAsDropTarget(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bRegister) 1803 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1812 return (winmdroot.Foundation.HRESULT)ex.HResult; 1816 public winmdroot.Foundation.HRESULT put_RegisterAsDropTarget(winmdroot.Foundation.VARIANT_BOOL bRegister) 1818 return ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[64])((IWebBrowser2*)Unsafe.AsPointer(ref this), bRegister); 1824 private static winmdroot.Foundation.HRESULT get_TheaterMode(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* pbRegister) 1828 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1834 return winmdroot.Foundation.HRESULT.S_OK; 1838 return (winmdroot.Foundation.HRESULT)ex.HResult; 1852 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[65])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1857 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[66])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1864 private static winmdroot.Foundation.HRESULT put_TheaterMode(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL bRegister) 1868 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1874 return winmdroot.Foundation.HRESULT.S_OK; 1878 return (winmdroot.Foundation.HRESULT)ex.HResult; 1885 private static winmdroot.Foundation.HRESULT get_AddressBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* Value) 1889 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1895 return winmdroot.Foundation.HRESULT.S_OK; 1899 return (winmdroot.Foundation.HRESULT)ex.HResult; 1908 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[67])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1913 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[68])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1920 private static winmdroot.Foundation.HRESULT put_AddressBar(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1924 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1930 return winmdroot.Foundation.HRESULT.S_OK; 1934 return (winmdroot.Foundation.HRESULT)ex.HResult; 1941 private static winmdroot.Foundation.HRESULT get_Resizable(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL* Value) 1945 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1951 return winmdroot.Foundation.HRESULT.S_OK; 1955 return (winmdroot.Foundation.HRESULT)ex.HResult; 1964 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[69])((IWebBrowser2*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1969 ((delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[70])((IWebBrowser2*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1976 private static winmdroot.Foundation.HRESULT put_Resizable(IWebBrowser2* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1980 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1986 return winmdroot.Foundation.HRESULT.S_OK; 1990 return (winmdroot.Foundation.HRESULT)ex.HResult; 1994 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1998 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 2015 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 2021 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 2023 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 2025 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 2027 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 2029 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> GoBack_8; 2031 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> GoForward_9; 2033 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> GoHome_10; 2035 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> GoSearch_11; 2037 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; 2039 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> Refresh_13; 2041 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Refresh2_14; 2043 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> Stop_15; 2045 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Application_16; 2047 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Parent_17; 2049 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Container_18; 2051 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Document_19; 2053 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_TopLevelContainer_20; 2055 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Type_21; 2057 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT> get_Left_22; 2059 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT> put_Left_23; 2061 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT> get_Top_24; 2063 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT> put_Top_25; 2065 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT> get_Width_26; 2067 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT> put_Width_27; 2069 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT> get_Height_28; 2071 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT> put_Height_29; 2073 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationName_30; 2075 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationURL_31; 2077 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Busy_32; 2079 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.HRESULT> Quit_33; 2081 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,int* ,winmdroot.Foundation.HRESULT> ClientToWindow_34; 2083 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> PutProperty_35; 2085 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetProperty_36; 2087 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_37; 2089 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.SHANDLE_PTR* ,winmdroot.Foundation.HRESULT> get_HWND_38; 2091 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_FullName_39; 2093 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Path_40; 2095 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Visible_41; 2097 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_Visible_42; 2099 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_StatusBar_43; 2101 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_StatusBar_44; 2103 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_StatusText_45; 2105 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_StatusText_46; 2107 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int* ,winmdroot.Foundation.HRESULT> get_ToolBar_47; 2109 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,int ,winmdroot.Foundation.HRESULT> put_ToolBar_48; 2111 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_MenuBar_49; 2113 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_MenuBar_50; 2115 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_FullScreen_51; 2117 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_FullScreen_52; 2119 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Navigate2_53; 2121 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Ole.OLECMDID ,winmdroot.System.Ole.OLECMDF* ,winmdroot.Foundation.HRESULT> QueryStatusWB_54; 2123 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Ole.OLECMDID ,winmdroot.System.Ole.OLECMDEXECOPT ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> ExecWB_55; 2125 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> ShowBrowserBar_56; 2127 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.System.Ole.READYSTATE* ,winmdroot.Foundation.HRESULT> get_ReadyState_57; 2129 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Offline_58; 2131 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_Offline_59; 2133 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Silent_60; 2135 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_Silent_61; 2137 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_RegisterAsBrowser_62; 2139 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_RegisterAsBrowser_63; 2141 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_RegisterAsDropTarget_64; 2143 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_RegisterAsDropTarget_65; 2145 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_TheaterMode_66; 2147 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_TheaterMode_67; 2149 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_AddressBar_68; 2151 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_AddressBar_69; 2153 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Resizable_70; 2155 internal delegate *unmanaged [Stdcall]<IWebBrowser2*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_Resizable_71; 2245 new winmdroot.Foundation.HRESULT GoBack(); 2248 new winmdroot.Foundation.HRESULT GoForward(); 2251 new winmdroot.Foundation.HRESULT GoHome(); 2254 new winmdroot.Foundation.HRESULT GoSearch(); 2257 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); 2260 new winmdroot.Foundation.HRESULT Refresh(); 2263 unsafe new winmdroot.Foundation.HRESULT Refresh2([Optional] winmdroot.System.Variant.VARIANT* Level); 2266 new winmdroot.Foundation.HRESULT Stop(); 2284 unsafe new winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp); 2321 unsafe new winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName); 2324 unsafe new winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL); 2327 unsafe new winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool); 2330 new winmdroot.Foundation.HRESULT Quit(); 2333 unsafe new winmdroot.Foundation.HRESULT ClientToWindow(int* pcx, int* pcy); 2336 new winmdroot.Foundation.HRESULT PutProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue); 2339 unsafe new winmdroot.Foundation.HRESULT GetProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue); 2398 unsafe winmdroot.Foundation.HRESULT Navigate2(winmdroot.System.Variant.VARIANT* 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); 2401 unsafe winmdroot.Foundation.HRESULT QueryStatusWB(winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDF* pcmdf); 2404 unsafe winmdroot.Foundation.HRESULT ExecWB(winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDEXECOPT cmdexecopt, [Optional] winmdroot.System.Variant.VARIANT* pvaIn, [Optional] winmdroot.System.Variant.VARIANT* pvaOut); 2407 unsafe winmdroot.Foundation.HRESULT ShowBrowserBar(winmdroot.System.Variant.VARIANT* pvaClsid, [Optional] winmdroot.System.Variant.VARIANT* pvarShow, [Optional] winmdroot.System.Variant.VARIANT* pvarSize); 2410 unsafe winmdroot.Foundation.HRESULT get_ReadyState(winmdroot.System.Ole.READYSTATE* plReadyState); 2413 unsafe winmdroot.Foundation.HRESULT get_Offline(winmdroot.Foundation.VARIANT_BOOL* pbOffline); 2421 unsafe winmdroot.Foundation.HRESULT get_Silent(winmdroot.Foundation.VARIANT_BOOL* pbSilent); 2424winmdroot.Foundation.HRESULT put_Silent(winmdroot.Foundation.VARIANT_BOOL bSilent); 2433 unsafe winmdroot.Foundation.HRESULT get_RegisterAsDropTarget(winmdroot.Foundation.VARIANT_BOOL* pbRegister); 2436winmdroot.Foundation.HRESULT put_RegisterAsDropTarget(winmdroot.Foundation.VARIANT_BOOL bRegister);
Windows.Win32.IWebBrowserApp.g.cs (291)
27 internal unsafe winmdroot.Foundation.HRESULT QueryInterface(in global::System.Guid riid, out void* ppvObject) 33 winmdroot.Foundation.HRESULT __result = this.QueryInterface(riidLocal, ppvObjectLocal); 39 public unsafe winmdroot.Foundation.HRESULT QueryInterface(global::System.Guid* riid, void** ppvObject) 41 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT>)lpVtbl[0])((IWebBrowserApp*)Unsafe.AsPointer(ref this), riid, ppvObject); 65 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[3])((IWebBrowserApp*)Unsafe.AsPointer(ref this), pctinfo).ThrowOnFailure(); 70 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT>)lpVtbl[4])((IWebBrowserApp*)Unsafe.AsPointer(ref this), iTInfo, lcid, ppTInfo).ThrowOnFailure(); 91 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[5])((IWebBrowserApp*)Unsafe.AsPointer(ref this), riid, rgszNames, cNames, lcid, rgDispId).ThrowOnFailure(); 108 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT>)lpVtbl[6])((IWebBrowserApp*)Unsafe.AsPointer(ref this), dispIdMember, riid, lcid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr).ThrowOnFailure(); 114 private static winmdroot.Foundation.HRESULT GoBack(IWebBrowserApp* pThis) 118 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 127 return (winmdroot.Foundation.HRESULT)ex.HResult; 133 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[7])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 139 private static winmdroot.Foundation.HRESULT GoForward(IWebBrowserApp* pThis) 143 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 152 return (winmdroot.Foundation.HRESULT)ex.HResult; 158 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[8])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 164 private static winmdroot.Foundation.HRESULT GoHome(IWebBrowserApp* pThis) 168 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 177 return (winmdroot.Foundation.HRESULT)ex.HResult; 183 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[9])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 189 private static winmdroot.Foundation.HRESULT GoSearch(IWebBrowserApp* pThis) 193 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 202 return (winmdroot.Foundation.HRESULT)ex.HResult; 208 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[10])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 224 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) 228 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 237 return (winmdroot.Foundation.HRESULT)ex.HResult; 243 ((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(); 249 private static winmdroot.Foundation.HRESULT Refresh(IWebBrowserApp* pThis) 253 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 262 return (winmdroot.Foundation.HRESULT)ex.HResult; 268 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[12])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 281 private static winmdroot.Foundation.HRESULT Refresh2(IWebBrowserApp* pThis, [Optional] winmdroot.System.Variant.VARIANT* Level) 285 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 294 return (winmdroot.Foundation.HRESULT)ex.HResult; 300 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[13])((IWebBrowserApp*)Unsafe.AsPointer(ref this), Level).ThrowOnFailure(); 306 private static winmdroot.Foundation.HRESULT Stop(IWebBrowserApp* pThis) 310 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 319 return (winmdroot.Foundation.HRESULT)ex.HResult; 325 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[14])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 331 private static winmdroot.Foundation.HRESULT get_Application(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 335 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 341 return winmdroot.Foundation.HRESULT.S_OK; 345 return (winmdroot.Foundation.HRESULT)ex.HResult; 354 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[15])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 362 private static winmdroot.Foundation.HRESULT get_Parent(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 366 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 372 return winmdroot.Foundation.HRESULT.S_OK; 376 return (winmdroot.Foundation.HRESULT)ex.HResult; 385 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[16])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 393 private static winmdroot.Foundation.HRESULT get_Container(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 397 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 403 return winmdroot.Foundation.HRESULT.S_OK; 407 return (winmdroot.Foundation.HRESULT)ex.HResult; 416 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[17])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 424 private static winmdroot.Foundation.HRESULT get_Document(IWebBrowserApp* pThis, winmdroot.System.Com.IDispatch** ppDisp) 428 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 437 return (winmdroot.Foundation.HRESULT)ex.HResult; 441 public unsafe winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp) 443 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT>)lpVtbl[18])((IWebBrowserApp*)Unsafe.AsPointer(ref this), ppDisp); 449 private static winmdroot.Foundation.HRESULT get_TopLevelContainer(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 453 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 459 return winmdroot.Foundation.HRESULT.S_OK; 463 return (winmdroot.Foundation.HRESULT)ex.HResult; 472 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[19])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 480 private static winmdroot.Foundation.HRESULT get_Type(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* Type) 484 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 490 return winmdroot.Foundation.HRESULT.S_OK; 494 return (winmdroot.Foundation.HRESULT)ex.HResult; 503 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[20])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 511 private static winmdroot.Foundation.HRESULT get_Left(IWebBrowserApp* pThis, int* pl) 515 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 521 return winmdroot.Foundation.HRESULT.S_OK; 525 return (winmdroot.Foundation.HRESULT)ex.HResult; 534 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[21])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 539 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[22])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 546 private static winmdroot.Foundation.HRESULT put_Left(IWebBrowserApp* pThis, int Left) 550 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 556 return winmdroot.Foundation.HRESULT.S_OK; 560 return (winmdroot.Foundation.HRESULT)ex.HResult; 567 private static winmdroot.Foundation.HRESULT get_Top(IWebBrowserApp* pThis, int* pl) 571 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 577 return winmdroot.Foundation.HRESULT.S_OK; 581 return (winmdroot.Foundation.HRESULT)ex.HResult; 590 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[23])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 595 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[24])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 602 private static winmdroot.Foundation.HRESULT put_Top(IWebBrowserApp* pThis, int Top) 606 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 612 return winmdroot.Foundation.HRESULT.S_OK; 616 return (winmdroot.Foundation.HRESULT)ex.HResult; 623 private static winmdroot.Foundation.HRESULT get_Width(IWebBrowserApp* pThis, int* pl) 627 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 633 return winmdroot.Foundation.HRESULT.S_OK; 637 return (winmdroot.Foundation.HRESULT)ex.HResult; 646 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[25])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 651 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[26])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 658 private static winmdroot.Foundation.HRESULT put_Width(IWebBrowserApp* pThis, int Width) 662 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 668 return winmdroot.Foundation.HRESULT.S_OK; 672 return (winmdroot.Foundation.HRESULT)ex.HResult; 679 private static winmdroot.Foundation.HRESULT get_Height(IWebBrowserApp* pThis, int* pl) 683 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 689 return winmdroot.Foundation.HRESULT.S_OK; 693 return (winmdroot.Foundation.HRESULT)ex.HResult; 702 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[27])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 707 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[28])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 714 private static winmdroot.Foundation.HRESULT put_Height(IWebBrowserApp* pThis, int Height) 718 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 724 return winmdroot.Foundation.HRESULT.S_OK; 728 return (winmdroot.Foundation.HRESULT)ex.HResult; 735 private static winmdroot.Foundation.HRESULT get_LocationName(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* LocationName) 739 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 748 return (winmdroot.Foundation.HRESULT)ex.HResult; 752 public unsafe winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName) 754 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[29])((IWebBrowserApp*)Unsafe.AsPointer(ref this), LocationName); 760 private static winmdroot.Foundation.HRESULT get_LocationURL(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* LocationURL) 764 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 773 return (winmdroot.Foundation.HRESULT)ex.HResult; 777 public unsafe winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL) 779 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[30])((IWebBrowserApp*)Unsafe.AsPointer(ref this), LocationURL); 783 internal unsafe winmdroot.Foundation.HRESULT get_Busy(out winmdroot.Foundation.VARIANT_BOOL pBool) 787 winmdroot.Foundation.HRESULT __result = this.get_Busy(pBoolLocal); 795 private static winmdroot.Foundation.HRESULT get_Busy(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 799 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 808 return (winmdroot.Foundation.HRESULT)ex.HResult; 812 public unsafe winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool) 814 return ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[31])((IWebBrowserApp*)Unsafe.AsPointer(ref this), pBool); 820 private static winmdroot.Foundation.HRESULT Quit(IWebBrowserApp* pThis) 824 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 833 return (winmdroot.Foundation.HRESULT)ex.HResult; 839 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT>)lpVtbl[32])((IWebBrowserApp*)Unsafe.AsPointer(ref this)).ThrowOnFailure(); 857 private static winmdroot.Foundation.HRESULT ClientToWindow(IWebBrowserApp* pThis, int* pcx, int* pcy) 861 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 870 return (winmdroot.Foundation.HRESULT)ex.HResult; 876 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[33])((IWebBrowserApp*)Unsafe.AsPointer(ref this), pcx, pcy).ThrowOnFailure(); 882 private static winmdroot.Foundation.HRESULT PutProperty(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue) 886 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 895 return (winmdroot.Foundation.HRESULT)ex.HResult; 901 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT>)lpVtbl[34])((IWebBrowserApp*)Unsafe.AsPointer(ref this), Property, vtValue).ThrowOnFailure(); 907 private static winmdroot.Foundation.HRESULT GetProperty(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue) 911 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 920 return (winmdroot.Foundation.HRESULT)ex.HResult; 927 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT>)lpVtbl[35])((IWebBrowserApp*)Unsafe.AsPointer(ref this), Property, &__retVal).ThrowOnFailure(); 934 private static winmdroot.Foundation.HRESULT get_Name(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* Name) 938 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 944 return winmdroot.Foundation.HRESULT.S_OK; 948 return (winmdroot.Foundation.HRESULT)ex.HResult; 957 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[36])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 965 private static winmdroot.Foundation.HRESULT get_HWND(IWebBrowserApp* pThis, winmdroot.Foundation.SHANDLE_PTR* pHWND) 969 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 975 return winmdroot.Foundation.HRESULT.S_OK; 979 return (winmdroot.Foundation.HRESULT)ex.HResult; 990 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.SHANDLE_PTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[37])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 998 private static winmdroot.Foundation.HRESULT get_FullName(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* FullName) 1002 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1008 return winmdroot.Foundation.HRESULT.S_OK; 1012 return (winmdroot.Foundation.HRESULT)ex.HResult; 1021 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[38])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1029 private static winmdroot.Foundation.HRESULT get_Path(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* Path) 1033 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1039 return winmdroot.Foundation.HRESULT.S_OK; 1043 return (winmdroot.Foundation.HRESULT)ex.HResult; 1052 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[39])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1060 private static winmdroot.Foundation.HRESULT get_Visible(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 1064 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1070 return winmdroot.Foundation.HRESULT.S_OK; 1074 return (winmdroot.Foundation.HRESULT)ex.HResult; 1083 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[40])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1088 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[41])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1095 private static winmdroot.Foundation.HRESULT put_Visible(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1099 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1105 return winmdroot.Foundation.HRESULT.S_OK; 1109 return (winmdroot.Foundation.HRESULT)ex.HResult; 1116 private static winmdroot.Foundation.HRESULT get_StatusBar(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* pBool) 1120 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1126 return winmdroot.Foundation.HRESULT.S_OK; 1130 return (winmdroot.Foundation.HRESULT)ex.HResult; 1139 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[42])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1144 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[43])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1151 private static winmdroot.Foundation.HRESULT put_StatusBar(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1155 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1161 return winmdroot.Foundation.HRESULT.S_OK; 1165 return (winmdroot.Foundation.HRESULT)ex.HResult; 1172 private static winmdroot.Foundation.HRESULT get_StatusText(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR* StatusText) 1176 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1182 return winmdroot.Foundation.HRESULT.S_OK; 1186 return (winmdroot.Foundation.HRESULT)ex.HResult; 1195 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT>)lpVtbl[44])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1200 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT>)lpVtbl[45])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1207 private static winmdroot.Foundation.HRESULT put_StatusText(IWebBrowserApp* pThis, winmdroot.Foundation.BSTR StatusText) 1211 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1217 return winmdroot.Foundation.HRESULT.S_OK; 1221 return (winmdroot.Foundation.HRESULT)ex.HResult; 1228 private static winmdroot.Foundation.HRESULT get_ToolBar(IWebBrowserApp* pThis, int* Value) 1232 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1238 return winmdroot.Foundation.HRESULT.S_OK; 1242 return (winmdroot.Foundation.HRESULT)ex.HResult; 1256 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT>)lpVtbl[46])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1261 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT>)lpVtbl[47])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1268 private static winmdroot.Foundation.HRESULT put_ToolBar(IWebBrowserApp* pThis, int Value) 1272 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1278 return winmdroot.Foundation.HRESULT.S_OK; 1282 return (winmdroot.Foundation.HRESULT)ex.HResult; 1289 private static winmdroot.Foundation.HRESULT get_MenuBar(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* Value) 1293 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1299 return winmdroot.Foundation.HRESULT.S_OK; 1303 return (winmdroot.Foundation.HRESULT)ex.HResult; 1312 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[48])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1317 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[49])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1324 private static winmdroot.Foundation.HRESULT put_MenuBar(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL Value) 1328 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1334 return winmdroot.Foundation.HRESULT.S_OK; 1338 return (winmdroot.Foundation.HRESULT)ex.HResult; 1345 private static winmdroot.Foundation.HRESULT get_FullScreen(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL* pbFullScreen) 1349 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1355 return winmdroot.Foundation.HRESULT.S_OK; 1359 return (winmdroot.Foundation.HRESULT)ex.HResult; 1368 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT>)lpVtbl[50])((IWebBrowserApp*)Unsafe.AsPointer(ref this), &__result).ThrowOnFailure(); 1373 ((delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT>)lpVtbl[51])((IWebBrowserApp*)Unsafe.AsPointer(ref this), value).ThrowOnFailure(); 1380 private static winmdroot.Foundation.HRESULT put_FullScreen(IWebBrowserApp* pThis, winmdroot.Foundation.VARIANT_BOOL bFullScreen) 1384 winmdroot.Foundation.HRESULT __hr = ComHelpers.UnwrapCCW(pThis, out Interface __object); 1390 return winmdroot.Foundation.HRESULT.S_OK; 1394 return (winmdroot.Foundation.HRESULT)ex.HResult; 1398 internal unsafe global::Windows.Win32.Foundation.HRESULT QueryInterface<T>(out T* ppv) 1402 var hr = this.QueryInterface(typeof(T).GUID, out void* pv); 1419 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,global::System.Guid* ,void** ,winmdroot.Foundation.HRESULT> QueryInterface_1; 1425 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,uint* ,winmdroot.Foundation.HRESULT> GetTypeInfoCount_4; 1427 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,uint ,uint ,winmdroot.System.Com.ITypeInfo** ,winmdroot.Foundation.HRESULT> GetTypeInfo_5; 1429 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,global::System.Guid* ,winmdroot.Foundation.PWSTR* ,uint ,uint ,int* ,winmdroot.Foundation.HRESULT> GetIDsOfNames_6; 1431 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,global::System.Guid* ,uint ,winmdroot.System.Com.DISPATCH_FLAGS ,winmdroot.System.Com.DISPPARAMS* ,winmdroot.System.Variant.VARIANT* ,winmdroot.System.Com.EXCEPINFO* ,uint* ,winmdroot.Foundation.HRESULT> Invoke_7; 1433 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> GoBack_8; 1435 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> GoForward_9; 1437 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> GoHome_10; 1439 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> GoSearch_11; 1441 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; 1443 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> Refresh_13; 1445 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> Refresh2_14; 1447 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> Stop_15; 1449 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Application_16; 1451 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Parent_17; 1453 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Container_18; 1455 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.System.Com.IDispatch** ,winmdroot.Foundation.HRESULT> get_Document_19; 1457 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_TopLevelContainer_20; 1459 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Type_21; 1461 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT> get_Left_22; 1463 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT> put_Left_23; 1465 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT> get_Top_24; 1467 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT> put_Top_25; 1469 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT> get_Width_26; 1471 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT> put_Width_27; 1473 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT> get_Height_28; 1475 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT> put_Height_29; 1477 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationName_30; 1479 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_LocationURL_31; 1481 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Busy_32; 1483 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.HRESULT> Quit_33; 1485 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,int* ,winmdroot.Foundation.HRESULT> ClientToWindow_34; 1487 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT ,winmdroot.Foundation.HRESULT> PutProperty_35; 1489 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.System.Variant.VARIANT* ,winmdroot.Foundation.HRESULT> GetProperty_36; 1491 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Name_37; 1493 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.SHANDLE_PTR* ,winmdroot.Foundation.HRESULT> get_HWND_38; 1495 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_FullName_39; 1497 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_Path_40; 1499 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_Visible_41; 1501 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_Visible_42; 1503 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_StatusBar_43; 1505 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_StatusBar_44; 1507 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR* ,winmdroot.Foundation.HRESULT> get_StatusText_45; 1509 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.BSTR ,winmdroot.Foundation.HRESULT> put_StatusText_46; 1511 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int* ,winmdroot.Foundation.HRESULT> get_ToolBar_47; 1513 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,int ,winmdroot.Foundation.HRESULT> put_ToolBar_48; 1515 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_MenuBar_49; 1517 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_MenuBar_50; 1519 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL* ,winmdroot.Foundation.HRESULT> get_FullScreen_51; 1521 internal delegate *unmanaged [Stdcall]<IWebBrowserApp*,winmdroot.Foundation.VARIANT_BOOL ,winmdroot.Foundation.HRESULT> put_FullScreen_52; 1591 new winmdroot.Foundation.HRESULT GoBack(); 1594 new winmdroot.Foundation.HRESULT GoForward(); 1597 new winmdroot.Foundation.HRESULT GoHome(); 1600 new winmdroot.Foundation.HRESULT GoSearch(); 1603 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); 1606 new winmdroot.Foundation.HRESULT Refresh(); 1609 unsafe new winmdroot.Foundation.HRESULT Refresh2([Optional] winmdroot.System.Variant.VARIANT* Level); 1612 new winmdroot.Foundation.HRESULT Stop(); 1630 unsafe new winmdroot.Foundation.HRESULT get_Document(winmdroot.System.Com.IDispatch** ppDisp); 1667 unsafe new winmdroot.Foundation.HRESULT get_LocationName(winmdroot.Foundation.BSTR* LocationName); 1670 unsafe new winmdroot.Foundation.HRESULT get_LocationURL(winmdroot.Foundation.BSTR* LocationURL); 1673 unsafe new winmdroot.Foundation.HRESULT get_Busy(winmdroot.Foundation.VARIANT_BOOL* pBool); 1676winmdroot.Foundation.HRESULT Quit(); 1679 unsafe winmdroot.Foundation.HRESULT ClientToWindow(int* pcx, int* pcy); 1682winmdroot.Foundation.HRESULT PutProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT vtValue); 1685 unsafe winmdroot.Foundation.HRESULT GetProperty(winmdroot.Foundation.BSTR Property, winmdroot.System.Variant.VARIANT* pvtValue);
Windows.Win32.PInvoke.api-ms-win-shcore-scaling-l1-1-1.dll.g.cs (4)
28 internal static unsafe winmdroot.Foundation.HRESULT GetProcessDpiAwareness(winmdroot.Foundation.HANDLE hprocess, out winmdroot.UI.HiDpi.PROCESS_DPI_AWARENESS value) 32 winmdroot.Foundation.HRESULT __result = PInvoke.GetProcessDpiAwareness(hprocess, valueLocal); 50 internal static extern unsafe winmdroot.Foundation.HRESULT GetProcessDpiAwareness(winmdroot.Foundation.HANDLE hprocess, winmdroot.UI.HiDpi.PROCESS_DPI_AWARENESS* value); 64 internal static extern winmdroot.Foundation.HRESULT SetProcessDpiAwareness(winmdroot.UI.HiDpi.PROCESS_DPI_AWARENESS value);
Windows.Win32.PInvoke.COMCTL32.dll.g.cs (4)
396 internal static extern unsafe winmdroot.Foundation.HRESULT ImageList_WriteEx(winmdroot.UI.Controls.HIMAGELIST himl, winmdroot.UI.Controls.IMAGE_LIST_WRITE_STREAM_FLAGS dwFlags, winmdroot.System.Com.IStream* pstm); 433 internal static unsafe winmdroot.Foundation.HRESULT TaskDialogIndirect(in winmdroot.UI.Controls.TASKDIALOGCONFIG pTaskConfig, int* pnButton, int* pnRadioButton, winmdroot.Foundation.BOOL* pfVerificationFlagChecked) 437 winmdroot.Foundation.HRESULT __result = PInvoke.TaskDialogIndirect(pTaskConfigLocal, pnButton, pnRadioButton, pfVerificationFlagChecked); 469 internal static extern unsafe winmdroot.Foundation.HRESULT TaskDialogIndirect(winmdroot.UI.Controls.TASKDIALOGCONFIG* pTaskConfig, [Optional] int* pnButton, [Optional] int* pnRadioButton, [Optional] winmdroot.Foundation.BOOL* pfVerificationFlagChecked);
Windows.Win32.PInvoke.dwmapi.dll.g.cs (6)
38 internal static unsafe winmdroot.Foundation.HRESULT DwmGetWindowAttribute(winmdroot.Foundation.HWND hwnd, winmdroot.Graphics.Dwm.DWMWINDOWATTRIBUTE dwAttribute, void* pvAttribute, uint cbAttribute) 40 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hwnd, (uint)dwAttribute, pvAttribute, cbAttribute); 44 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.Foundation.HWND hwnd, uint dwAttribute, void* pvAttribute, uint cbAttribute); 57 internal static unsafe winmdroot.Foundation.HRESULT DwmSetWindowAttribute(winmdroot.Foundation.HWND hwnd, winmdroot.Graphics.Dwm.DWMWINDOWATTRIBUTE dwAttribute, void* pvAttribute, uint cbAttribute) 59 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hwnd, (uint)dwAttribute, pvAttribute, cbAttribute); 63 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.Foundation.HWND hwnd, uint dwAttribute, void* pvAttribute, uint cbAttribute);
Windows.Win32.PInvoke.g.cs (120)
766 internal static readonly winmdroot.Foundation.HRESULT CLIPBRD_E_BAD_DATA = (winmdroot.Foundation.HRESULT)(-2147221037); 3120 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_UNEXPECTED = (winmdroot.Foundation.HRESULT)(-2145845247); 3122 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_UNEXPECTED_REDIRECTION = (winmdroot.Foundation.HRESULT)(-2145845245); 3124 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_UNEXPECTED_CLIENT_ERROR = (winmdroot.Foundation.HRESULT)(-2145845244); 3126 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_UNEXPECTED_SERVER_ERROR = (winmdroot.Foundation.HRESULT)(-2145845243); 3128 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_AMBIGUOUS = (winmdroot.Foundation.HRESULT)(-2145844948); 3130 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_MOVED = (winmdroot.Foundation.HRESULT)(-2145844947); 3132 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_REDIRECT = (winmdroot.Foundation.HRESULT)(-2145844946); 3134 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_REDIRECT_METHOD = (winmdroot.Foundation.HRESULT)(-2145844945); 3136 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_NOT_MODIFIED = (winmdroot.Foundation.HRESULT)(-2145844944); 3138 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_USE_PROXY = (winmdroot.Foundation.HRESULT)(-2145844943); 3140 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_REDIRECT_KEEP_VERB = (winmdroot.Foundation.HRESULT)(-2145844941); 3142 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_BAD_REQUEST = (winmdroot.Foundation.HRESULT)(-2145844848); 3144 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_DENIED = (winmdroot.Foundation.HRESULT)(-2145844847); 3146 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_PAYMENT_REQ = (winmdroot.Foundation.HRESULT)(-2145844846); 3148 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_FORBIDDEN = (winmdroot.Foundation.HRESULT)(-2145844845); 3150 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_NOT_FOUND = (winmdroot.Foundation.HRESULT)(-2145844844); 3152 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_BAD_METHOD = (winmdroot.Foundation.HRESULT)(-2145844843); 3154 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_NONE_ACCEPTABLE = (winmdroot.Foundation.HRESULT)(-2145844842); 3156 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_PROXY_AUTH_REQ = (winmdroot.Foundation.HRESULT)(-2145844841); 3158 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_REQUEST_TIMEOUT = (winmdroot.Foundation.HRESULT)(-2145844840); 3160 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_CONFLICT = (winmdroot.Foundation.HRESULT)(-2145844839); 3162 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_GONE = (winmdroot.Foundation.HRESULT)(-2145844838); 3164 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_LENGTH_REQUIRED = (winmdroot.Foundation.HRESULT)(-2145844837); 3166 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_PRECOND_FAILED = (winmdroot.Foundation.HRESULT)(-2145844836); 3168 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_REQUEST_TOO_LARGE = (winmdroot.Foundation.HRESULT)(-2145844835); 3170 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_URI_TOO_LONG = (winmdroot.Foundation.HRESULT)(-2145844834); 3172 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_UNSUPPORTED_MEDIA = (winmdroot.Foundation.HRESULT)(-2145844833); 3174 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_RANGE_NOT_SATISFIABLE = (winmdroot.Foundation.HRESULT)(-2145844832); 3176 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_EXPECTATION_FAILED = (winmdroot.Foundation.HRESULT)(-2145844831); 3178 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_SERVER_ERROR = (winmdroot.Foundation.HRESULT)(-2145844748); 3180 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_NOT_SUPPORTED = (winmdroot.Foundation.HRESULT)(-2145844747); 3182 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_BAD_GATEWAY = (winmdroot.Foundation.HRESULT)(-2145844746); 3184 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_SERVICE_UNAVAIL = (winmdroot.Foundation.HRESULT)(-2145844745); 3186 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_GATEWAY_TIMEOUT = (winmdroot.Foundation.HRESULT)(-2145844744); 3188 internal static readonly winmdroot.Foundation.HRESULT HTTP_E_STATUS_VERSION_NOT_SUP = (winmdroot.Foundation.HRESULT)(-2145844743); 4547 internal static readonly winmdroot.Foundation.HRESULT S_OK = (winmdroot.Foundation.HRESULT)(0); 7300 internal static readonly winmdroot.Foundation.HRESULT REGDB_E_CLASSNOTREG = (winmdroot.Foundation.HRESULT)(-2147221164); 8525 internal static readonly winmdroot.Foundation.HRESULT TBS_E_INTERNAL_ERROR = (winmdroot.Foundation.HRESULT)(-2144845823); 8527 internal static readonly winmdroot.Foundation.HRESULT TBS_E_BAD_PARAMETER = (winmdroot.Foundation.HRESULT)(-2144845822); 8529 internal static readonly winmdroot.Foundation.HRESULT TBS_E_INVALID_OUTPUT_POINTER = (winmdroot.Foundation.HRESULT)(-2144845821); 8531 internal static readonly winmdroot.Foundation.HRESULT TBS_E_INVALID_CONTEXT = (winmdroot.Foundation.HRESULT)(-2144845820); 8533 internal static readonly winmdroot.Foundation.HRESULT TBS_E_INSUFFICIENT_BUFFER = (winmdroot.Foundation.HRESULT)(-2144845819); 8535 internal static readonly winmdroot.Foundation.HRESULT TBS_E_IOERROR = (winmdroot.Foundation.HRESULT)(-2144845818); 8537 internal static readonly winmdroot.Foundation.HRESULT TBS_E_INVALID_CONTEXT_PARAM = (winmdroot.Foundation.HRESULT)(-2144845817); 8539 internal static readonly winmdroot.Foundation.HRESULT TBS_E_SERVICE_NOT_RUNNING = (winmdroot.Foundation.HRESULT)(-2144845816); 8541 internal static readonly winmdroot.Foundation.HRESULT TBS_E_TOO_MANY_TBS_CONTEXTS = (winmdroot.Foundation.HRESULT)(-2144845815); 8543 internal static readonly winmdroot.Foundation.HRESULT TBS_E_TOO_MANY_RESOURCES = (winmdroot.Foundation.HRESULT)(-2144845814); 8545 internal static readonly winmdroot.Foundation.HRESULT TBS_E_SERVICE_START_PENDING = (winmdroot.Foundation.HRESULT)(-2144845813); 8547 internal static readonly winmdroot.Foundation.HRESULT TBS_E_PPI_NOT_SUPPORTED = (winmdroot.Foundation.HRESULT)(-2144845812); 8549 internal static readonly winmdroot.Foundation.HRESULT TBS_E_COMMAND_CANCELED = (winmdroot.Foundation.HRESULT)(-2144845811); 8551 internal static readonly winmdroot.Foundation.HRESULT TBS_E_BUFFER_TOO_LARGE = (winmdroot.Foundation.HRESULT)(-2144845810); 8553 internal static readonly winmdroot.Foundation.HRESULT TBS_E_TPM_NOT_FOUND = (winmdroot.Foundation.HRESULT)(-2144845809); 8555 internal static readonly winmdroot.Foundation.HRESULT TBS_E_SERVICE_DISABLED = (winmdroot.Foundation.HRESULT)(-2144845808); 8557 internal static readonly winmdroot.Foundation.HRESULT TBS_E_NO_EVENT_LOG = (winmdroot.Foundation.HRESULT)(-2144845807); 8559 internal static readonly winmdroot.Foundation.HRESULT TBS_E_ACCESS_DENIED = (winmdroot.Foundation.HRESULT)(-2144845806); 8561 internal static readonly winmdroot.Foundation.HRESULT TBS_E_PROVISIONING_NOT_ALLOWED = (winmdroot.Foundation.HRESULT)(-2144845805); 8563 internal static readonly winmdroot.Foundation.HRESULT TBS_E_PPI_FUNCTION_UNSUPPORTED = (winmdroot.Foundation.HRESULT)(-2144845804); 8565 internal static readonly winmdroot.Foundation.HRESULT TBS_E_OWNERAUTH_NOT_FOUND = (winmdroot.Foundation.HRESULT)(-2144845803); 8567 internal static readonly winmdroot.Foundation.HRESULT TBS_E_PROVISIONING_INCOMPLETE = (winmdroot.Foundation.HRESULT)(-2144845802);
Windows.Win32.PInvoke.OLE32.dll.g.cs (16)
28 internal static unsafe winmdroot.Foundation.HRESULT CoGetClassObject(in global::System.Guid rclsid, winmdroot.System.Com.CLSCTX dwClsContext, void* pvReserved, in global::System.Guid riid, out void* ppv) 36 winmdroot.Foundation.HRESULT __result = PInvoke.CoGetClassObject(rclsidLocal, dwClsContext, pvReserved, riidLocal, ppvLocal); 62 internal static unsafe winmdroot.Foundation.HRESULT CoGetClassObject(global::System.Guid* rclsid, winmdroot.System.Com.CLSCTX dwClsContext, [Optional] void* pvReserved, global::System.Guid* riid, void** ppv) 64 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(rclsid, (uint)dwClsContext, pvReserved, riid, ppv); 68 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(global::System.Guid* rclsid, uint dwClsContext, [Optional] void* pvReserved, global::System.Guid* riid, void** ppv); 81 internal static extern unsafe winmdroot.Foundation.HRESULT CoRegisterMessageFilter([Optional] winmdroot.Media.Audio.IMessageFilter* lpMessageFilter, [Optional] winmdroot.Media.Audio.IMessageFilter** lplpMessageFilter); 98 internal static extern unsafe winmdroot.Foundation.HRESULT CreateILockBytesOnHGlobal(winmdroot.Foundation.HGLOBAL hGlobal, winmdroot.Foundation.BOOL fDeleteOnRelease, winmdroot.System.Com.StructuredStorage.ILockBytes** pplkbyt); 106 internal static extern unsafe winmdroot.Foundation.HRESULT CreateOleAdviseHolder(winmdroot.System.Ole.IOleAdviseHolder** ppOAHolder); 121 internal static extern unsafe winmdroot.Foundation.HRESULT GetHGlobalFromILockBytes(winmdroot.System.Com.StructuredStorage.ILockBytes* plkbyt, winmdroot.Foundation.HGLOBAL* phglobal); 153 internal static unsafe winmdroot.Foundation.HRESULT ReadClassStg(winmdroot.System.Com.StructuredStorage.IStorage* pStg, out global::System.Guid pclsid) 157 winmdroot.Foundation.HRESULT __result = PInvoke.ReadClassStg(pStg, pclsidLocal); 177 internal static extern unsafe winmdroot.Foundation.HRESULT ReadClassStg(winmdroot.System.Com.StructuredStorage.IStorage* pStg, global::System.Guid* pclsid); 200 internal static extern unsafe winmdroot.Foundation.HRESULT StgCreateDocfileOnILockBytes(winmdroot.System.Com.StructuredStorage.ILockBytes* plkbyt, winmdroot.System.Com.STGM grfMode, uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstgOpen); 204 internal static unsafe winmdroot.Foundation.HRESULT StgOpenStorageOnILockBytes(winmdroot.System.Com.StructuredStorage.ILockBytes* plkbyt, winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, ushort** snbExclude, winmdroot.System.Com.StructuredStorage.IStorage** ppstgOpen) 206 winmdroot.Foundation.HRESULT __result = PInvoke.StgOpenStorageOnILockBytes(plkbyt, pstgPriority, grfMode, snbExclude, default, ppstgOpen); 234 internal static extern unsafe winmdroot.Foundation.HRESULT StgOpenStorageOnILockBytes(winmdroot.System.Com.StructuredStorage.ILockBytes* plkbyt, [Optional] winmdroot.System.Com.StructuredStorage.IStorage* pstgPriority, winmdroot.System.Com.STGM grfMode, [Optional] ushort** snbExclude, uint reserved, winmdroot.System.Com.StructuredStorage.IStorage** ppstgOpen);
Windows.Win32.PInvoke.OLEACC.dll.g.cs (3)
28 internal static unsafe winmdroot.Foundation.HRESULT CreateStdAccessibleObject(winmdroot.Foundation.HWND hwnd, int idObject, in global::System.Guid riid, out void* ppvObject) 34 winmdroot.Foundation.HRESULT __result = PInvoke.CreateStdAccessibleObject(hwnd, idObject, riidLocal, ppvObjectLocal); 66 internal static extern unsafe winmdroot.Foundation.HRESULT CreateStdAccessibleObject(winmdroot.Foundation.HWND hwnd, int idObject, global::System.Guid* riid, void** ppvObject);
Windows.Win32.PInvoke.OLEAUT32.dll.g.cs (16)
38 internal static extern unsafe winmdroot.Foundation.HRESULT GetErrorInfo(uint dwReserved, winmdroot.System.Com.IErrorInfo** pperrinfo); 41 internal static unsafe winmdroot.Foundation.HRESULT LoadTypeLib(string szFile, winmdroot.System.Com.ITypeLib** pptlib) 45 winmdroot.Foundation.HRESULT __result = PInvoke.LoadTypeLib(szFileLocal, pptlib); 63 internal static extern unsafe winmdroot.Foundation.HRESULT LoadTypeLib(winmdroot.Foundation.PCWSTR szFile, winmdroot.System.Com.ITypeLib** pptlib); 67 internal static unsafe winmdroot.Foundation.HRESULT OleCreateFontIndirect(in winmdroot.System.Ole.FONTDESC lpFontDesc, in global::System.Guid riid, out void* lplpvObj) 75 winmdroot.Foundation.HRESULT __result = PInvoke.OleCreateFontIndirect(lpFontDescLocal, riidLocal, lplpvObjLocal); 95 internal static extern unsafe winmdroot.Foundation.HRESULT OleCreateFontIndirect(winmdroot.System.Ole.FONTDESC* lpFontDesc, global::System.Guid* riid, void** lplpvObj); 99 internal static unsafe winmdroot.Foundation.HRESULT OleCreatePropertyFrame(winmdroot.Foundation.HWND hwndOwner, uint x, uint y, string lpszCaption, uint cObjects, winmdroot.System.Com.IUnknown** ppUnk, uint cPages, in global::System.Guid pPageClsID, uint lcid) 105 winmdroot.Foundation.HRESULT __result = PInvoke.OleCreatePropertyFrame(hwndOwner, x, y, lpszCaptionLocal, cObjects, ppUnk, cPages, pPageClsIDLocal, lcid, default, default); 133 internal static extern unsafe winmdroot.Foundation.HRESULT OleCreatePropertyFrame(winmdroot.Foundation.HWND hwndOwner, uint x, uint y, winmdroot.Foundation.PCWSTR lpszCaption, uint cObjects, winmdroot.System.Com.IUnknown** ppUnk, uint cPages, global::System.Guid* pPageClsID, uint lcid, uint dwReserved, void* pvReserved); 137 internal static unsafe winmdroot.Foundation.HRESULT OleCreatePropertyFrameIndirect(in winmdroot.System.Ole.OCPFIPARAMS lpParams) 141 winmdroot.Foundation.HRESULT __result = PInvoke.OleCreatePropertyFrameIndirect(lpParamsLocal); 159 internal static extern unsafe winmdroot.Foundation.HRESULT OleCreatePropertyFrameIndirect(winmdroot.System.Ole.OCPFIPARAMS* lpParams); 162 internal static unsafe winmdroot.Foundation.HRESULT VarFormat(in winmdroot.System.Variant.VARIANT pvarIn, winmdroot.Foundation.PWSTR pstrFormat, winmdroot.System.Ole.VARFORMAT_FIRST_DAY iFirstDay, winmdroot.System.Ole.VARFORMAT_FIRST_WEEK iFirstWeek, uint dwFlags, winmdroot.Foundation.BSTR* pbstrOut) 166 winmdroot.Foundation.HRESULT __result = PInvoke.VarFormat(pvarInLocal, pstrFormat, iFirstDay, iFirstWeek, dwFlags, pbstrOut); 193 internal static extern unsafe winmdroot.Foundation.HRESULT VarFormat(winmdroot.System.Variant.VARIANT* pvarIn, winmdroot.Foundation.PWSTR pstrFormat, winmdroot.System.Ole.VARFORMAT_FIRST_DAY iFirstDay, winmdroot.System.Ole.VARFORMAT_FIRST_WEEK iFirstWeek, uint dwFlags, winmdroot.Foundation.BSTR* pbstrOut);
Windows.Win32.PInvoke.SHELL32.dll.g.cs (17)
100 internal static unsafe winmdroot.Foundation.HRESULT SHCreateItemFromParsingName(string pszPath, winmdroot.System.Com.IBindCtx* pbc, in global::System.Guid riid, out void* ppv) 108 winmdroot.Foundation.HRESULT __result = PInvoke.SHCreateItemFromParsingName(pszPathLocal, pbc, riidLocal, ppvLocal); 140 internal static extern unsafe winmdroot.Foundation.HRESULT SHCreateItemFromParsingName(winmdroot.Foundation.PCWSTR pszPath, [Optional] winmdroot.System.Com.IBindCtx* pbc, global::System.Guid* riid, void** ppv); 144 internal static unsafe winmdroot.Foundation.HRESULT SHCreateShellItem(winmdroot.UI.Shell.Common.ITEMIDLIST? pidlParent, winmdroot.UI.Shell.IShellFolder* psfParent, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl, winmdroot.UI.Shell.IShellItem** ppsi) 149 winmdroot.Foundation.HRESULT __result = PInvoke.SHCreateShellItem(pidlParent.HasValue ? &pidlParentLocal : null, psfParent, pidlLocal, ppsi); 182 internal static extern unsafe winmdroot.Foundation.HRESULT SHCreateShellItem([Optional] winmdroot.UI.Shell.Common.ITEMIDLIST* pidlParent, [Optional] winmdroot.UI.Shell.IShellFolder* psfParent, winmdroot.UI.Shell.Common.ITEMIDLIST* pidl, winmdroot.UI.Shell.IShellItem** ppsi); 245 internal static unsafe winmdroot.Foundation.HRESULT SHGetKnownFolderPath(in global::System.Guid rfid, winmdroot.UI.Shell.KNOWN_FOLDER_FLAG dwFlags, winmdroot.Foundation.HANDLE hToken, out winmdroot.Foundation.PWSTR ppszPath) 251 winmdroot.Foundation.HRESULT __result = PInvoke.SHGetKnownFolderPath(rfidLocal, dwFlags, hToken, ppszPathLocal); 281 internal static unsafe winmdroot.Foundation.HRESULT SHGetKnownFolderPath(global::System.Guid* rfid, winmdroot.UI.Shell.KNOWN_FOLDER_FLAG dwFlags, winmdroot.Foundation.HANDLE hToken, winmdroot.Foundation.PWSTR* ppszPath) 283 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(rfid, (uint)dwFlags, hToken, ppszPath); 287 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(global::System.Guid* rfid, uint dwFlags, winmdroot.Foundation.HANDLE hToken, winmdroot.Foundation.PWSTR* ppszPath); 332 internal static unsafe winmdroot.Foundation.HRESULT SHGetSpecialFolderLocation(int csidl, out winmdroot.UI.Shell.Common.ITEMIDLIST* ppidl) 336 winmdroot.Foundation.HRESULT __result = PInvoke.SHGetSpecialFolderLocation(default, csidl, ppidlLocal); 362 internal static extern unsafe winmdroot.Foundation.HRESULT SHGetSpecialFolderLocation(winmdroot.Foundation.HWND hwnd, int csidl, winmdroot.UI.Shell.Common.ITEMIDLIST** ppidl); 366 internal static unsafe winmdroot.Foundation.HRESULT SHParseDisplayName(string pszName, winmdroot.System.Com.IBindCtx* pbc, out winmdroot.UI.Shell.Common.ITEMIDLIST* ppidl, uint sfgaoIn, uint* psfgaoOut) 372 winmdroot.Foundation.HRESULT __result = PInvoke.SHParseDisplayName(pszNameLocal, pbc, ppidlLocal, sfgaoIn, psfgaoOut); 405 internal static extern unsafe winmdroot.Foundation.HRESULT SHParseDisplayName(winmdroot.Foundation.PCWSTR pszName, [Optional] winmdroot.System.Com.IBindCtx* pbc, winmdroot.UI.Shell.Common.ITEMIDLIST** ppidl, uint sfgaoIn, [Optional] uint* psfgaoOut);
Windows.Win32.PInvoke.SHLWAPI.dll.g.cs (1)
44 internal static extern winmdroot.Foundation.HRESULT SHAutoComplete(winmdroot.Foundation.HWND hwndEdit, winmdroot.UI.Shell.SHELL_AUTOCOMPLETE_FLAGS dwFlags);
Windows.Win32.PInvoke.UIAutomationCore.dll.g.cs (9)
52 internal static extern unsafe winmdroot.Foundation.HRESULT UiaDisconnectProvider(winmdroot.UI.Accessibility.IRawElementProviderSimple* pProvider); 67 internal static extern unsafe winmdroot.Foundation.HRESULT UiaGetReservedNotSupportedValue(winmdroot.System.Com.IUnknown** punkNotSupportedValue); 84 internal static extern unsafe winmdroot.Foundation.HRESULT UiaHostProviderFromHwnd(winmdroot.Foundation.HWND hwnd, winmdroot.UI.Accessibility.IRawElementProviderSimple** ppProvider); 101 internal static extern unsafe winmdroot.Foundation.HRESULT UiaRaiseAutomationEvent(winmdroot.UI.Accessibility.IRawElementProviderSimple* pProvider, winmdroot.UI.Accessibility.UIA_EVENT_ID id); 128 internal static extern unsafe winmdroot.Foundation.HRESULT UiaRaiseAutomationPropertyChangedEvent(winmdroot.UI.Accessibility.IRawElementProviderSimple* pProvider, winmdroot.UI.Accessibility.UIA_PROPERTY_ID id, winmdroot.System.Variant.VARIANT oldValue, winmdroot.System.Variant.VARIANT newValue); 140 internal static extern unsafe winmdroot.Foundation.HRESULT UiaRaiseNotificationEvent(winmdroot.UI.Accessibility.IRawElementProviderSimple* provider, winmdroot.UI.Accessibility.NotificationKind notificationKind, winmdroot.UI.Accessibility.NotificationProcessing notificationProcessing, winmdroot.Foundation.BSTR displayString, winmdroot.Foundation.BSTR activityId); 144 internal static unsafe winmdroot.Foundation.HRESULT UiaRaiseStructureChangedEvent(winmdroot.UI.Accessibility.IRawElementProviderSimple* pProvider, winmdroot.UI.Accessibility.StructureChangeType structureChangeType, ref int pRuntimeId, int cRuntimeIdLen) 148 winmdroot.Foundation.HRESULT __result = PInvoke.UiaRaiseStructureChangedEvent(pProvider, structureChangeType, pRuntimeIdLocal, cRuntimeIdLen); 176 internal static extern unsafe winmdroot.Foundation.HRESULT UiaRaiseStructureChangedEvent(winmdroot.UI.Accessibility.IRawElementProviderSimple* pProvider, winmdroot.UI.Accessibility.StructureChangeType structureChangeType, int* pRuntimeId, int cRuntimeIdLen);
Windows.Win32.PInvoke.UXTHEME.dll.g.cs (83)
37 internal static extern winmdroot.Foundation.HRESULT CloseThemeData(winmdroot.UI.Controls.HTHEME hTheme); 41 internal static unsafe winmdroot.Foundation.HRESULT DrawThemeBackground(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, in winmdroot.Foundation.RECT pRect, winmdroot.Foundation.RECT? pClipRect) 46 winmdroot.Foundation.HRESULT __result = PInvoke.DrawThemeBackground(hTheme, hdc, iPartId, iStateId, pRectLocal, pClipRect.HasValue ? &pClipRectLocal : null); 82 internal static extern unsafe winmdroot.Foundation.HRESULT DrawThemeBackground(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Foundation.RECT* pRect, [Optional] winmdroot.Foundation.RECT* pClipRect); 86 internal static unsafe winmdroot.Foundation.HRESULT DrawThemeEdge(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, in winmdroot.Foundation.RECT pDestRect, winmdroot.Graphics.Gdi.DRAWEDGE_FLAGS uEdge, winmdroot.Graphics.Gdi.DRAW_EDGE_FLAGS uFlags, winmdroot.Foundation.RECT* pContentRect) 90 winmdroot.Foundation.HRESULT __result = PInvoke.DrawThemeEdge(hTheme, hdc, iPartId, iStateId, pDestRectLocal, uEdge, uFlags, pContentRect); 134 internal static extern unsafe winmdroot.Foundation.HRESULT DrawThemeEdge(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Foundation.RECT* pDestRect, winmdroot.Graphics.Gdi.DRAWEDGE_FLAGS uEdge, winmdroot.Graphics.Gdi.DRAW_EDGE_FLAGS uFlags, [Optional] winmdroot.Foundation.RECT* pContentRect); 138 internal static unsafe winmdroot.Foundation.HRESULT DrawThemeParentBackground(winmdroot.Foundation.HWND hwnd, winmdroot.Graphics.Gdi.HDC hdc, winmdroot.Foundation.RECT? prc) 141 winmdroot.Foundation.HRESULT __result = PInvoke.DrawThemeParentBackground(hwnd, hdc, prc.HasValue ? &prcLocal : null); 166 internal static extern unsafe winmdroot.Foundation.HRESULT DrawThemeParentBackground(winmdroot.Foundation.HWND hwnd, winmdroot.Graphics.Gdi.HDC hdc, [Optional] winmdroot.Foundation.RECT* prc); 170 internal static unsafe winmdroot.Foundation.HRESULT DrawThemeText(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, string pszText, int cchText, winmdroot.Graphics.Gdi.DRAW_TEXT_FORMAT dwTextFlags, uint dwTextFlags2, in winmdroot.Foundation.RECT pRect) 176 winmdroot.Foundation.HRESULT __result = PInvoke.DrawThemeText(hTheme, hdc, iPartId, iStateId, pszTextLocal, cchText, dwTextFlags, dwTextFlags2, pRectLocal); 225 internal static extern unsafe winmdroot.Foundation.HRESULT DrawThemeText(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Foundation.PCWSTR pszText, int cchText, winmdroot.Graphics.Gdi.DRAW_TEXT_FORMAT dwTextFlags, uint dwTextFlags2, winmdroot.Foundation.RECT* pRect); 260 internal static extern winmdroot.Foundation.HRESULT GetCurrentThemeName(winmdroot.Foundation.PWSTR pszThemeFileName, int cchMaxNameChars, winmdroot.Foundation.PWSTR pszColorBuff, int cchMaxColorChars, winmdroot.Foundation.PWSTR pszSizeBuff, int cchMaxSizeChars); 277 internal static unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundContentRect(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, in winmdroot.Foundation.RECT pBoundingRect, out winmdroot.Foundation.RECT pContentRect) 283 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeBackgroundContentRect(hTheme, hdc, iPartId, iStateId, pBoundingRectLocal, pContentRectLocal); 320 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundContentRect(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Foundation.RECT* pBoundingRect, winmdroot.Foundation.RECT* pContentRect); 324 internal static unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundExtent(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, in winmdroot.Foundation.RECT pContentRect, out winmdroot.Foundation.RECT pExtentRect) 330 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeBackgroundExtent(hTheme, hdc, iPartId, iStateId, pContentRectLocal, pExtentRectLocal); 367 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundExtent(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Foundation.RECT* pContentRect, winmdroot.Foundation.RECT* pExtentRect); 371 internal static unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundRegion(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, in winmdroot.Foundation.RECT pRect, winmdroot.Graphics.Gdi.HRGN* pRegion) 375 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeBackgroundRegion(hTheme, hdc, iPartId, iStateId, pRectLocal, pRegion); 411 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemeBackgroundRegion(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Foundation.RECT* pRect, winmdroot.Graphics.Gdi.HRGN* pRegion); 415 internal static unsafe winmdroot.Foundation.HRESULT GetThemeBool(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, out winmdroot.Foundation.BOOL pfVal) 419 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeBool(hTheme, iPartId, iStateId, iPropId, pfValLocal); 449 internal static unsafe winmdroot.Foundation.HRESULT GetThemeBool(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, winmdroot.Foundation.BOOL* pfVal) 451 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, pfVal); 455 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, winmdroot.Foundation.BOOL* pfVal); 460 internal static unsafe winmdroot.Foundation.HRESULT GetThemeColor(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, out winmdroot.Foundation.COLORREF pColor) 464 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeColor(hTheme, iPartId, iStateId, iPropId, pColorLocal); 497 internal static unsafe winmdroot.Foundation.HRESULT GetThemeColor(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, winmdroot.Foundation.COLORREF* pColor) 499 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, pColor); 503 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, winmdroot.Foundation.COLORREF* pColor); 508 internal static unsafe winmdroot.Foundation.HRESULT GetThemeDocumentationProperty(string pszThemeName, string pszPropertyName, winmdroot.Foundation.PWSTR pszValueBuff, int cchMaxValChars) 514 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeDocumentationProperty(pszThemeNameLocal, pszPropertyNameLocal, pszValueBuff, cchMaxValChars); 540 internal static extern winmdroot.Foundation.HRESULT GetThemeDocumentationProperty(winmdroot.Foundation.PCWSTR pszThemeName, winmdroot.Foundation.PCWSTR pszPropertyName, winmdroot.Foundation.PWSTR pszValueBuff, int cchMaxValChars); 544 internal static unsafe winmdroot.Foundation.HRESULT GetThemeEnumValue(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, out int piVal) 548 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeEnumValue(hTheme, iPartId, iStateId, iPropId, piValLocal); 581 internal static unsafe winmdroot.Foundation.HRESULT GetThemeEnumValue(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, int* piVal) 583 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, piVal); 587 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, int* piVal); 622 internal static winmdroot.Foundation.HRESULT GetThemeFilename(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, winmdroot.Foundation.PWSTR pszThemeFileName, int cchMaxBuffChars) 624 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, pszThemeFileName, cchMaxBuffChars); 628 static extern winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, winmdroot.Foundation.PWSTR pszThemeFileName, int cchMaxBuffChars); 633 internal static unsafe winmdroot.Foundation.HRESULT GetThemeFont(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, int iPropId, out winmdroot.Graphics.Gdi.LOGFONTW pFont) 637 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeFont(hTheme, hdc, iPartId, iStateId, iPropId, pFontLocal); 676 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemeFont(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, int iPropId, winmdroot.Graphics.Gdi.LOGFONTW* pFont); 680 internal static unsafe winmdroot.Foundation.HRESULT GetThemeInt(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, out int piVal) 684 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeInt(hTheme, iPartId, iStateId, iPropId, piValLocal); 717 internal static unsafe winmdroot.Foundation.HRESULT GetThemeInt(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, int* piVal) 719 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, piVal); 723 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, int* piVal); 728 internal static unsafe winmdroot.Foundation.HRESULT GetThemeMargins(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, winmdroot.Foundation.RECT? prc, out winmdroot.UI.Controls.MARGINS pMargins) 733 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeMargins(hTheme, hdc, iPartId, iStateId, iPropId, prc.HasValue ? &prcLocal : null, pMarginsLocal); 774 internal static unsafe winmdroot.Foundation.HRESULT GetThemeMargins(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, [Optional] winmdroot.Foundation.RECT* prc, winmdroot.UI.Controls.MARGINS* pMargins) 776 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, hdc, iPartId, iStateId, (int)iPropId, prc, pMargins); 780 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, int iPropId, [Optional] winmdroot.Foundation.RECT* prc, winmdroot.UI.Controls.MARGINS* pMargins); 785 internal static unsafe winmdroot.Foundation.HRESULT GetThemePartSize(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Foundation.RECT? prc, winmdroot.UI.Controls.THEMESIZE eSize, out winmdroot.Foundation.SIZE psz) 790 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemePartSize(hTheme, hdc, iPartId, iStateId, prc.HasValue ? &prcLocal : null, eSize, pszLocal); 828 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemePartSize(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, [Optional] winmdroot.Foundation.RECT* prc, winmdroot.UI.Controls.THEMESIZE eSize, winmdroot.Foundation.SIZE* psz); 832 internal static unsafe winmdroot.Foundation.HRESULT GetThemePosition(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, out global::System.Drawing.Point pPoint) 836 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemePosition(hTheme, iPartId, iStateId, iPropId, pPointLocal); 867 internal static unsafe winmdroot.Foundation.HRESULT GetThemePosition(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iPropId, global::System.Drawing.Point* pPoint) 869 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, iPartId, iStateId, (int)iPropId, pPoint); 873 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, global::System.Drawing.Point* pPoint); 909 internal static extern winmdroot.Foundation.HRESULT GetThemeString(winmdroot.UI.Controls.HTHEME hTheme, int iPartId, int iStateId, int iPropId, winmdroot.Foundation.PWSTR pszBuff, int cchMaxBuffChars); 937 internal static unsafe winmdroot.Foundation.HRESULT GetThemeSysInt(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iIntId, out int piValue) 941 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeSysInt(hTheme, iIntId, piValueLocal); 967 internal static unsafe winmdroot.Foundation.HRESULT GetThemeSysInt(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.UI.Controls.THEME_PROPERTY_SYMBOL_ID iIntId, int* piValue) 969 winmdroot.Foundation.HRESULT __retVal = LocalExternFunction(hTheme, (int)iIntId, piValue); 973 static extern unsafe winmdroot.Foundation.HRESULT LocalExternFunction(winmdroot.UI.Controls.HTHEME hTheme, int iIntId, int* piValue); 978 internal static unsafe winmdroot.Foundation.HRESULT GetThemeTextExtent(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, string pszText, int cchCharCount, winmdroot.Graphics.Gdi.DRAW_TEXT_FORMAT dwTextFlags, winmdroot.Foundation.RECT? pBoundingRect, out winmdroot.Foundation.RECT pExtentRect) 985 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeTextExtent(hTheme, hdc, iPartId, iStateId, pszTextLocal, cchCharCount, dwTextFlags, pBoundingRect.HasValue ? &pBoundingRectLocal : null, pExtentRectLocal); 1036 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemeTextExtent(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Foundation.PCWSTR pszText, int cchCharCount, winmdroot.Graphics.Gdi.DRAW_TEXT_FORMAT dwTextFlags, [Optional] winmdroot.Foundation.RECT* pBoundingRect, winmdroot.Foundation.RECT* pExtentRect); 1040 internal static unsafe winmdroot.Foundation.HRESULT GetThemeTextMetrics(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, out winmdroot.Graphics.Gdi.TEXTMETRICW ptm) 1044 winmdroot.Foundation.HRESULT __result = PInvoke.GetThemeTextMetrics(hTheme, hdc, iPartId, iStateId, ptmLocal); 1078 internal static extern unsafe winmdroot.Foundation.HRESULT GetThemeTextMetrics(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.Graphics.Gdi.TEXTMETRICW* ptm); 1082 internal static unsafe winmdroot.Foundation.HRESULT HitTestThemeBackground(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.UI.Controls.HIT_TEST_BACKGROUND_OPTIONS dwOptions, in winmdroot.Foundation.RECT pRect, winmdroot.Graphics.Gdi.HRGN hrgn, global::System.Drawing.Point ptTest, out ushort pwHitTestCode) 1088 winmdroot.Foundation.HRESULT __result = PInvoke.HitTestThemeBackground(hTheme, hdc, iPartId, iStateId, dwOptions, pRectLocal, hrgn, ptTest, pwHitTestCodeLocal); 1138 internal static extern unsafe winmdroot.Foundation.HRESULT HitTestThemeBackground(winmdroot.UI.Controls.HTHEME hTheme, winmdroot.Graphics.Gdi.HDC hdc, int iPartId, int iStateId, winmdroot.UI.Controls.HIT_TEST_BACKGROUND_OPTIONS dwOptions, winmdroot.Foundation.RECT* pRect, winmdroot.Graphics.Gdi.HRGN hrgn, global::System.Drawing.Point ptTest, ushort* pwHitTestCode); 1246 internal static unsafe winmdroot.Foundation.HRESULT SetWindowTheme(winmdroot.Foundation.HWND hwnd, string pszSubAppName, string pszSubIdList) 1252 winmdroot.Foundation.HRESULT __result = PInvoke.SetWindowTheme(hwnd, pszSubAppNameLocal, pszSubIdListLocal); 1281 internal static extern winmdroot.Foundation.HRESULT SetWindowTheme(winmdroot.Foundation.HWND hwnd, winmdroot.Foundation.PCWSTR pszSubAppName, winmdroot.Foundation.PCWSTR pszSubIdList);
Windows.Win32.System_Com_IBindHost_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT MonikerBindToStorage(this winmdroot.System.Com.IBindHost.Interface @this, winmdroot.System.Com.IMoniker* pMk, winmdroot.System.Com.IBindCtx* pBC, winmdroot.System.Com.IBindStatusCallback* pBSC, in global::System.Guid riid, out void* ppvObj) 30 winmdroot.Foundation.HRESULT __result = @this.MonikerBindToStorage(pMk, pBC, pBSC, riidLocal, ppvObjLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT MonikerBindToObject(this winmdroot.System.Com.IBindHost.Interface @this, winmdroot.System.Com.IMoniker* pMk, winmdroot.System.Com.IBindCtx* pBC, winmdroot.System.Com.IBindStatusCallback* pBSC, in global::System.Guid riid, out void* ppvObj) 43 winmdroot.Foundation.HRESULT __result = @this.MonikerBindToObject(pMk, pBC, pBSC, riidLocal, ppvObjLocal);
Windows.Win32.System_Com_IBinding_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetPriority(this winmdroot.System.Com.IBinding.Interface @this, out int pnPriority) 28 winmdroot.Foundation.HRESULT __result = @this.GetPriority(pnPriorityLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetBindResult(this winmdroot.System.Com.IBinding.Interface @this, out global::System.Guid pclsidProtocol, out uint pdwResult, out winmdroot.Foundation.PWSTR pszResult, ref uint pdwReserved) 44 winmdroot.Foundation.HRESULT __result = @this.GetBindResult(pclsidProtocolLocal, pdwResultLocal, pszResultLocal, pdwReservedLocal);
Windows.Win32.System_Com_IBindStatusCallback_Extensions.g.cs (14)
24 internal static unsafe winmdroot.Foundation.HRESULT GetPriority(this winmdroot.System.Com.IBindStatusCallback.Interface @this, out int pnPriority) 28 winmdroot.Foundation.HRESULT __result = @this.GetPriority(pnPriorityLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT OnProgress(this winmdroot.System.Com.IBindStatusCallback.Interface @this, uint ulProgress, uint ulProgressMax, uint ulStatusCode, string szStatusText) 38 winmdroot.Foundation.HRESULT __result = @this.OnProgress(ulProgress, ulProgressMax, ulStatusCode, szStatusTextLocal); 43 /// <inheritdoc cref="winmdroot.System.Com.IBindStatusCallback.Interface.OnStopBinding(winmdroot.Foundation.HRESULT, winmdroot.Foundation.PCWSTR)"/> 44 internal static unsafe winmdroot.Foundation.HRESULT OnStopBinding(this winmdroot.System.Com.IBindStatusCallback.Interface @this, winmdroot.Foundation.HRESULT hresult, string szError) 48 winmdroot.Foundation.HRESULT __result = @this.OnStopBinding(hresult, szErrorLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetBindInfo(this winmdroot.System.Com.IBindStatusCallback.Interface @this, out uint grfBINDF, ref winmdroot.System.Com.BINDINFO pbindinfo) 60 winmdroot.Foundation.HRESULT __result = @this.GetBindInfo(grfBINDFLocal, pbindinfoLocal); 67 internal static unsafe winmdroot.Foundation.HRESULT OnDataAvailable(this winmdroot.System.Com.IBindStatusCallback.Interface @this, uint grfBSCF, uint dwSize, in winmdroot.System.Com.FORMATETC pformatetc, in winmdroot.System.Com.STGMEDIUM pstgmed) 73 winmdroot.Foundation.HRESULT __result = @this.OnDataAvailable(grfBSCF, dwSize, pformatetcLocal, pstgmedLocal); 80 internal static unsafe winmdroot.Foundation.HRESULT OnObjectAvailable(this winmdroot.System.Com.IBindStatusCallback.Interface @this, in global::System.Guid riid, winmdroot.System.Com.IUnknown* punk) 84 winmdroot.Foundation.HRESULT __result = @this.OnObjectAvailable(riidLocal, punk);
Windows.Win32.System_Com_IClassFactory_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT CreateInstance(this winmdroot.System.Com.IClassFactory.Interface @this, winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObject) 30 winmdroot.Foundation.HRESULT __result = @this.CreateInstance(pUnkOuter, riidLocal, ppvObjectLocal);
Windows.Win32.System_Com_IConnectionPoint_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetConnectionInterface(this winmdroot.System.Com.IConnectionPoint.Interface @this, out global::System.Guid pIID) 28 winmdroot.Foundation.HRESULT __result = @this.GetConnectionInterface(pIIDLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT Advise(this winmdroot.System.Com.IConnectionPoint.Interface @this, winmdroot.System.Com.IUnknown* pUnkSink, out uint pdwCookie) 38 winmdroot.Foundation.HRESULT __result = @this.Advise(pUnkSink, pdwCookieLocal);
Windows.Win32.System_Com_IConnectionPointContainer_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT FindConnectionPoint(this winmdroot.System.Com.IConnectionPointContainer.Interface @this, in global::System.Guid riid, winmdroot.System.Com.IConnectionPoint** ppCP) 28 winmdroot.Foundation.HRESULT __result = @this.FindConnectionPoint(riidLocal, ppCP);
Windows.Win32.System_Com_IEnumConnectionPoints_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumConnectionPoints.Interface @this, uint cConnections, winmdroot.System.Com.IConnectionPoint** ppCP, out uint pcFetched) 28 winmdroot.Foundation.HRESULT __result = @this.Next(cConnections, ppCP, pcFetchedLocal);
Windows.Win32.System_Com_IEnumConnections_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Com.IEnumConnections.Interface @this, Span<winmdroot.System.Com.CONNECTDATA> rgcd, out uint pcFetched) 30 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgcd.Length, rgcdLocal, pcFetchedLocal);
Windows.Win32.System_Com_IErrorInfo_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetGUID(this winmdroot.System.Com.IErrorInfo.Interface @this, out global::System.Guid pGUID) 28 winmdroot.Foundation.HRESULT __result = @this.GetGUID(pGUIDLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetHelpContext(this winmdroot.System.Com.IErrorInfo.Interface @this, out uint pdwHelpContext) 38 winmdroot.Foundation.HRESULT __result = @this.GetHelpContext(pdwHelpContextLocal);
Windows.Win32.System_Com_IErrorLog_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT AddError(this winmdroot.System.Com.IErrorLog.Interface @this, string pszPropName, in winmdroot.System.Com.EXCEPINFO pExcepInfo) 30 winmdroot.Foundation.HRESULT __result = @this.AddError(pszPropNameLocal, pExcepInfoLocal);
Windows.Win32.System_Com_IPersistStreamInit_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetClassID(this winmdroot.System.Com.IPersistStreamInit.Interface @this, out global::System.Guid pClassID) 28 winmdroot.Foundation.HRESULT __result = @this.GetClassID(pClassIDLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetSizeMax(this winmdroot.System.Com.IPersistStreamInit.Interface @this, out ulong pCbSize) 38 winmdroot.Foundation.HRESULT __result = @this.GetSizeMax(pCbSizeLocal);
Windows.Win32.System_Com_ISupportErrorInfo_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT InterfaceSupportsErrorInfo(this winmdroot.System.Com.ISupportErrorInfo.Interface @this, in global::System.Guid riid) 28 winmdroot.Foundation.HRESULT __result = @this.InterfaceSupportsErrorInfo(riidLocal);
Windows.Win32.System_Com_StructuredStorage_ILockBytes_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Stat(this winmdroot.System.Com.StructuredStorage.ILockBytes.Interface @this, out winmdroot.System.Com.STATSTG pstatstg, uint grfStatFlag) 28 winmdroot.Foundation.HRESULT __result = @this.Stat(pstatstgLocal, grfStatFlag);
Windows.Win32.System_Com_StructuredStorage_IPersistStorage_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetClassID(this winmdroot.System.Com.StructuredStorage.IPersistStorage.Interface @this, out global::System.Guid pClassID) 28 winmdroot.Foundation.HRESULT __result = @this.GetClassID(pClassIDLocal);
Windows.Win32.System_Com_StructuredStorage_IPropertyBag_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT Read(this winmdroot.System.Com.StructuredStorage.IPropertyBag.Interface @this, string pszPropName, ref winmdroot.System.Variant.VARIANT pVar, winmdroot.System.Com.IErrorLog* pErrorLog) 30 winmdroot.Foundation.HRESULT __result = @this.Read(pszPropNameLocal, pVarLocal, pErrorLog); 37 internal static unsafe winmdroot.Foundation.HRESULT Write(this winmdroot.System.Com.StructuredStorage.IPropertyBag.Interface @this, string pszPropName, in winmdroot.System.Variant.VARIANT pVar) 43 winmdroot.Foundation.HRESULT __result = @this.Write(pszPropNameLocal, pVarLocal);
Windows.Win32.System_Ole_IClassFactory2_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT CreateInstance(this winmdroot.System.Ole.IClassFactory2.Interface @this, winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, out void* ppvObject) 30 winmdroot.Foundation.HRESULT __result = @this.CreateInstance(pUnkOuter, riidLocal, ppvObjectLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT GetLicInfo(this winmdroot.System.Ole.IClassFactory2.Interface @this, ref winmdroot.System.Ole.LICINFO pLicInfo) 41 winmdroot.Foundation.HRESULT __result = @this.GetLicInfo(pLicInfoLocal); 47 internal static unsafe winmdroot.Foundation.HRESULT CreateInstanceLic(this winmdroot.System.Ole.IClassFactory2.Interface @this, winmdroot.System.Com.IUnknown* pUnkOuter, in global::System.Guid riid, winmdroot.Foundation.BSTR bstrKey, out void* ppvObj) 53 winmdroot.Foundation.HRESULT __result = @this.CreateInstanceLic(pUnkOuter, default, riidLocal, bstrKey, ppvObjLocal);
Windows.Win32.System_Ole_IEnumOleUndoUnits_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Ole.IEnumOleUndoUnits.Interface @this, uint cElt, winmdroot.System.Ole.IOleUndoUnit** rgElt, out uint pcEltFetched) 28 winmdroot.Foundation.HRESULT __result = @this.Next(cElt, rgElt, pcEltFetchedLocal);
Windows.Win32.System_Ole_IEnumOLEVERB_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Ole.IEnumOLEVERB.Interface @this, Span<winmdroot.System.Ole.OLEVERB> rgelt, uint* pceltFetched) 28 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgelt.Length, rgeltLocal, pceltFetched);
Windows.Win32.System_Ole_IEnumVARIANT_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Next(this winmdroot.System.Ole.IEnumVARIANT.Interface @this, Span<winmdroot.System.Variant.VARIANT> rgVar, out uint pCeltFetched) 30 winmdroot.Foundation.HRESULT __result = @this.Next((uint )rgVar.Length, rgVarLocal, pCeltFetchedLocal);
Windows.Win32.System_Ole_IFont_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT QueryTextMetrics(this winmdroot.System.Ole.IFont.Interface @this, out winmdroot.Graphics.Gdi.TEXTMETRICW pTM) 28 winmdroot.Foundation.HRESULT __result = @this.QueryTextMetrics(pTMLocal);
Windows.Win32.System_Ole_IGetOleObject_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetOleObject(this winmdroot.System.Ole.IGetOleObject.Interface @this, in global::System.Guid riid, ref void* ppvObj) 30 winmdroot.Foundation.HRESULT __result = @this.GetOleObject(riidLocal, ppvObjLocal);
Windows.Win32.System_Ole_IGetVBAObject_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetObject(this winmdroot.System.Ole.IGetVBAObject.Interface @this, in global::System.Guid riid, ref void* ppvObj, uint dwReserved) 30 winmdroot.Foundation.HRESULT __result = @this.GetObject(riidLocal, ppvObjLocal, dwReserved);
Windows.Win32.System_Ole_IOleAdviseHolder_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Advise(this winmdroot.System.Ole.IOleAdviseHolder.Interface @this, winmdroot.System.Com.IAdviseSink* pAdvise, out uint pdwConnection) 28 winmdroot.Foundation.HRESULT __result = @this.Advise(pAdvise, pdwConnectionLocal);
Windows.Win32.System_Ole_IOleCommandTarget_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT QueryStatus(this winmdroot.System.Ole.IOleCommandTarget.Interface @this, in global::System.Guid pguidCmdGroup, uint cCmds, ref winmdroot.System.Ole.OLECMD prgCmds, winmdroot.System.Ole.OLECMDTEXT* pCmdText) 30 winmdroot.Foundation.HRESULT __result = @this.QueryStatus(pguidCmdGroupLocal, cCmds, prgCmdsLocal, pCmdText); 37 internal static unsafe winmdroot.Foundation.HRESULT Exec(this winmdroot.System.Ole.IOleCommandTarget.Interface @this, in global::System.Guid pguidCmdGroup, uint nCmdID, uint nCmdexecopt, in winmdroot.System.Variant.VARIANT pvaIn, ref winmdroot.System.Variant.VARIANT pvaOut) 45 winmdroot.Foundation.HRESULT __result = @this.Exec(pguidCmdGroupLocal, nCmdID, nCmdexecopt, pvaInLocal, pvaOutLocal);
Windows.Win32.System_Ole_IOleContainer_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT ParseDisplayName(this winmdroot.System.Ole.IOleContainer.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, out uint pchEaten, winmdroot.System.Com.IMoniker** ppmkOut) 28 winmdroot.Foundation.HRESULT __result = @this.ParseDisplayName(pbc, pszDisplayName, pchEatenLocal, ppmkOut);
Windows.Win32.System_Ole_IOleControl_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetControlInfo(this winmdroot.System.Ole.IOleControl.Interface @this, ref winmdroot.System.Ole.CONTROLINFO pCI) 28 winmdroot.Foundation.HRESULT __result = @this.GetControlInfo(pCILocal); 34 internal static unsafe winmdroot.Foundation.HRESULT OnMnemonic(this winmdroot.System.Ole.IOleControl.Interface @this, in winmdroot.UI.WindowsAndMessaging.MSG pMsg) 38 winmdroot.Foundation.HRESULT __result = @this.OnMnemonic(pMsgLocal);
Windows.Win32.System_Ole_IOleControlSite_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT TransformCoords(this winmdroot.System.Ole.IOleControlSite.Interface @this, ref winmdroot.Foundation.POINTL pPtlHimetric, ref global::System.Drawing.PointF pPtfContainer, uint dwFlags) 30 winmdroot.Foundation.HRESULT __result = @this.TransformCoords(pPtlHimetricLocal, pPtfContainerLocal, dwFlags); 37 internal static unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(this winmdroot.System.Ole.IOleControlSite.Interface @this, in winmdroot.UI.WindowsAndMessaging.MSG pMsg, winmdroot.System.Ole.KEYMODIFIERS grfModifiers) 41 winmdroot.Foundation.HRESULT __result = @this.TranslateAccelerator(pMsgLocal, grfModifiers);
Windows.Win32.System_Ole_IOleInPlaceActiveObject_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT GetWindow(this winmdroot.System.Ole.IOleInPlaceActiveObject.Interface @this, out winmdroot.Foundation.HWND phwnd) 28 winmdroot.Foundation.HRESULT __result = @this.GetWindow(phwndLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(this winmdroot.System.Ole.IOleInPlaceActiveObject.Interface @this, winmdroot.UI.WindowsAndMessaging.MSG? lpmsg) 37 winmdroot.Foundation.HRESULT __result = @this.TranslateAccelerator(lpmsg.HasValue ? &lpmsgLocal : null); 42 internal static unsafe winmdroot.Foundation.HRESULT ResizeBorder(this winmdroot.System.Ole.IOleInPlaceActiveObject.Interface @this, in winmdroot.Foundation.RECT prcBorder, winmdroot.System.Ole.IOleInPlaceUIWindow* pUIWindow, winmdroot.Foundation.BOOL fFrameWindow) 46 winmdroot.Foundation.HRESULT __result = @this.ResizeBorder(prcBorderLocal, pUIWindow, fFrameWindow);
Windows.Win32.System_Ole_IOleInPlaceFrame_Extensions.g.cs (16)
24 internal static unsafe winmdroot.Foundation.HRESULT GetWindow(this winmdroot.System.Ole.IOleInPlaceFrame.Interface @this, out winmdroot.Foundation.HWND phwnd) 28 winmdroot.Foundation.HRESULT __result = @this.GetWindow(phwndLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetBorder(this winmdroot.System.Ole.IOleInPlaceFrame.Interface @this, out winmdroot.Foundation.RECT lprectBorder) 38 winmdroot.Foundation.HRESULT __result = @this.GetBorder(lprectBorderLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(this winmdroot.System.Ole.IOleInPlaceFrame.Interface @this, in winmdroot.Foundation.RECT pborderwidths) 48 winmdroot.Foundation.HRESULT __result = @this.RequestBorderSpace(pborderwidthsLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT SetBorderSpace(this winmdroot.System.Ole.IOleInPlaceFrame.Interface @this, in winmdroot.Foundation.RECT pborderwidths) 58 winmdroot.Foundation.HRESULT __result = @this.SetBorderSpace(pborderwidthsLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT SetActiveObject(this winmdroot.System.Ole.IOleInPlaceFrame.Interface @this, winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, string pszObjName) 68 winmdroot.Foundation.HRESULT __result = @this.SetActiveObject(pActiveObject, pszObjNameLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT InsertMenus(this winmdroot.System.Ole.IOleInPlaceFrame.Interface @this, winmdroot.UI.WindowsAndMessaging.HMENU hmenuShared, ref winmdroot.System.Ole.OLEMENUGROUPWIDTHS lpMenuWidths) 78 winmdroot.Foundation.HRESULT __result = @this.InsertMenus(hmenuShared, lpMenuWidthsLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT SetStatusText(this winmdroot.System.Ole.IOleInPlaceFrame.Interface @this, string pszStatusText) 88 winmdroot.Foundation.HRESULT __result = @this.SetStatusText(pszStatusTextLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT TranslateAccelerator(this winmdroot.System.Ole.IOleInPlaceFrame.Interface @this, in winmdroot.UI.WindowsAndMessaging.MSG lpmsg, ushort wID) 98 winmdroot.Foundation.HRESULT __result = @this.TranslateAccelerator(lpmsgLocal, wID);
Windows.Win32.System_Ole_IOleInPlaceObject_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetWindow(this winmdroot.System.Ole.IOleInPlaceObject.Interface @this, out winmdroot.Foundation.HWND phwnd) 28 winmdroot.Foundation.HRESULT __result = @this.GetWindow(phwndLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT SetObjectRects(this winmdroot.System.Ole.IOleInPlaceObject.Interface @this, in winmdroot.Foundation.RECT lprcPosRect, in winmdroot.Foundation.RECT lprcClipRect) 40 winmdroot.Foundation.HRESULT __result = @this.SetObjectRects(lprcPosRectLocal, lprcClipRectLocal);
Windows.Win32.System_Ole_IOleInPlaceObjectWindowless_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT GetWindow(this winmdroot.System.Ole.IOleInPlaceObjectWindowless.Interface @this, out winmdroot.Foundation.HWND phwnd) 28 winmdroot.Foundation.HRESULT __result = @this.GetWindow(phwndLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT SetObjectRects(this winmdroot.System.Ole.IOleInPlaceObjectWindowless.Interface @this, in winmdroot.Foundation.RECT lprcPosRect, in winmdroot.Foundation.RECT lprcClipRect) 40 winmdroot.Foundation.HRESULT __result = @this.SetObjectRects(lprcPosRectLocal, lprcClipRectLocal); 47 internal static unsafe winmdroot.Foundation.HRESULT OnWindowMessage(this winmdroot.System.Ole.IOleInPlaceObjectWindowless.Interface @this, uint msg, winmdroot.Foundation.WPARAM wParam, winmdroot.Foundation.LPARAM lParam, out winmdroot.Foundation.LRESULT plResult) 51 winmdroot.Foundation.HRESULT __result = @this.OnWindowMessage(msg, wParam, lParam, plResultLocal);
Windows.Win32.System_Ole_IOleInPlaceSite_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT GetWindow(this winmdroot.System.Ole.IOleInPlaceSite.Interface @this, out winmdroot.Foundation.HWND phwnd) 28 winmdroot.Foundation.HRESULT __result = @this.GetWindow(phwndLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetWindowContext(this winmdroot.System.Ole.IOleInPlaceSite.Interface @this, winmdroot.System.Ole.IOleInPlaceFrame** ppFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** ppDoc, out winmdroot.Foundation.RECT lprcPosRect, out winmdroot.Foundation.RECT lprcClipRect, ref winmdroot.System.Ole.OLEINPLACEFRAMEINFO lpFrameInfo) 42 winmdroot.Foundation.HRESULT __result = @this.GetWindowContext(ppFrame, ppDoc, lprcPosRectLocal, lprcClipRectLocal, lpFrameInfoLocal); 50 internal static unsafe winmdroot.Foundation.HRESULT OnPosRectChange(this winmdroot.System.Ole.IOleInPlaceSite.Interface @this, in winmdroot.Foundation.RECT lprcPosRect) 54 winmdroot.Foundation.HRESULT __result = @this.OnPosRectChange(lprcPosRectLocal);
Windows.Win32.System_Ole_IOleInPlaceUIWindow_Extensions.g.cs (10)
24 internal static unsafe winmdroot.Foundation.HRESULT GetWindow(this winmdroot.System.Ole.IOleInPlaceUIWindow.Interface @this, out winmdroot.Foundation.HWND phwnd) 28 winmdroot.Foundation.HRESULT __result = @this.GetWindow(phwndLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetBorder(this winmdroot.System.Ole.IOleInPlaceUIWindow.Interface @this, out winmdroot.Foundation.RECT lprectBorder) 38 winmdroot.Foundation.HRESULT __result = @this.GetBorder(lprectBorderLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT RequestBorderSpace(this winmdroot.System.Ole.IOleInPlaceUIWindow.Interface @this, in winmdroot.Foundation.RECT pborderwidths) 48 winmdroot.Foundation.HRESULT __result = @this.RequestBorderSpace(pborderwidthsLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT SetBorderSpace(this winmdroot.System.Ole.IOleInPlaceUIWindow.Interface @this, in winmdroot.Foundation.RECT pborderwidths) 58 winmdroot.Foundation.HRESULT __result = @this.SetBorderSpace(pborderwidthsLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT SetActiveObject(this winmdroot.System.Ole.IOleInPlaceUIWindow.Interface @this, winmdroot.System.Ole.IOleInPlaceActiveObject* pActiveObject, string pszObjName) 68 winmdroot.Foundation.HRESULT __result = @this.SetActiveObject(pActiveObject, pszObjNameLocal);
Windows.Win32.System_Ole_IOleObject_Extensions.g.cs (16)
24 internal static unsafe winmdroot.Foundation.HRESULT SetHostNames(this winmdroot.System.Ole.IOleObject.Interface @this, string szContainerApp, string szContainerObj) 30 winmdroot.Foundation.HRESULT __result = @this.SetHostNames(szContainerAppLocal, szContainerObjLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT DoVerb(this winmdroot.System.Ole.IOleObject.Interface @this, int iVerb, in winmdroot.UI.WindowsAndMessaging.MSG lpmsg, winmdroot.System.Ole.IOleClientSite* pActiveSite, int lindex, winmdroot.Foundation.HWND hwndParent, in winmdroot.Foundation.RECT lprcPosRect) 43 winmdroot.Foundation.HRESULT __result = @this.DoVerb(iVerb, lpmsgLocal, pActiveSite, lindex, hwndParent, lprcPosRectLocal); 50 internal static unsafe winmdroot.Foundation.HRESULT GetUserClassID(this winmdroot.System.Ole.IOleObject.Interface @this, out global::System.Guid pClsid) 54 winmdroot.Foundation.HRESULT __result = @this.GetUserClassID(pClsidLocal); 60 internal static unsafe winmdroot.Foundation.HRESULT GetUserType(this winmdroot.System.Ole.IOleObject.Interface @this, uint dwFormOfType, out winmdroot.Foundation.PWSTR pszUserType) 64 winmdroot.Foundation.HRESULT __result = @this.GetUserType(dwFormOfType, pszUserTypeLocal); 70 internal static unsafe winmdroot.Foundation.HRESULT SetExtent(this winmdroot.System.Ole.IOleObject.Interface @this, winmdroot.System.Com.DVASPECT dwDrawAspect, in winmdroot.Foundation.SIZE psizel) 74 winmdroot.Foundation.HRESULT __result = @this.SetExtent(dwDrawAspect, psizelLocal); 80 internal static unsafe winmdroot.Foundation.HRESULT GetExtent(this winmdroot.System.Ole.IOleObject.Interface @this, winmdroot.System.Com.DVASPECT dwDrawAspect, out winmdroot.Foundation.SIZE psizel) 84 winmdroot.Foundation.HRESULT __result = @this.GetExtent(dwDrawAspect, psizelLocal); 90 internal static unsafe winmdroot.Foundation.HRESULT Advise(this winmdroot.System.Ole.IOleObject.Interface @this, winmdroot.System.Com.IAdviseSink* pAdvSink, out uint pdwConnection) 94 winmdroot.Foundation.HRESULT __result = @this.Advise(pAdvSink, pdwConnectionLocal); 100 internal static unsafe winmdroot.Foundation.HRESULT GetMiscStatus(this winmdroot.System.Ole.IOleObject.Interface @this, winmdroot.System.Com.DVASPECT dwAspect, out winmdroot.System.Ole.OLEMISC pdwStatus) 104 winmdroot.Foundation.HRESULT __result = @this.GetMiscStatus(dwAspect, pdwStatusLocal);
Windows.Win32.System_Ole_IOleParentUndoUnit_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetUnitType(this winmdroot.System.Ole.IOleParentUndoUnit.Interface @this, out global::System.Guid pClsid, out int plID) 30 winmdroot.Foundation.HRESULT __result = @this.GetUnitType(pClsidLocal, plIDLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT GetParentState(this winmdroot.System.Ole.IOleParentUndoUnit.Interface @this, out uint pdwState) 41 winmdroot.Foundation.HRESULT __result = @this.GetParentState(pdwStateLocal);
Windows.Win32.System_Ole_IOleUndoManager_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetOpenParentState(this winmdroot.System.Ole.IOleUndoManager.Interface @this, out uint pdwState) 28 winmdroot.Foundation.HRESULT __result = @this.GetOpenParentState(pdwStateLocal);
Windows.Win32.System_Ole_IOleUndoUnit_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetUnitType(this winmdroot.System.Ole.IOleUndoUnit.Interface @this, out global::System.Guid pClsid, out int plID) 30 winmdroot.Foundation.HRESULT __result = @this.GetUnitType(pClsidLocal, plIDLocal);
Windows.Win32.System_Ole_IOleWindow_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetWindow(this winmdroot.System.Ole.IOleWindow.Interface @this, out winmdroot.Foundation.HWND phwnd) 28 winmdroot.Foundation.HRESULT __result = @this.GetWindow(phwndLocal);
Windows.Win32.System_Ole_IParseDisplayName_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT ParseDisplayName(this winmdroot.System.Ole.IParseDisplayName.Interface @this, winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, out uint pchEaten, winmdroot.System.Com.IMoniker** ppmkOut) 28 winmdroot.Foundation.HRESULT __result = @this.ParseDisplayName(pbc, pszDisplayName, pchEatenLocal, ppmkOut);
Windows.Win32.System_Ole_IPerPropertyBrowsing_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT MapPropertyToPage(this winmdroot.System.Ole.IPerPropertyBrowsing.Interface @this, int dispID, out global::System.Guid pClsid) 28 winmdroot.Foundation.HRESULT __result = @this.MapPropertyToPage(dispID, pClsidLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetPredefinedStrings(this winmdroot.System.Ole.IPerPropertyBrowsing.Interface @this, int dispID, out winmdroot.System.Ole.CALPOLESTR pCaStringsOut, out winmdroot.System.Ole.CADWORD pCaCookiesOut) 40 winmdroot.Foundation.HRESULT __result = @this.GetPredefinedStrings(dispID, pCaStringsOutLocal, pCaCookiesOutLocal); 47 internal static unsafe winmdroot.Foundation.HRESULT GetPredefinedValue(this winmdroot.System.Ole.IPerPropertyBrowsing.Interface @this, int dispID, uint dwCookie, out winmdroot.System.Variant.VARIANT pVarOut) 51 winmdroot.Foundation.HRESULT __result = @this.GetPredefinedValue(dispID, dwCookie, pVarOutLocal);
Windows.Win32.System_Ole_IPersistPropertyBag_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetClassID(this winmdroot.System.Ole.IPersistPropertyBag.Interface @this, out global::System.Guid pClassID) 28 winmdroot.Foundation.HRESULT __result = @this.GetClassID(pClassIDLocal);
Windows.Win32.System_Ole_IProvideClassInfo2_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetGUID(this winmdroot.System.Ole.IProvideClassInfo2.Interface @this, uint dwGuidKind, out global::System.Guid pGUID) 28 winmdroot.Foundation.HRESULT __result = @this.GetGUID(dwGuidKind, pGUIDLocal);
Windows.Win32.System_Ole_IProvideMultipleClassInfo_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT GetGUID(this winmdroot.System.Ole.IProvideMultipleClassInfo.Interface @this, uint dwGuidKind, out global::System.Guid pGUID) 28 winmdroot.Foundation.HRESULT __result = @this.GetGUID(dwGuidKind, pGUIDLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetMultiTypeInfoCount(this winmdroot.System.Ole.IProvideMultipleClassInfo.Interface @this, out uint pcti) 38 winmdroot.Foundation.HRESULT __result = @this.GetMultiTypeInfoCount(pctiLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetInfoOfIndex(this winmdroot.System.Ole.IProvideMultipleClassInfo.Interface @this, uint iti, winmdroot.System.Ole.MULTICLASSINFO_FLAGS dwFlags, winmdroot.System.Com.ITypeInfo** pptiCoClass, out uint pdwTIFlags, out uint pcdispidReserved, out global::System.Guid piidPrimary, out global::System.Guid piidSource) 54 winmdroot.Foundation.HRESULT __result = @this.GetInfoOfIndex(iti, dwFlags, pptiCoClass, pdwTIFlagsLocal, pcdispidReservedLocal, piidPrimaryLocal, piidSourceLocal);
Windows.Win32.System_Ole_IQuickActivate_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT QuickActivate(this winmdroot.System.Ole.IQuickActivate.Interface @this, in winmdroot.System.Ole.QACONTAINER pQaContainer, ref winmdroot.System.Ole.QACONTROL pQaControl) 30 winmdroot.Foundation.HRESULT __result = @this.QuickActivate(pQaContainerLocal, pQaControlLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT SetContentExtent(this winmdroot.System.Ole.IQuickActivate.Interface @this, in winmdroot.Foundation.SIZE pSizel) 41 winmdroot.Foundation.HRESULT __result = @this.SetContentExtent(pSizelLocal); 47 internal static unsafe winmdroot.Foundation.HRESULT GetContentExtent(this winmdroot.System.Ole.IQuickActivate.Interface @this, out winmdroot.Foundation.SIZE pSizel) 51 winmdroot.Foundation.HRESULT __result = @this.GetContentExtent(pSizelLocal);
Windows.Win32.System_Ole_ISimpleFrameSite_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT PreMessageFilter(this winmdroot.System.Ole.ISimpleFrameSite.Interface @this, winmdroot.Foundation.HWND hWnd, uint msg, winmdroot.Foundation.WPARAM wp, winmdroot.Foundation.LPARAM lp, out winmdroot.Foundation.LRESULT plResult, out uint pdwCookie) 30 winmdroot.Foundation.HRESULT __result = @this.PreMessageFilter(hWnd, msg, wp, lp, plResultLocal, pdwCookieLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT PostMessageFilter(this winmdroot.System.Ole.ISimpleFrameSite.Interface @this, winmdroot.Foundation.HWND hWnd, uint msg, winmdroot.Foundation.WPARAM wp, winmdroot.Foundation.LPARAM lp, out winmdroot.Foundation.LRESULT plResult, uint dwCookie) 41 winmdroot.Foundation.HRESULT __result = @this.PostMessageFilter(hWnd, msg, wp, lp, plResultLocal, dwCookie);
Windows.Win32.System_Ole_ISpecifyPropertyPages_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetPages(this winmdroot.System.Ole.ISpecifyPropertyPages.Interface @this, out winmdroot.System.Ole.CAUUID pPages) 28 winmdroot.Foundation.HRESULT __result = @this.GetPages(pPagesLocal);
Windows.Win32.System_Ole_IVBFormat_Extensions.g.cs (2)
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) 30 winmdroot.Foundation.HRESULT __result = @this.Format(vDataLocal, bstrFormat, lpBuffer, cb, lcid, sFirstDayOfWeek, sFirstWeekOfYear, rcbLocal);
Windows.Win32.System_Ole_IViewObject_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT Draw(this winmdroot.System.Ole.IViewObject.Interface @this, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, winmdroot.Foundation.RECTL? lprcBounds, winmdroot.Foundation.RECTL? lprcWBounds, nint pfnContinue, nuint dwContinue) 28 winmdroot.Foundation.HRESULT __result = @this.Draw(dwDrawAspect, lindex, pvAspect, ptd, hdcTargetDev, hdcDraw, lprcBounds.HasValue ? &lprcBoundsLocal : null, lprcWBounds.HasValue ? &lprcWBoundsLocal : null, pfnContinue, dwContinue); 33 internal static unsafe winmdroot.Foundation.HRESULT GetColorSet(this winmdroot.System.Ole.IViewObject.Interface @this, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hicTargetDev, out winmdroot.Graphics.Gdi.LOGPALETTE* ppColorSet) 37 winmdroot.Foundation.HRESULT __result = @this.GetColorSet(dwDrawAspect, lindex, pvAspect, ptd, hicTargetDev, ppColorSetLocal); 43 internal static unsafe winmdroot.Foundation.HRESULT Freeze(this winmdroot.System.Ole.IViewObject.Interface @this, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, out uint pdwFreeze) 47 winmdroot.Foundation.HRESULT __result = @this.Freeze(dwDrawAspect, lindex, pvAspect, pdwFreezeLocal);
Windows.Win32.System_Ole_IViewObject2_Extensions.g.cs (8)
24 internal static unsafe winmdroot.Foundation.HRESULT Draw(this winmdroot.System.Ole.IViewObject2.Interface @this, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hdcTargetDev, winmdroot.Graphics.Gdi.HDC hdcDraw, winmdroot.Foundation.RECTL? lprcBounds, winmdroot.Foundation.RECTL? lprcWBounds, nint pfnContinue, nuint dwContinue) 28 winmdroot.Foundation.HRESULT __result = @this.Draw(dwDrawAspect, lindex, pvAspect, ptd, hdcTargetDev, hdcDraw, lprcBounds.HasValue ? &lprcBoundsLocal : null, lprcWBounds.HasValue ? &lprcWBoundsLocal : null, pfnContinue, dwContinue); 33 internal static unsafe winmdroot.Foundation.HRESULT GetColorSet(this winmdroot.System.Ole.IViewObject2.Interface @this, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, winmdroot.System.Com.DVTARGETDEVICE* ptd, winmdroot.Graphics.Gdi.HDC hicTargetDev, out winmdroot.Graphics.Gdi.LOGPALETTE* ppColorSet) 37 winmdroot.Foundation.HRESULT __result = @this.GetColorSet(dwDrawAspect, lindex, pvAspect, ptd, hicTargetDev, ppColorSetLocal); 43 internal static unsafe winmdroot.Foundation.HRESULT Freeze(this winmdroot.System.Ole.IViewObject2.Interface @this, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, void* pvAspect, out uint pdwFreeze) 47 winmdroot.Foundation.HRESULT __result = @this.Freeze(dwDrawAspect, lindex, pvAspect, pdwFreezeLocal); 53 internal static unsafe winmdroot.Foundation.HRESULT GetExtent(this winmdroot.System.Ole.IViewObject2.Interface @this, winmdroot.System.Com.DVASPECT dwDrawAspect, int lindex, winmdroot.System.Com.DVTARGETDEVICE* ptd, out winmdroot.Foundation.SIZE lpsizel) 57 winmdroot.Foundation.HRESULT __result = @this.GetExtent(dwDrawAspect, lindex, ptd, lpsizelLocal);
Windows.Win32.TASKDIALOGCONFIG.g.cs (1)
157 internal unsafe delegate *unmanaged[Stdcall]<global::Windows.Win32.Foundation.HWND,uint,global::Windows.Win32.Foundation.WPARAM,global::Windows.Win32.Foundation.LPARAM,nint,global::Windows.Win32.Foundation.HRESULT> pfCallback;
Windows.Win32.UI_Accessibility_IAccessible_Extensions.g.cs (18)
24 internal static unsafe winmdroot.Foundation.HRESULT get_accChildCount(this winmdroot.UI.Accessibility.IAccessible.Interface @this, out int pcountChildren) 28 winmdroot.Foundation.HRESULT __result = @this.get_accChildCount(pcountChildrenLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_accRole(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.System.Variant.VARIANT pvarRole) 38 winmdroot.Foundation.HRESULT __result = @this.get_accRole(varChild, pvarRoleLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_accState(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.System.Variant.VARIANT varChild, out winmdroot.System.Variant.VARIANT pvarState) 48 winmdroot.Foundation.HRESULT __result = @this.get_accState(varChild, pvarStateLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_accHelpTopic(this winmdroot.UI.Accessibility.IAccessible.Interface @this, winmdroot.Foundation.BSTR* pszHelpFile, winmdroot.System.Variant.VARIANT varChild, out int pidTopic) 58 winmdroot.Foundation.HRESULT __result = @this.get_accHelpTopic(pszHelpFile, varChild, pidTopicLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT get_accFocus(this winmdroot.UI.Accessibility.IAccessible.Interface @this, out winmdroot.System.Variant.VARIANT pvarChild) 68 winmdroot.Foundation.HRESULT __result = @this.get_accFocus(pvarChildLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT get_accSelection(this winmdroot.UI.Accessibility.IAccessible.Interface @this, out winmdroot.System.Variant.VARIANT pvarChildren) 78 winmdroot.Foundation.HRESULT __result = @this.get_accSelection(pvarChildrenLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT accLocation(this winmdroot.UI.Accessibility.IAccessible.Interface @this, out int pxLeft, out int pyTop, out int pcxWidth, out int pcyHeight, winmdroot.System.Variant.VARIANT varChild) 94 winmdroot.Foundation.HRESULT __result = @this.accLocation(pxLeftLocal, pyTopLocal, pcxWidthLocal, pcyHeightLocal, varChild); 103 internal static unsafe winmdroot.Foundation.HRESULT accNavigate(this winmdroot.UI.Accessibility.IAccessible.Interface @this, int navDir, winmdroot.System.Variant.VARIANT varStart, out winmdroot.System.Variant.VARIANT pvarEndUpAt) 107 winmdroot.Foundation.HRESULT __result = @this.accNavigate(navDir, varStart, pvarEndUpAtLocal); 113 internal static unsafe winmdroot.Foundation.HRESULT accHitTest(this winmdroot.UI.Accessibility.IAccessible.Interface @this, int xLeft, int yTop, out winmdroot.System.Variant.VARIANT pvarChild) 117 winmdroot.Foundation.HRESULT __result = @this.accHitTest(xLeft, yTop, pvarChildLocal);
Windows.Win32.UI_Accessibility_IAccessibleEx_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetIAccessiblePair(this winmdroot.UI.Accessibility.IAccessibleEx.Interface @this, winmdroot.UI.Accessibility.IAccessible** ppAcc, out int pidChild) 28 winmdroot.Foundation.HRESULT __result = @this.GetIAccessiblePair(ppAcc, pidChildLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetRuntimeId(this winmdroot.UI.Accessibility.IAccessibleEx.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.GetRuntimeId(pRetValLocal);
Windows.Win32.UI_Accessibility_IExpandCollapseProvider_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT get_ExpandCollapseState(this winmdroot.UI.Accessibility.IExpandCollapseProvider.Interface @this, out winmdroot.UI.Accessibility.ExpandCollapseState pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.get_ExpandCollapseState(pRetValLocal);
Windows.Win32.UI_Accessibility_IGridItemProvider_Extensions.g.cs (8)
24 internal static unsafe winmdroot.Foundation.HRESULT get_Row(this winmdroot.UI.Accessibility.IGridItemProvider.Interface @this, out int pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.get_Row(pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_Column(this winmdroot.UI.Accessibility.IGridItemProvider.Interface @this, out int pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.get_Column(pRetValLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_RowSpan(this winmdroot.UI.Accessibility.IGridItemProvider.Interface @this, out int pRetVal) 48 winmdroot.Foundation.HRESULT __result = @this.get_RowSpan(pRetValLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_ColumnSpan(this winmdroot.UI.Accessibility.IGridItemProvider.Interface @this, out int pRetVal) 58 winmdroot.Foundation.HRESULT __result = @this.get_ColumnSpan(pRetValLocal);
Windows.Win32.UI_Accessibility_IGridProvider_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT get_RowCount(this winmdroot.UI.Accessibility.IGridProvider.Interface @this, out int pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.get_RowCount(pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_ColumnCount(this winmdroot.UI.Accessibility.IGridProvider.Interface @this, out int pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.get_ColumnCount(pRetValLocal);
Windows.Win32.UI_Accessibility_ILegacyIAccessibleProvider_Extensions.g.cs (10)
24 internal static unsafe winmdroot.Foundation.HRESULT SetValue(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, string szValue) 28 winmdroot.Foundation.HRESULT __result = @this.SetValue(szValueLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_ChildId(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out int pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.get_ChildId(pRetValLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_Role(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out uint pdwRole) 48 winmdroot.Foundation.HRESULT __result = @this.get_Role(pdwRoleLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_State(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out uint pdwState) 58 winmdroot.Foundation.HRESULT __result = @this.get_State(pdwStateLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT GetSelection(this winmdroot.UI.Accessibility.ILegacyIAccessibleProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pvarSelectedChildren) 68 winmdroot.Foundation.HRESULT __result = @this.GetSelection(pvarSelectedChildrenLocal);
Windows.Win32.UI_Accessibility_IMultipleViewProvider_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT get_CurrentView(this winmdroot.UI.Accessibility.IMultipleViewProvider.Interface @this, out int pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.get_CurrentView(pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetSupportedViews(this winmdroot.UI.Accessibility.IMultipleViewProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.GetSupportedViews(pRetValLocal);
Windows.Win32.UI_Accessibility_IRangeValueProvider_Extensions.g.cs (12)
24 internal static unsafe winmdroot.Foundation.HRESULT get_Value(this winmdroot.UI.Accessibility.IRangeValueProvider.Interface @this, out double pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.get_Value(pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(this winmdroot.UI.Accessibility.IRangeValueProvider.Interface @this, out winmdroot.Foundation.BOOL pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.get_IsReadOnly(pRetValLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_Maximum(this winmdroot.UI.Accessibility.IRangeValueProvider.Interface @this, out double pRetVal) 48 winmdroot.Foundation.HRESULT __result = @this.get_Maximum(pRetValLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_Minimum(this winmdroot.UI.Accessibility.IRangeValueProvider.Interface @this, out double pRetVal) 58 winmdroot.Foundation.HRESULT __result = @this.get_Minimum(pRetValLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT get_LargeChange(this winmdroot.UI.Accessibility.IRangeValueProvider.Interface @this, out double pRetVal) 68 winmdroot.Foundation.HRESULT __result = @this.get_LargeChange(pRetValLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT get_SmallChange(this winmdroot.UI.Accessibility.IRangeValueProvider.Interface @this, out double pRetVal) 78 winmdroot.Foundation.HRESULT __result = @this.get_SmallChange(pRetValLocal);
Windows.Win32.UI_Accessibility_IRawElementProviderFragment_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT GetRuntimeId(this winmdroot.UI.Accessibility.IRawElementProviderFragment.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.GetRuntimeId(pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_BoundingRectangle(this winmdroot.UI.Accessibility.IRawElementProviderFragment.Interface @this, out winmdroot.UI.Accessibility.UiaRect pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.get_BoundingRectangle(pRetValLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetEmbeddedFragmentRoots(this winmdroot.UI.Accessibility.IRawElementProviderFragment.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 48 winmdroot.Foundation.HRESULT __result = @this.GetEmbeddedFragmentRoots(pRetValLocal);
Windows.Win32.UI_Accessibility_IRawElementProviderSimple_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT get_ProviderOptions(this winmdroot.UI.Accessibility.IRawElementProviderSimple.Interface @this, out winmdroot.UI.Accessibility.ProviderOptions pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.get_ProviderOptions(pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetPropertyValue(this winmdroot.UI.Accessibility.IRawElementProviderSimple.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, out winmdroot.System.Variant.VARIANT pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.GetPropertyValue(propertyId, pRetValLocal);
Windows.Win32.UI_Accessibility_ISelectionItemProvider_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT get_IsSelected(this winmdroot.UI.Accessibility.ISelectionItemProvider.Interface @this, out winmdroot.Foundation.BOOL pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.get_IsSelected(pRetValLocal);
Windows.Win32.UI_Accessibility_ISelectionProvider_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT GetSelection(this winmdroot.UI.Accessibility.ISelectionProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.GetSelection(pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_CanSelectMultiple(this winmdroot.UI.Accessibility.ISelectionProvider.Interface @this, out winmdroot.Foundation.BOOL pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.get_CanSelectMultiple(pRetValLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_IsSelectionRequired(this winmdroot.UI.Accessibility.ISelectionProvider.Interface @this, out winmdroot.Foundation.BOOL pRetVal) 48 winmdroot.Foundation.HRESULT __result = @this.get_IsSelectionRequired(pRetValLocal);
Windows.Win32.UI_Accessibility_ITableItemProvider_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetRowHeaderItems(this winmdroot.UI.Accessibility.ITableItemProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.GetRowHeaderItems(pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetColumnHeaderItems(this winmdroot.UI.Accessibility.ITableItemProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.GetColumnHeaderItems(pRetValLocal);
Windows.Win32.UI_Accessibility_ITableProvider_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT GetRowHeaders(this winmdroot.UI.Accessibility.ITableProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.GetRowHeaders(pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetColumnHeaders(this winmdroot.UI.Accessibility.ITableProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.GetColumnHeaders(pRetValLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_RowOrColumnMajor(this winmdroot.UI.Accessibility.ITableProvider.Interface @this, out winmdroot.UI.Accessibility.RowOrColumnMajor pRetVal) 48 winmdroot.Foundation.HRESULT __result = @this.get_RowOrColumnMajor(pRetValLocal);
Windows.Win32.UI_Accessibility_ITextProvider_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetSelection(this winmdroot.UI.Accessibility.ITextProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.GetSelection(pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetVisibleRanges(this winmdroot.UI.Accessibility.ITextProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.GetVisibleRanges(pRetValLocal);
Windows.Win32.UI_Accessibility_ITextProvider2_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT GetSelection(this winmdroot.UI.Accessibility.ITextProvider2.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.GetSelection(pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetVisibleRanges(this winmdroot.UI.Accessibility.ITextProvider2.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.GetVisibleRanges(pRetValLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetCaretRange(this winmdroot.UI.Accessibility.ITextProvider2.Interface @this, out winmdroot.Foundation.BOOL isActive, winmdroot.UI.Accessibility.ITextRangeProvider** pRetVal) 48 winmdroot.Foundation.HRESULT __result = @this.GetCaretRange(isActiveLocal, pRetVal);
Windows.Win32.UI_Accessibility_ITextRangeProvider_Extensions.g.cs (14)
24 internal static unsafe winmdroot.Foundation.HRESULT Compare(this winmdroot.UI.Accessibility.ITextRangeProvider.Interface @this, winmdroot.UI.Accessibility.ITextRangeProvider* range, out winmdroot.Foundation.BOOL pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.Compare(range, pRetValLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT CompareEndpoints(this winmdroot.UI.Accessibility.ITextRangeProvider.Interface @this, winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.ITextRangeProvider* targetRange, winmdroot.UI.Accessibility.TextPatternRangeEndpoint targetEndpoint, out int pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.CompareEndpoints(endpoint, targetRange, targetEndpoint, pRetValLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetAttributeValue(this winmdroot.UI.Accessibility.ITextRangeProvider.Interface @this, winmdroot.UI.Accessibility.UIA_TEXTATTRIBUTE_ID attributeId, out winmdroot.System.Variant.VARIANT pRetVal) 48 winmdroot.Foundation.HRESULT __result = @this.GetAttributeValue(attributeId, pRetValLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetBoundingRectangles(this winmdroot.UI.Accessibility.ITextRangeProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 58 winmdroot.Foundation.HRESULT __result = @this.GetBoundingRectangles(pRetValLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT Move(this winmdroot.UI.Accessibility.ITextRangeProvider.Interface @this, winmdroot.UI.Accessibility.TextUnit unit, int count, out int pRetVal) 68 winmdroot.Foundation.HRESULT __result = @this.Move(unit, count, pRetValLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT MoveEndpointByUnit(this winmdroot.UI.Accessibility.ITextRangeProvider.Interface @this, winmdroot.UI.Accessibility.TextPatternRangeEndpoint endpoint, winmdroot.UI.Accessibility.TextUnit unit, int count, out int pRetVal) 78 winmdroot.Foundation.HRESULT __result = @this.MoveEndpointByUnit(endpoint, unit, count, pRetValLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT GetChildren(this winmdroot.UI.Accessibility.ITextRangeProvider.Interface @this, out winmdroot.System.Com.SAFEARRAY* pRetVal) 88 winmdroot.Foundation.HRESULT __result = @this.GetChildren(pRetValLocal);
Windows.Win32.UI_Accessibility_IToggleProvider_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT get_ToggleState(this winmdroot.UI.Accessibility.IToggleProvider.Interface @this, out winmdroot.UI.Accessibility.ToggleState pRetVal) 28 winmdroot.Foundation.HRESULT __result = @this.get_ToggleState(pRetValLocal);
Windows.Win32.UI_Accessibility_IUIAutomation_Extensions.g.cs (22)
24 internal static unsafe winmdroot.Foundation.HRESULT CompareElements(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.UI.Accessibility.IUIAutomationElement* el1, winmdroot.UI.Accessibility.IUIAutomationElement* el2, out winmdroot.Foundation.BOOL areSame) 28 winmdroot.Foundation.HRESULT __result = @this.CompareElements(el1, el2, areSameLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT CompareRuntimeIds(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.System.Com.SAFEARRAY* runtimeId1, winmdroot.System.Com.SAFEARRAY* runtimeId2, out winmdroot.Foundation.BOOL areSame) 38 winmdroot.Foundation.HRESULT __result = @this.CompareRuntimeIds(runtimeId1, runtimeId2, areSameLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT AddPropertyChangedEventHandlerNativeArray(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.UI.Accessibility.IUIAutomationElement* element, winmdroot.UI.Accessibility.TreeScope scope, winmdroot.UI.Accessibility.IUIAutomationCacheRequest* cacheRequest, winmdroot.UI.Accessibility.IUIAutomationPropertyChangedEventHandler* handler, ReadOnlySpan<winmdroot.UI.Accessibility.UIA_PROPERTY_ID> propertyArray) 48 winmdroot.Foundation.HRESULT __result = @this.AddPropertyChangedEventHandlerNativeArray(element, scope, cacheRequest, handler, propertyArrayLocal, propertyArray.Length); 54 internal static unsafe winmdroot.Foundation.HRESULT IntNativeArrayToSafeArray(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, ReadOnlySpan<int> array, out winmdroot.System.Com.SAFEARRAY* safeArray) 60 winmdroot.Foundation.HRESULT __result = @this.IntNativeArrayToSafeArray(arrayLocal, array.Length, safeArrayLocal); 67 internal static unsafe winmdroot.Foundation.HRESULT IntSafeArrayToNativeArray(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.System.Com.SAFEARRAY* intArray, int** array, out int arrayCount) 71 winmdroot.Foundation.HRESULT __result = @this.IntSafeArrayToNativeArray(intArray, array, arrayCountLocal); 77 internal static unsafe winmdroot.Foundation.HRESULT RectToVariant(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.Foundation.RECT rc, out winmdroot.System.Variant.VARIANT var) 81 winmdroot.Foundation.HRESULT __result = @this.RectToVariant(rc, varLocal); 87 internal static unsafe winmdroot.Foundation.HRESULT VariantToRect(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.System.Variant.VARIANT var, out winmdroot.Foundation.RECT rc) 91 winmdroot.Foundation.HRESULT __result = @this.VariantToRect(var, rcLocal); 97 internal static unsafe winmdroot.Foundation.HRESULT SafeArrayToRectNativeArray(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.System.Com.SAFEARRAY* rects, winmdroot.Foundation.RECT** rectArray, out int rectArrayCount) 101 winmdroot.Foundation.HRESULT __result = @this.SafeArrayToRectNativeArray(rects, rectArray, rectArrayCountLocal); 107 internal static unsafe winmdroot.Foundation.HRESULT PollForPotentialSupportedPatterns(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.UI.Accessibility.IUIAutomationElement* pElement, out winmdroot.System.Com.SAFEARRAY* patternIds, out winmdroot.System.Com.SAFEARRAY* patternNames) 113 winmdroot.Foundation.HRESULT __result = @this.PollForPotentialSupportedPatterns(pElement, patternIdsLocal, patternNamesLocal); 120 internal static unsafe winmdroot.Foundation.HRESULT PollForPotentialSupportedProperties(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.UI.Accessibility.IUIAutomationElement* pElement, out winmdroot.System.Com.SAFEARRAY* propertyIds, out winmdroot.System.Com.SAFEARRAY* propertyNames) 126 winmdroot.Foundation.HRESULT __result = @this.PollForPotentialSupportedProperties(pElement, propertyIdsLocal, propertyNamesLocal); 133 internal static unsafe winmdroot.Foundation.HRESULT CheckNotSupported(this winmdroot.UI.Accessibility.IUIAutomation.Interface @this, winmdroot.System.Variant.VARIANT value, out winmdroot.Foundation.BOOL isNotSupported) 137 winmdroot.Foundation.HRESULT __result = @this.CheckNotSupported(value, isNotSupportedLocal);
Windows.Win32.UI_Accessibility_IUIAutomationElement_Extensions.g.cs (18)
24 internal static unsafe winmdroot.Foundation.HRESULT GetRuntimeId(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, out winmdroot.System.Com.SAFEARRAY* runtimeId) 28 winmdroot.Foundation.HRESULT __result = @this.GetRuntimeId(runtimeIdLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetCurrentPropertyValue(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, out winmdroot.System.Variant.VARIANT retVal) 38 winmdroot.Foundation.HRESULT __result = @this.GetCurrentPropertyValue(propertyId, retValLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetCurrentPropertyValueEx(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, out winmdroot.System.Variant.VARIANT retVal) 48 winmdroot.Foundation.HRESULT __result = @this.GetCurrentPropertyValueEx(propertyId, ignoreDefaultValue, retValLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetCachedPropertyValue(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, out winmdroot.System.Variant.VARIANT retVal) 58 winmdroot.Foundation.HRESULT __result = @this.GetCachedPropertyValue(propertyId, retValLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT GetCachedPropertyValueEx(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, winmdroot.Foundation.BOOL ignoreDefaultValue, out winmdroot.System.Variant.VARIANT retVal) 68 winmdroot.Foundation.HRESULT __result = @this.GetCachedPropertyValueEx(propertyId, ignoreDefaultValue, retValLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT GetCurrentPatternAs(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, in global::System.Guid riid, out void* patternObject) 80 winmdroot.Foundation.HRESULT __result = @this.GetCurrentPatternAs(patternId, riidLocal, patternObjectLocal); 87 internal static unsafe winmdroot.Foundation.HRESULT GetCachedPatternAs(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, winmdroot.UI.Accessibility.UIA_PATTERN_ID patternId, in global::System.Guid riid, out void* patternObject) 93 winmdroot.Foundation.HRESULT __result = @this.GetCachedPatternAs(patternId, riidLocal, patternObjectLocal); 100 internal static unsafe winmdroot.Foundation.HRESULT get_CurrentBoundingRectangle(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, out winmdroot.Foundation.RECT retVal) 104 winmdroot.Foundation.HRESULT __result = @this.get_CurrentBoundingRectangle(retValLocal); 110 internal static unsafe winmdroot.Foundation.HRESULT GetClickablePoint(this winmdroot.UI.Accessibility.IUIAutomationElement.Interface @this, out global::System.Drawing.Point clickable, out winmdroot.Foundation.BOOL gotClickable) 116 winmdroot.Foundation.HRESULT __result = @this.GetClickablePoint(clickableLocal, gotClickableLocal);
Windows.Win32.UI_Accessibility_IUIAutomationProxyFactoryEntry_Extensions.g.cs (12)
24 internal static unsafe winmdroot.Foundation.HRESULT get_AllowSubstringMatch(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, out winmdroot.Foundation.BOOL allowSubstringMatch) 28 winmdroot.Foundation.HRESULT __result = @this.get_AllowSubstringMatch(allowSubstringMatchLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_CanCheckBaseClass(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, out winmdroot.Foundation.BOOL canCheckBaseClass) 38 winmdroot.Foundation.HRESULT __result = @this.get_CanCheckBaseClass(canCheckBaseClassLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_NeedsAdviseEvents(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, out winmdroot.Foundation.BOOL adviseEvents) 48 winmdroot.Foundation.HRESULT __result = @this.get_NeedsAdviseEvents(adviseEventsLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT put_ClassName(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, string className) 58 winmdroot.Foundation.HRESULT __result = @this.put_ClassName(classNameLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT put_ImageName(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, string imageName) 68 winmdroot.Foundation.HRESULT __result = @this.put_ImageName(imageNameLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT GetWinEventsForAutomationEvent(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryEntry.Interface @this, winmdroot.UI.Accessibility.UIA_EVENT_ID eventId, winmdroot.UI.Accessibility.UIA_PROPERTY_ID propertyId, out winmdroot.System.Com.SAFEARRAY* winEvents) 78 winmdroot.Foundation.HRESULT __result = @this.GetWinEventsForAutomationEvent(eventId, propertyId, winEventsLocal);
Windows.Win32.UI_Accessibility_IUIAutomationProxyFactoryMapping_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetTable(this winmdroot.UI.Accessibility.IUIAutomationProxyFactoryMapping.Interface @this, out winmdroot.System.Com.SAFEARRAY* table) 28 winmdroot.Foundation.HRESULT __result = @this.GetTable(tableLocal);
Windows.Win32.UI_Accessibility_IValueProvider_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT SetValue(this winmdroot.UI.Accessibility.IValueProvider.Interface @this, string val) 28 winmdroot.Foundation.HRESULT __result = @this.SetValue(valLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_IsReadOnly(this winmdroot.UI.Accessibility.IValueProvider.Interface @this, out winmdroot.Foundation.BOOL pRetVal) 38 winmdroot.Foundation.HRESULT __result = @this.get_IsReadOnly(pRetValLocal);
Windows.Win32.UI_Controls_RichEdit_IRichEditOle_Extensions.g.cs (12)
24 internal static unsafe winmdroot.Foundation.HRESULT GetObject(this winmdroot.UI.Controls.RichEdit.IRichEditOle.Interface @this, int iob, ref winmdroot.UI.Controls.RichEdit.REOBJECT lpreobject, winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_OBJECT_FLAGS dwFlags) 28 winmdroot.Foundation.HRESULT __result = @this.GetObject(iob, lpreobjectLocal, dwFlags); 34 internal static unsafe winmdroot.Foundation.HRESULT InsertObject(this winmdroot.UI.Controls.RichEdit.IRichEditOle.Interface @this, ref winmdroot.UI.Controls.RichEdit.REOBJECT lpreobject) 38 winmdroot.Foundation.HRESULT __result = @this.InsertObject(lpreobjectLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT ConvertObject(this winmdroot.UI.Controls.RichEdit.IRichEditOle.Interface @this, int iob, in global::System.Guid rclsidNew, string lpstrUserTypeNew) 50 winmdroot.Foundation.HRESULT __result = @this.ConvertObject(iob, rclsidNewLocal, new winmdroot.Foundation.PCSTR (lpstrUserTypeNewLocal)); 57 internal static unsafe winmdroot.Foundation.HRESULT ActivateAs(this winmdroot.UI.Controls.RichEdit.IRichEditOle.Interface @this, in global::System.Guid rclsid, in global::System.Guid rclsidAs) 63 winmdroot.Foundation.HRESULT __result = @this.ActivateAs(rclsidLocal, rclsidAsLocal); 70 internal static unsafe winmdroot.Foundation.HRESULT SetHostNames(this winmdroot.UI.Controls.RichEdit.IRichEditOle.Interface @this, string lpstrContainerApp, string lpstrContainerObj) 76 winmdroot.Foundation.HRESULT __result = @this.SetHostNames(new winmdroot.Foundation.PCSTR (lpstrContainerAppLocal), new winmdroot.Foundation.PCSTR (lpstrContainerObjLocal)); 83 internal static unsafe winmdroot.Foundation.HRESULT GetClipboardData(this winmdroot.UI.Controls.RichEdit.IRichEditOle.Interface @this, ref winmdroot.UI.Controls.RichEdit.CHARRANGE lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj) 87 winmdroot.Foundation.HRESULT __result = @this.GetClipboardData(lpchrgLocal, reco, lplpdataobj);
Windows.Win32.UI_Controls_RichEdit_IRichEditOleCallback_Extensions.g.cs (12)
24 internal static unsafe winmdroot.Foundation.HRESULT GetInPlaceContext(this winmdroot.UI.Controls.RichEdit.IRichEditOleCallback.Interface @this, winmdroot.System.Ole.IOleInPlaceFrame** lplpFrame, winmdroot.System.Ole.IOleInPlaceUIWindow** lplpDoc, ref winmdroot.System.Ole.OLEINPLACEFRAMEINFO lpFrameInfo) 28 winmdroot.Foundation.HRESULT __result = @this.GetInPlaceContext(lplpFrame, lplpDoc, lpFrameInfoLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT QueryInsertObject(this winmdroot.UI.Controls.RichEdit.IRichEditOleCallback.Interface @this, ref global::System.Guid lpclsid, winmdroot.System.Com.StructuredStorage.IStorage* lpstg, int cp) 38 winmdroot.Foundation.HRESULT __result = @this.QueryInsertObject(lpclsidLocal, lpstg, cp); 44 internal static unsafe winmdroot.Foundation.HRESULT QueryAcceptData(this winmdroot.UI.Controls.RichEdit.IRichEditOleCallback.Interface @this, winmdroot.System.Com.IDataObject* lpdataobj, ref ushort lpcfFormat, winmdroot.System.SystemServices.RECO_FLAGS reco, winmdroot.Foundation.BOOL fReally, winmdroot.Foundation.HGLOBAL hMetaPict) 48 winmdroot.Foundation.HRESULT __result = @this.QueryAcceptData(lpdataobj, lpcfFormatLocal, reco, fReally, hMetaPict); 54 internal static unsafe winmdroot.Foundation.HRESULT GetClipboardData(this winmdroot.UI.Controls.RichEdit.IRichEditOleCallback.Interface @this, ref winmdroot.UI.Controls.RichEdit.CHARRANGE lpchrg, uint reco, winmdroot.System.Com.IDataObject** lplpdataobj) 58 winmdroot.Foundation.HRESULT __result = @this.GetClipboardData(lpchrgLocal, reco, lplpdataobj); 64 internal static unsafe winmdroot.Foundation.HRESULT GetDragDropEffect(this winmdroot.UI.Controls.RichEdit.IRichEditOleCallback.Interface @this, winmdroot.Foundation.BOOL fDrag, winmdroot.System.SystemServices.MODIFIERKEYS_FLAGS grfKeyState, ref winmdroot.System.Ole.DROPEFFECT pdwEffect) 68 winmdroot.Foundation.HRESULT __result = @this.GetDragDropEffect(fDrag, grfKeyState, pdwEffectLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT GetContextMenu(this winmdroot.UI.Controls.RichEdit.IRichEditOleCallback.Interface @this, winmdroot.UI.Controls.RichEdit.RICH_EDIT_GET_CONTEXT_MENU_SEL_TYPE seltype, winmdroot.System.Ole.IOleObject* lpoleobj, ref winmdroot.UI.Controls.RichEdit.CHARRANGE lpchrg, ref winmdroot.UI.WindowsAndMessaging.HMENU lphmenu) 80 winmdroot.Foundation.HRESULT __result = @this.GetContextMenu(seltype, lpoleobj, lpchrgLocal, lphmenuLocal);
Windows.Win32.UI_Controls_RichEdit_ITextDocument_Extensions.g.cs (18)
24 internal static unsafe winmdroot.Foundation.HRESULT GetStoryCount(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out int pCount) 28 winmdroot.Foundation.HRESULT __result = @this.GetStoryCount(pCountLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetSaved(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out int pValue) 38 winmdroot.Foundation.HRESULT __result = @this.GetSaved(pValueLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetDefaultTabStop(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out float pValue) 48 winmdroot.Foundation.HRESULT __result = @this.GetDefaultTabStop(pValueLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT Open(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, in winmdroot.System.Variant.VARIANT pVar, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int CodePage) 58 winmdroot.Foundation.HRESULT __result = @this.Open(pVarLocal, Flags, CodePage); 64 internal static unsafe winmdroot.Foundation.HRESULT Save(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, in winmdroot.System.Variant.VARIANT pVar, winmdroot.UI.Controls.RichEdit.tomConstants Flags, int CodePage) 68 winmdroot.Foundation.HRESULT __result = @this.Save(pVarLocal, Flags, CodePage); 74 internal static unsafe winmdroot.Foundation.HRESULT Freeze(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out int pCount) 78 winmdroot.Foundation.HRESULT __result = @this.Freeze(pCountLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT Unfreeze(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, out int pCount) 88 winmdroot.Foundation.HRESULT __result = @this.Unfreeze(pCountLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT Undo(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, int Count, out int pCount) 98 winmdroot.Foundation.HRESULT __result = @this.Undo(Count, pCountLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT Redo(this winmdroot.UI.Controls.RichEdit.ITextDocument.Interface @this, int Count, out int pCount) 108 winmdroot.Foundation.HRESULT __result = @this.Redo(Count, pCountLocal);
Windows.Win32.UI_Controls_RichEdit_ITextFont_Extensions.g.cs (52)
24 internal static unsafe winmdroot.Foundation.HRESULT CanChange(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 28 winmdroot.Foundation.HRESULT __result = @this.CanChange(pValueLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT IsEqual(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, winmdroot.UI.Controls.RichEdit.ITextFont* pFont, out int pValue) 38 winmdroot.Foundation.HRESULT __result = @this.IsEqual(pFont, pValueLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetStyle(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 48 winmdroot.Foundation.HRESULT __result = @this.GetStyle(pValueLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetAllCaps(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 58 winmdroot.Foundation.HRESULT __result = @this.GetAllCaps(pValueLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT GetAnimation(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 68 winmdroot.Foundation.HRESULT __result = @this.GetAnimation(pValueLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT GetBackColor(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 78 winmdroot.Foundation.HRESULT __result = @this.GetBackColor(pValueLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT GetBold(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 88 winmdroot.Foundation.HRESULT __result = @this.GetBold(pValueLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT GetEmboss(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 98 winmdroot.Foundation.HRESULT __result = @this.GetEmboss(pValueLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT GetForeColor(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 108 winmdroot.Foundation.HRESULT __result = @this.GetForeColor(pValueLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT GetHidden(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 118 winmdroot.Foundation.HRESULT __result = @this.GetHidden(pValueLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT GetEngrave(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 128 winmdroot.Foundation.HRESULT __result = @this.GetEngrave(pValueLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT GetItalic(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 138 winmdroot.Foundation.HRESULT __result = @this.GetItalic(pValueLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT GetKerning(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out float pValue) 148 winmdroot.Foundation.HRESULT __result = @this.GetKerning(pValueLocal); 154 internal static unsafe winmdroot.Foundation.HRESULT GetLanguageID(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 158 winmdroot.Foundation.HRESULT __result = @this.GetLanguageID(pValueLocal); 164 internal static unsafe winmdroot.Foundation.HRESULT GetOutline(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 168 winmdroot.Foundation.HRESULT __result = @this.GetOutline(pValueLocal); 174 internal static unsafe winmdroot.Foundation.HRESULT GetPosition(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out float pValue) 178 winmdroot.Foundation.HRESULT __result = @this.GetPosition(pValueLocal); 184 internal static unsafe winmdroot.Foundation.HRESULT GetProtected(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 188 winmdroot.Foundation.HRESULT __result = @this.GetProtected(pValueLocal); 194 internal static unsafe winmdroot.Foundation.HRESULT GetShadow(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 198 winmdroot.Foundation.HRESULT __result = @this.GetShadow(pValueLocal); 204 internal static unsafe winmdroot.Foundation.HRESULT GetSize(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out float pValue) 208 winmdroot.Foundation.HRESULT __result = @this.GetSize(pValueLocal); 214 internal static unsafe winmdroot.Foundation.HRESULT GetSmallCaps(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 218 winmdroot.Foundation.HRESULT __result = @this.GetSmallCaps(pValueLocal); 224 internal static unsafe winmdroot.Foundation.HRESULT GetSpacing(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out float pValue) 228 winmdroot.Foundation.HRESULT __result = @this.GetSpacing(pValueLocal); 234 internal static unsafe winmdroot.Foundation.HRESULT GetStrikeThrough(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 238 winmdroot.Foundation.HRESULT __result = @this.GetStrikeThrough(pValueLocal); 244 internal static unsafe winmdroot.Foundation.HRESULT GetSubscript(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 248 winmdroot.Foundation.HRESULT __result = @this.GetSubscript(pValueLocal); 254 internal static unsafe winmdroot.Foundation.HRESULT GetSuperscript(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 258 winmdroot.Foundation.HRESULT __result = @this.GetSuperscript(pValueLocal); 264 internal static unsafe winmdroot.Foundation.HRESULT GetUnderline(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 268 winmdroot.Foundation.HRESULT __result = @this.GetUnderline(pValueLocal); 274 internal static unsafe winmdroot.Foundation.HRESULT GetWeight(this winmdroot.UI.Controls.RichEdit.ITextFont.Interface @this, out int pValue) 278 winmdroot.Foundation.HRESULT __result = @this.GetWeight(pValueLocal);
Windows.Win32.UI_Controls_RichEdit_ITextPara_Extensions.g.cs (48)
24 internal static unsafe winmdroot.Foundation.HRESULT CanChange(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pValue) 28 winmdroot.Foundation.HRESULT __result = @this.CanChange(pValueLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT IsEqual(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, winmdroot.UI.Controls.RichEdit.ITextPara* pPara, out int pValue) 38 winmdroot.Foundation.HRESULT __result = @this.IsEqual(pPara, pValueLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetStyle(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pValue) 48 winmdroot.Foundation.HRESULT __result = @this.GetStyle(pValueLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetAlignment(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pValue) 58 winmdroot.Foundation.HRESULT __result = @this.GetAlignment(pValueLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT GetHyphenation(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out winmdroot.UI.Controls.RichEdit.tomConstants pValue) 68 winmdroot.Foundation.HRESULT __result = @this.GetHyphenation(pValueLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT GetFirstLineIndent(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out float pValue) 78 winmdroot.Foundation.HRESULT __result = @this.GetFirstLineIndent(pValueLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT GetKeepTogether(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out winmdroot.UI.Controls.RichEdit.tomConstants pValue) 88 winmdroot.Foundation.HRESULT __result = @this.GetKeepTogether(pValueLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT GetKeepWithNext(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out winmdroot.UI.Controls.RichEdit.tomConstants pValue) 98 winmdroot.Foundation.HRESULT __result = @this.GetKeepWithNext(pValueLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT GetLeftIndent(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out float pValue) 108 winmdroot.Foundation.HRESULT __result = @this.GetLeftIndent(pValueLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT GetLineSpacing(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out float pValue) 118 winmdroot.Foundation.HRESULT __result = @this.GetLineSpacing(pValueLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT GetLineSpacingRule(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pValue) 128 winmdroot.Foundation.HRESULT __result = @this.GetLineSpacingRule(pValueLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT GetListAlignment(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pValue) 138 winmdroot.Foundation.HRESULT __result = @this.GetListAlignment(pValueLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT GetListLevelIndex(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pValue) 148 winmdroot.Foundation.HRESULT __result = @this.GetListLevelIndex(pValueLocal); 154 internal static unsafe winmdroot.Foundation.HRESULT GetListStart(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pValue) 158 winmdroot.Foundation.HRESULT __result = @this.GetListStart(pValueLocal); 164 internal static unsafe winmdroot.Foundation.HRESULT GetListTab(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out float pValue) 168 winmdroot.Foundation.HRESULT __result = @this.GetListTab(pValueLocal); 174 internal static unsafe winmdroot.Foundation.HRESULT GetListType(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pValue) 178 winmdroot.Foundation.HRESULT __result = @this.GetListType(pValueLocal); 184 internal static unsafe winmdroot.Foundation.HRESULT GetNoLineNumber(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pValue) 188 winmdroot.Foundation.HRESULT __result = @this.GetNoLineNumber(pValueLocal); 194 internal static unsafe winmdroot.Foundation.HRESULT GetPageBreakBefore(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pValue) 198 winmdroot.Foundation.HRESULT __result = @this.GetPageBreakBefore(pValueLocal); 204 internal static unsafe winmdroot.Foundation.HRESULT GetRightIndent(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out float pValue) 208 winmdroot.Foundation.HRESULT __result = @this.GetRightIndent(pValueLocal); 214 internal static unsafe winmdroot.Foundation.HRESULT GetSpaceAfter(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out float pValue) 218 winmdroot.Foundation.HRESULT __result = @this.GetSpaceAfter(pValueLocal); 224 internal static unsafe winmdroot.Foundation.HRESULT GetSpaceBefore(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out float pValue) 228 winmdroot.Foundation.HRESULT __result = @this.GetSpaceBefore(pValueLocal); 234 internal static unsafe winmdroot.Foundation.HRESULT GetWidowControl(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pValue) 238 winmdroot.Foundation.HRESULT __result = @this.GetWidowControl(pValueLocal); 244 internal static unsafe winmdroot.Foundation.HRESULT GetTabCount(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, out int pCount) 248 winmdroot.Foundation.HRESULT __result = @this.GetTabCount(pCountLocal); 254 internal static unsafe winmdroot.Foundation.HRESULT GetTab(this winmdroot.UI.Controls.RichEdit.ITextPara.Interface @this, int iTab, out float ptbPos, out int ptbAlign, out int ptbLeader) 262 winmdroot.Foundation.HRESULT __result = @this.GetTab(iTab, ptbPosLocal, ptbAlignLocal, ptbLeaderLocal);
Windows.Win32.UI_Controls_RichEdit_ITextRange_Extensions.g.cs (62)
24 internal static unsafe winmdroot.Foundation.HRESULT GetChar(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pChar) 28 winmdroot.Foundation.HRESULT __result = @this.GetChar(pCharLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetStart(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pcpFirst) 38 winmdroot.Foundation.HRESULT __result = @this.GetStart(pcpFirstLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetEnd(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pcpLim) 48 winmdroot.Foundation.HRESULT __result = @this.GetEnd(pcpLimLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetStoryLength(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pCount) 58 winmdroot.Foundation.HRESULT __result = @this.GetStoryLength(pCountLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT GetStoryType(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pValue) 68 winmdroot.Foundation.HRESULT __result = @this.GetStoryType(pValueLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT Expand(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, out int pDelta) 78 winmdroot.Foundation.HRESULT __result = @this.Expand(Unit, pDeltaLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT GetIndex(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, out int pIndex) 88 winmdroot.Foundation.HRESULT __result = @this.GetIndex(Unit, pIndexLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT InRange(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 98 winmdroot.Foundation.HRESULT __result = @this.InRange(pRange, pValueLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT InStory(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 108 winmdroot.Foundation.HRESULT __result = @this.InStory(pRange, pValueLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT IsEqual(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 118 winmdroot.Foundation.HRESULT __result = @this.IsEqual(pRange, pValueLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT StartOf(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Extend, out int pDelta) 128 winmdroot.Foundation.HRESULT __result = @this.StartOf(Unit, Extend, pDeltaLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT EndOf(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Extend, out int pDelta) 138 winmdroot.Foundation.HRESULT __result = @this.EndOf(Unit, Extend, pDeltaLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT Move(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Count, out int pDelta) 148 winmdroot.Foundation.HRESULT __result = @this.Move(Unit, Count, pDeltaLocal); 154 internal static unsafe winmdroot.Foundation.HRESULT MoveStart(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Count, out int pDelta) 158 winmdroot.Foundation.HRESULT __result = @this.MoveStart(Unit, Count, pDeltaLocal); 164 internal static unsafe winmdroot.Foundation.HRESULT MoveEnd(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Count, out int pDelta) 168 winmdroot.Foundation.HRESULT __result = @this.MoveEnd(Unit, Count, pDeltaLocal); 174 internal static unsafe winmdroot.Foundation.HRESULT MoveWhile(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 180 winmdroot.Foundation.HRESULT __result = @this.MoveWhile(CsetLocal, Count, pDeltaLocal); 187 internal static unsafe winmdroot.Foundation.HRESULT MoveStartWhile(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 193 winmdroot.Foundation.HRESULT __result = @this.MoveStartWhile(CsetLocal, Count, pDeltaLocal); 200 internal static unsafe winmdroot.Foundation.HRESULT MoveEndWhile(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 206 winmdroot.Foundation.HRESULT __result = @this.MoveEndWhile(CsetLocal, Count, pDeltaLocal); 213 internal static unsafe winmdroot.Foundation.HRESULT MoveUntil(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 219 winmdroot.Foundation.HRESULT __result = @this.MoveUntil(CsetLocal, Count, pDeltaLocal); 226 internal static unsafe winmdroot.Foundation.HRESULT MoveStartUntil(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 232 winmdroot.Foundation.HRESULT __result = @this.MoveStartUntil(CsetLocal, Count, pDeltaLocal); 239 internal static unsafe winmdroot.Foundation.HRESULT MoveEndUntil(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 245 winmdroot.Foundation.HRESULT __result = @this.MoveEndUntil(CsetLocal, Count, pDeltaLocal); 252 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) 256 winmdroot.Foundation.HRESULT __result = @this.FindText(bstr, Count, Flags, pLengthLocal); 262 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) 266 winmdroot.Foundation.HRESULT __result = @this.FindTextStart(bstr, Count, Flags, pLengthLocal); 272 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) 276 winmdroot.Foundation.HRESULT __result = @this.FindTextEnd(bstr, Count, Flags, pLengthLocal); 282 internal static unsafe winmdroot.Foundation.HRESULT Delete(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, int Unit, int Count, out int pDelta) 286 winmdroot.Foundation.HRESULT __result = @this.Delete(Unit, Count, pDeltaLocal); 292 internal static unsafe winmdroot.Foundation.HRESULT Cut(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out winmdroot.System.Variant.VARIANT pVar) 296 winmdroot.Foundation.HRESULT __result = @this.Cut(pVarLocal); 302 internal static unsafe winmdroot.Foundation.HRESULT Copy(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out winmdroot.System.Variant.VARIANT pVar) 306 winmdroot.Foundation.HRESULT __result = @this.Copy(pVarLocal); 312 internal static unsafe winmdroot.Foundation.HRESULT Paste(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, in winmdroot.System.Variant.VARIANT pVar, int Format) 316 winmdroot.Foundation.HRESULT __result = @this.Paste(pVarLocal, Format); 322 internal static unsafe winmdroot.Foundation.HRESULT CanPaste(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, in winmdroot.System.Variant.VARIANT pVar, int Format, out int pValue) 328 winmdroot.Foundation.HRESULT __result = @this.CanPaste(pVarLocal, Format, pValueLocal); 335 internal static unsafe winmdroot.Foundation.HRESULT CanEdit(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, out int pValue) 339 winmdroot.Foundation.HRESULT __result = @this.CanEdit(pValueLocal); 345 internal static unsafe winmdroot.Foundation.HRESULT GetPoint(this winmdroot.UI.Controls.RichEdit.ITextRange.Interface @this, winmdroot.UI.Controls.RichEdit.tomConstants Type, out int px, out int py) 351 winmdroot.Foundation.HRESULT __result = @this.GetPoint(Type, pxLocal, pyLocal);
Windows.Win32.UI_Controls_RichEdit_ITextSelection_Extensions.g.cs (78)
24 internal static unsafe winmdroot.Foundation.HRESULT GetChar(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pChar) 28 winmdroot.Foundation.HRESULT __result = @this.GetChar(pCharLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetStart(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pcpFirst) 38 winmdroot.Foundation.HRESULT __result = @this.GetStart(pcpFirstLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetEnd(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pcpLim) 48 winmdroot.Foundation.HRESULT __result = @this.GetEnd(pcpLimLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetStoryLength(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pCount) 58 winmdroot.Foundation.HRESULT __result = @this.GetStoryLength(pCountLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT GetStoryType(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pValue) 68 winmdroot.Foundation.HRESULT __result = @this.GetStoryType(pValueLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT Expand(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, out int pDelta) 78 winmdroot.Foundation.HRESULT __result = @this.Expand(Unit, pDeltaLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT GetIndex(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, out int pIndex) 88 winmdroot.Foundation.HRESULT __result = @this.GetIndex(Unit, pIndexLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT InRange(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 98 winmdroot.Foundation.HRESULT __result = @this.InRange(pRange, pValueLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT InStory(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 108 winmdroot.Foundation.HRESULT __result = @this.InStory(pRange, pValueLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT IsEqual(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, winmdroot.UI.Controls.RichEdit.ITextRange* pRange, out int pValue) 118 winmdroot.Foundation.HRESULT __result = @this.IsEqual(pRange, pValueLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT StartOf(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Extend, out int pDelta) 128 winmdroot.Foundation.HRESULT __result = @this.StartOf(Unit, Extend, pDeltaLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT EndOf(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Extend, out int pDelta) 138 winmdroot.Foundation.HRESULT __result = @this.EndOf(Unit, Extend, pDeltaLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT Move(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, out int pDelta) 148 winmdroot.Foundation.HRESULT __result = @this.Move(Unit, Count, pDeltaLocal); 154 internal static unsafe winmdroot.Foundation.HRESULT MoveStart(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, out int pDelta) 158 winmdroot.Foundation.HRESULT __result = @this.MoveStart(Unit, Count, pDeltaLocal); 164 internal static unsafe winmdroot.Foundation.HRESULT MoveEnd(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, out int pDelta) 168 winmdroot.Foundation.HRESULT __result = @this.MoveEnd(Unit, Count, pDeltaLocal); 174 internal static unsafe winmdroot.Foundation.HRESULT MoveWhile(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 180 winmdroot.Foundation.HRESULT __result = @this.MoveWhile(CsetLocal, Count, pDeltaLocal); 187 internal static unsafe winmdroot.Foundation.HRESULT MoveStartWhile(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 193 winmdroot.Foundation.HRESULT __result = @this.MoveStartWhile(CsetLocal, Count, pDeltaLocal); 200 internal static unsafe winmdroot.Foundation.HRESULT MoveEndWhile(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 206 winmdroot.Foundation.HRESULT __result = @this.MoveEndWhile(CsetLocal, Count, pDeltaLocal); 213 internal static unsafe winmdroot.Foundation.HRESULT MoveUntil(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 219 winmdroot.Foundation.HRESULT __result = @this.MoveUntil(CsetLocal, Count, pDeltaLocal); 226 internal static unsafe winmdroot.Foundation.HRESULT MoveStartUntil(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 232 winmdroot.Foundation.HRESULT __result = @this.MoveStartUntil(CsetLocal, Count, pDeltaLocal); 239 internal static unsafe winmdroot.Foundation.HRESULT MoveEndUntil(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, in winmdroot.System.Variant.VARIANT Cset, int Count, out int pDelta) 245 winmdroot.Foundation.HRESULT __result = @this.MoveEndUntil(CsetLocal, Count, pDeltaLocal); 252 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) 256 winmdroot.Foundation.HRESULT __result = @this.FindText(bstr, Count, Flags, pLengthLocal); 262 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) 266 winmdroot.Foundation.HRESULT __result = @this.FindTextStart(bstr, Count, Flags, pLengthLocal); 272 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) 276 winmdroot.Foundation.HRESULT __result = @this.FindTextEnd(bstr, Count, Flags, pLengthLocal); 282 internal static unsafe winmdroot.Foundation.HRESULT Delete(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, out int pDelta) 286 winmdroot.Foundation.HRESULT __result = @this.Delete(Unit, Count, pDeltaLocal); 292 internal static unsafe winmdroot.Foundation.HRESULT Cut(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out winmdroot.System.Variant.VARIANT pVar) 296 winmdroot.Foundation.HRESULT __result = @this.Cut(pVarLocal); 302 internal static unsafe winmdroot.Foundation.HRESULT Copy(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out winmdroot.System.Variant.VARIANT pVar) 306 winmdroot.Foundation.HRESULT __result = @this.Copy(pVarLocal); 312 internal static unsafe winmdroot.Foundation.HRESULT Paste(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, in winmdroot.System.Variant.VARIANT pVar, int Format) 316 winmdroot.Foundation.HRESULT __result = @this.Paste(pVarLocal, Format); 322 internal static unsafe winmdroot.Foundation.HRESULT CanPaste(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, in winmdroot.System.Variant.VARIANT pVar, int Format, out int pValue) 328 winmdroot.Foundation.HRESULT __result = @this.CanPaste(pVarLocal, Format, pValueLocal); 335 internal static unsafe winmdroot.Foundation.HRESULT CanEdit(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pValue) 339 winmdroot.Foundation.HRESULT __result = @this.CanEdit(pValueLocal); 345 internal static unsafe winmdroot.Foundation.HRESULT GetPoint(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, winmdroot.UI.Controls.RichEdit.tomConstants Type, out int px, out int py) 351 winmdroot.Foundation.HRESULT __result = @this.GetPoint(Type, pxLocal, pyLocal); 358 internal static unsafe winmdroot.Foundation.HRESULT GetFlags(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pFlags) 362 winmdroot.Foundation.HRESULT __result = @this.GetFlags(pFlagsLocal); 368 internal static unsafe winmdroot.Foundation.HRESULT GetType(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, out int pType) 372 winmdroot.Foundation.HRESULT __result = @this.GetType(pTypeLocal); 378 internal static unsafe winmdroot.Foundation.HRESULT MoveLeft(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, int Extend, out int pDelta) 382 winmdroot.Foundation.HRESULT __result = @this.MoveLeft(Unit, Count, Extend, pDeltaLocal); 388 internal static unsafe winmdroot.Foundation.HRESULT MoveRight(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, int Extend, out int pDelta) 392 winmdroot.Foundation.HRESULT __result = @this.MoveRight(Unit, Count, Extend, pDeltaLocal); 398 internal static unsafe winmdroot.Foundation.HRESULT MoveUp(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, int Extend, out int pDelta) 402 winmdroot.Foundation.HRESULT __result = @this.MoveUp(Unit, Count, Extend, pDeltaLocal); 408 internal static unsafe winmdroot.Foundation.HRESULT MoveDown(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Count, int Extend, out int pDelta) 412 winmdroot.Foundation.HRESULT __result = @this.MoveDown(Unit, Count, Extend, pDeltaLocal); 418 internal static unsafe winmdroot.Foundation.HRESULT HomeKey(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, winmdroot.UI.Controls.RichEdit.tomConstants Unit, int Extend, out int pDelta) 422 winmdroot.Foundation.HRESULT __result = @this.HomeKey(Unit, Extend, pDeltaLocal); 428 internal static unsafe winmdroot.Foundation.HRESULT EndKey(this winmdroot.UI.Controls.RichEdit.ITextSelection.Interface @this, int Unit, int Extend, out int pDelta) 432 winmdroot.Foundation.HRESULT __result = @this.EndKey(Unit, Extend, pDeltaLocal);
Windows.Win32.UI_Controls_RichEdit_ITextStoryRanges_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetCount(this winmdroot.UI.Controls.RichEdit.ITextStoryRanges.Interface @this, out int pCount) 28 winmdroot.Foundation.HRESULT __result = @this.GetCount(pCountLocal);
Windows.Win32.UI_Shell_IAutoComplete_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT Init(this winmdroot.UI.Shell.IAutoComplete.Interface @this, winmdroot.Foundation.HWND hwndEdit, winmdroot.System.Com.IUnknown* punkACL, string pwszRegKeyPath, string pwszQuickComplete) 30 winmdroot.Foundation.HRESULT __result = @this.Init(hwndEdit, punkACL, pwszRegKeyPathLocal, pwszQuickCompleteLocal);
Windows.Win32.UI_Shell_IAutoComplete2_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT Init(this winmdroot.UI.Shell.IAutoComplete2.Interface @this, winmdroot.Foundation.HWND hwndEdit, winmdroot.System.Com.IUnknown* punkACL, string pwszRegKeyPath, string pwszQuickComplete) 30 winmdroot.Foundation.HRESULT __result = @this.Init(hwndEdit, punkACL, pwszRegKeyPathLocal, pwszQuickCompleteLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT GetOptions(this winmdroot.UI.Shell.IAutoComplete2.Interface @this, out uint pdwFlag) 41 winmdroot.Foundation.HRESULT __result = @this.GetOptions(pdwFlagLocal);
Windows.Win32.UI_Shell_IFileDialog_Extensions.g.cs (22)
24 internal static unsafe winmdroot.Foundation.HRESULT SetFileTypes(this winmdroot.UI.Shell.IFileDialog.Interface @this, ReadOnlySpan<winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC> rgFilterSpec) 28 winmdroot.Foundation.HRESULT __result = @this.SetFileTypes((uint )rgFilterSpec.Length, rgFilterSpecLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetFileTypeIndex(this winmdroot.UI.Shell.IFileDialog.Interface @this, out uint piFileType) 38 winmdroot.Foundation.HRESULT __result = @this.GetFileTypeIndex(piFileTypeLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT Advise(this winmdroot.UI.Shell.IFileDialog.Interface @this, winmdroot.UI.Shell.IFileDialogEvents* pfde, out uint pdwCookie) 48 winmdroot.Foundation.HRESULT __result = @this.Advise(pfde, pdwCookieLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetOptions(this winmdroot.UI.Shell.IFileDialog.Interface @this, out winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS pfos) 58 winmdroot.Foundation.HRESULT __result = @this.GetOptions(pfosLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT SetFileName(this winmdroot.UI.Shell.IFileDialog.Interface @this, string pszName) 68 winmdroot.Foundation.HRESULT __result = @this.SetFileName(pszNameLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT GetFileName(this winmdroot.UI.Shell.IFileDialog.Interface @this, out winmdroot.Foundation.PWSTR pszName) 78 winmdroot.Foundation.HRESULT __result = @this.GetFileName(pszNameLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT SetTitle(this winmdroot.UI.Shell.IFileDialog.Interface @this, string pszTitle) 88 winmdroot.Foundation.HRESULT __result = @this.SetTitle(pszTitleLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT SetOkButtonLabel(this winmdroot.UI.Shell.IFileDialog.Interface @this, string pszText) 98 winmdroot.Foundation.HRESULT __result = @this.SetOkButtonLabel(pszTextLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT SetFileNameLabel(this winmdroot.UI.Shell.IFileDialog.Interface @this, string pszLabel) 108 winmdroot.Foundation.HRESULT __result = @this.SetFileNameLabel(pszLabelLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT SetDefaultExtension(this winmdroot.UI.Shell.IFileDialog.Interface @this, string pszDefaultExtension) 118 winmdroot.Foundation.HRESULT __result = @this.SetDefaultExtension(pszDefaultExtensionLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT SetClientGuid(this winmdroot.UI.Shell.IFileDialog.Interface @this, in global::System.Guid guid) 128 winmdroot.Foundation.HRESULT __result = @this.SetClientGuid(guidLocal);
Windows.Win32.UI_Shell_IFileDialogCustomize_Extensions.g.cs (30)
24 internal static unsafe winmdroot.Foundation.HRESULT AddMenu(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, string pszLabel) 28 winmdroot.Foundation.HRESULT __result = @this.AddMenu(dwIDCtl, pszLabelLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT AddPushButton(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, string pszLabel) 38 winmdroot.Foundation.HRESULT __result = @this.AddPushButton(dwIDCtl, pszLabelLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT AddCheckButton(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, string pszLabel, winmdroot.Foundation.BOOL bChecked) 48 winmdroot.Foundation.HRESULT __result = @this.AddCheckButton(dwIDCtl, pszLabelLocal, bChecked); 54 internal static unsafe winmdroot.Foundation.HRESULT AddEditBox(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, string pszText) 58 winmdroot.Foundation.HRESULT __result = @this.AddEditBox(dwIDCtl, pszTextLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT AddText(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, string pszText) 68 winmdroot.Foundation.HRESULT __result = @this.AddText(dwIDCtl, pszTextLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT SetControlLabel(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, string pszLabel) 78 winmdroot.Foundation.HRESULT __result = @this.SetControlLabel(dwIDCtl, pszLabelLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT GetControlState(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, out winmdroot.UI.Shell.CDCONTROLSTATEF pdwState) 88 winmdroot.Foundation.HRESULT __result = @this.GetControlState(dwIDCtl, pdwStateLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT GetEditBoxText(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, out ushort* ppszText) 98 winmdroot.Foundation.HRESULT __result = @this.GetEditBoxText(dwIDCtl, ppszTextLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT SetEditBoxText(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, string pszText) 108 winmdroot.Foundation.HRESULT __result = @this.SetEditBoxText(dwIDCtl, pszTextLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT GetCheckButtonState(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, out winmdroot.Foundation.BOOL pbChecked) 118 winmdroot.Foundation.HRESULT __result = @this.GetCheckButtonState(dwIDCtl, pbCheckedLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT AddControlItem(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, uint dwIDItem, string pszLabel) 128 winmdroot.Foundation.HRESULT __result = @this.AddControlItem(dwIDCtl, dwIDItem, pszLabelLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT GetControlItemState(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, uint dwIDItem, out winmdroot.UI.Shell.CDCONTROLSTATEF pdwState) 138 winmdroot.Foundation.HRESULT __result = @this.GetControlItemState(dwIDCtl, dwIDItem, pdwStateLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT GetSelectedControlItem(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, out uint pdwIDItem) 148 winmdroot.Foundation.HRESULT __result = @this.GetSelectedControlItem(dwIDCtl, pdwIDItemLocal); 154 internal static unsafe winmdroot.Foundation.HRESULT StartVisualGroup(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, string pszLabel) 158 winmdroot.Foundation.HRESULT __result = @this.StartVisualGroup(dwIDCtl, pszLabelLocal); 164 internal static unsafe winmdroot.Foundation.HRESULT SetControlItemText(this winmdroot.UI.Shell.IFileDialogCustomize.Interface @this, uint dwIDCtl, uint dwIDItem, string pszLabel) 168 winmdroot.Foundation.HRESULT __result = @this.SetControlItemText(dwIDCtl, dwIDItem, pszLabelLocal);
Windows.Win32.UI_Shell_IFileDialogEvents_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT OnShareViolation(this winmdroot.UI.Shell.IFileDialogEvents.Interface @this, winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psi, out winmdroot.UI.Shell.FDE_SHAREVIOLATION_RESPONSE pResponse) 28 winmdroot.Foundation.HRESULT __result = @this.OnShareViolation(pfd, psi, pResponseLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT OnOverwrite(this winmdroot.UI.Shell.IFileDialogEvents.Interface @this, winmdroot.UI.Shell.IFileDialog* pfd, winmdroot.UI.Shell.IShellItem* psi, out winmdroot.UI.Shell.FDE_OVERWRITE_RESPONSE pResponse) 38 winmdroot.Foundation.HRESULT __result = @this.OnOverwrite(pfd, psi, pResponseLocal);
Windows.Win32.UI_Shell_IFileOpenDialog_Extensions.g.cs (22)
24 internal static unsafe winmdroot.Foundation.HRESULT SetFileTypes(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, ReadOnlySpan<winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC> rgFilterSpec) 28 winmdroot.Foundation.HRESULT __result = @this.SetFileTypes((uint )rgFilterSpec.Length, rgFilterSpecLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetFileTypeIndex(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, out uint piFileType) 38 winmdroot.Foundation.HRESULT __result = @this.GetFileTypeIndex(piFileTypeLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT Advise(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, winmdroot.UI.Shell.IFileDialogEvents* pfde, out uint pdwCookie) 48 winmdroot.Foundation.HRESULT __result = @this.Advise(pfde, pdwCookieLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetOptions(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, out winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS pfos) 58 winmdroot.Foundation.HRESULT __result = @this.GetOptions(pfosLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT SetFileName(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, string pszName) 68 winmdroot.Foundation.HRESULT __result = @this.SetFileName(pszNameLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT GetFileName(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, out winmdroot.Foundation.PWSTR pszName) 78 winmdroot.Foundation.HRESULT __result = @this.GetFileName(pszNameLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT SetTitle(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, string pszTitle) 88 winmdroot.Foundation.HRESULT __result = @this.SetTitle(pszTitleLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT SetOkButtonLabel(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, string pszText) 98 winmdroot.Foundation.HRESULT __result = @this.SetOkButtonLabel(pszTextLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT SetFileNameLabel(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, string pszLabel) 108 winmdroot.Foundation.HRESULT __result = @this.SetFileNameLabel(pszLabelLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT SetDefaultExtension(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, string pszDefaultExtension) 118 winmdroot.Foundation.HRESULT __result = @this.SetDefaultExtension(pszDefaultExtensionLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT SetClientGuid(this winmdroot.UI.Shell.IFileOpenDialog.Interface @this, in global::System.Guid guid) 128 winmdroot.Foundation.HRESULT __result = @this.SetClientGuid(guidLocal);
Windows.Win32.UI_Shell_IFileOperationProgressSink_Extensions.g.cs (24)
24 internal static unsafe winmdroot.Foundation.HRESULT PreRenameItem(this winmdroot.UI.Shell.IFileOperationProgressSink.Interface @this, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, string pszNewName) 28 winmdroot.Foundation.HRESULT __result = @this.PreRenameItem(dwFlags, psiItem, pszNewNameLocal); 33 /// <inheritdoc cref="winmdroot.UI.Shell.IFileOperationProgressSink.Interface.PostRenameItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 34 internal static unsafe winmdroot.Foundation.HRESULT PostRenameItem(this winmdroot.UI.Shell.IFileOperationProgressSink.Interface @this, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, string pszNewName, winmdroot.Foundation.HRESULT hrRename, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 38 winmdroot.Foundation.HRESULT __result = @this.PostRenameItem(dwFlags, psiItem, pszNewNameLocal, hrRename, psiNewlyCreated); 44 internal static unsafe winmdroot.Foundation.HRESULT PreMoveItem(this winmdroot.UI.Shell.IFileOperationProgressSink.Interface @this, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, string pszNewName) 48 winmdroot.Foundation.HRESULT __result = @this.PreMoveItem(dwFlags, psiItem, psiDestinationFolder, pszNewNameLocal); 53 /// <inheritdoc cref="winmdroot.UI.Shell.IFileOperationProgressSink.Interface.PostMoveItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 54 internal static unsafe winmdroot.Foundation.HRESULT PostMoveItem(this winmdroot.UI.Shell.IFileOperationProgressSink.Interface @this, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, string pszNewName, winmdroot.Foundation.HRESULT hrMove, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 58 winmdroot.Foundation.HRESULT __result = @this.PostMoveItem(dwFlags, psiItem, psiDestinationFolder, pszNewNameLocal, hrMove, psiNewlyCreated); 64 internal static unsafe winmdroot.Foundation.HRESULT PreCopyItem(this winmdroot.UI.Shell.IFileOperationProgressSink.Interface @this, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, string pszNewName) 68 winmdroot.Foundation.HRESULT __result = @this.PreCopyItem(dwFlags, psiItem, psiDestinationFolder, pszNewNameLocal); 73 /// <inheritdoc cref="winmdroot.UI.Shell.IFileOperationProgressSink.Interface.PostCopyItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 74 internal static unsafe winmdroot.Foundation.HRESULT PostCopyItem(this winmdroot.UI.Shell.IFileOperationProgressSink.Interface @this, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiItem, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, string pszNewName, winmdroot.Foundation.HRESULT hrCopy, winmdroot.UI.Shell.IShellItem* psiNewlyCreated) 78 winmdroot.Foundation.HRESULT __result = @this.PostCopyItem(dwFlags, psiItem, psiDestinationFolder, pszNewNameLocal, hrCopy, psiNewlyCreated); 84 internal static unsafe winmdroot.Foundation.HRESULT PreNewItem(this winmdroot.UI.Shell.IFileOperationProgressSink.Interface @this, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, string pszNewName) 88 winmdroot.Foundation.HRESULT __result = @this.PreNewItem(dwFlags, psiDestinationFolder, pszNewNameLocal); 93 /// <inheritdoc cref="winmdroot.UI.Shell.IFileOperationProgressSink.Interface.PostNewItem(uint, winmdroot.UI.Shell.IShellItem*, winmdroot.Foundation.PCWSTR, winmdroot.Foundation.PCWSTR, uint, winmdroot.Foundation.HRESULT, winmdroot.UI.Shell.IShellItem*)"/> 94 internal static unsafe winmdroot.Foundation.HRESULT PostNewItem(this winmdroot.UI.Shell.IFileOperationProgressSink.Interface @this, uint dwFlags, winmdroot.UI.Shell.IShellItem* psiDestinationFolder, string pszNewName, string pszTemplateName, uint dwFileAttributes, winmdroot.Foundation.HRESULT hrNew, winmdroot.UI.Shell.IShellItem* psiNewItem) 100 winmdroot.Foundation.HRESULT __result = @this.PostNewItem(dwFlags, psiDestinationFolder, pszNewNameLocal, pszTemplateNameLocal, dwFileAttributes, hrNew, psiNewItem);
Windows.Win32.UI_Shell_IFileSaveDialog_Extensions.g.cs (22)
24 internal static unsafe winmdroot.Foundation.HRESULT SetFileTypes(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, ReadOnlySpan<winmdroot.UI.Shell.Common.COMDLG_FILTERSPEC> rgFilterSpec) 28 winmdroot.Foundation.HRESULT __result = @this.SetFileTypes((uint )rgFilterSpec.Length, rgFilterSpecLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetFileTypeIndex(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, out uint piFileType) 38 winmdroot.Foundation.HRESULT __result = @this.GetFileTypeIndex(piFileTypeLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT Advise(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, winmdroot.UI.Shell.IFileDialogEvents* pfde, out uint pdwCookie) 48 winmdroot.Foundation.HRESULT __result = @this.Advise(pfde, pdwCookieLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT GetOptions(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, out winmdroot.UI.Shell.FILEOPENDIALOGOPTIONS pfos) 58 winmdroot.Foundation.HRESULT __result = @this.GetOptions(pfosLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT SetFileName(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, string pszName) 68 winmdroot.Foundation.HRESULT __result = @this.SetFileName(pszNameLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT GetFileName(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, out winmdroot.Foundation.PWSTR pszName) 78 winmdroot.Foundation.HRESULT __result = @this.GetFileName(pszNameLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT SetTitle(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, string pszTitle) 88 winmdroot.Foundation.HRESULT __result = @this.SetTitle(pszTitleLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT SetOkButtonLabel(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, string pszText) 98 winmdroot.Foundation.HRESULT __result = @this.SetOkButtonLabel(pszTextLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT SetFileNameLabel(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, string pszLabel) 108 winmdroot.Foundation.HRESULT __result = @this.SetFileNameLabel(pszLabelLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT SetDefaultExtension(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, string pszDefaultExtension) 118 winmdroot.Foundation.HRESULT __result = @this.SetDefaultExtension(pszDefaultExtensionLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT SetClientGuid(this winmdroot.UI.Shell.IFileSaveDialog.Interface @this, in global::System.Guid guid) 128 winmdroot.Foundation.HRESULT __result = @this.SetClientGuid(guidLocal);
Windows.Win32.UI_Shell_IShellFolder_Extensions.g.cs (18)
24 internal static unsafe winmdroot.Foundation.HRESULT ParseDisplayName(this winmdroot.UI.Shell.IShellFolder.Interface @this, winmdroot.Foundation.HWND hwnd, winmdroot.System.Com.IBindCtx* pbc, winmdroot.Foundation.PWSTR pszDisplayName, out winmdroot.UI.Shell.Common.ITEMIDLIST* ppidl, ref uint pdwAttributes) 30 winmdroot.Foundation.HRESULT __result = @this.ParseDisplayName(hwnd, pbc, pszDisplayName, default, ppidlLocal, pdwAttributesLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT BindToObject(this winmdroot.UI.Shell.IShellFolder.Interface @this, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl, winmdroot.System.Com.IBindCtx* pbc, in global::System.Guid riid, out void* ppv) 45 winmdroot.Foundation.HRESULT __result = @this.BindToObject(pidlLocal, pbc, riidLocal, ppvLocal); 53 internal static unsafe winmdroot.Foundation.HRESULT BindToStorage(this winmdroot.UI.Shell.IShellFolder.Interface @this, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl, winmdroot.System.Com.IBindCtx* pbc, in global::System.Guid riid, out void* ppv) 61 winmdroot.Foundation.HRESULT __result = @this.BindToStorage(pidlLocal, pbc, riidLocal, ppvLocal); 69 internal static unsafe winmdroot.Foundation.HRESULT CompareIDs(this winmdroot.UI.Shell.IShellFolder.Interface @this, winmdroot.Foundation.LPARAM lParam, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl1, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl2) 75 winmdroot.Foundation.HRESULT __result = @this.CompareIDs(lParam, pidl1Local, pidl2Local); 82 internal static unsafe winmdroot.Foundation.HRESULT CreateViewObject(this winmdroot.UI.Shell.IShellFolder.Interface @this, winmdroot.Foundation.HWND hwndOwner, in global::System.Guid riid, out void* ppv) 88 winmdroot.Foundation.HRESULT __result = @this.CreateViewObject(hwndOwner, riidLocal, ppvLocal); 95 internal static unsafe winmdroot.Foundation.HRESULT GetAttributesOf(this winmdroot.UI.Shell.IShellFolder.Interface @this, uint cidl, winmdroot.UI.Shell.Common.ITEMIDLIST** apidl, ref uint rgfInOut) 99 winmdroot.Foundation.HRESULT __result = @this.GetAttributesOf(cidl, apidl, rgfInOutLocal); 105 internal static unsafe winmdroot.Foundation.HRESULT GetUIObjectOf(this winmdroot.UI.Shell.IShellFolder.Interface @this, winmdroot.Foundation.HWND hwndOwner, uint cidl, winmdroot.UI.Shell.Common.ITEMIDLIST** apidl, in global::System.Guid riid, out void* ppv) 111 winmdroot.Foundation.HRESULT __result = @this.GetUIObjectOf(hwndOwner, cidl, apidl, riidLocal, default, ppvLocal); 118 internal static unsafe winmdroot.Foundation.HRESULT GetDisplayNameOf(this winmdroot.UI.Shell.IShellFolder.Interface @this, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl, winmdroot.UI.Shell.SHGDNF uFlags, out winmdroot.UI.Shell.Common.STRRET pName) 124 winmdroot.Foundation.HRESULT __result = @this.GetDisplayNameOf(pidlLocal, uFlags, pNameLocal); 131 internal static unsafe winmdroot.Foundation.HRESULT SetNameOf(this winmdroot.UI.Shell.IShellFolder.Interface @this, winmdroot.Foundation.HWND hwnd, in winmdroot.UI.Shell.Common.ITEMIDLIST pidl, string pszName, winmdroot.UI.Shell.SHGDNF uFlags, winmdroot.UI.Shell.Common.ITEMIDLIST** ppidlOut) 137 winmdroot.Foundation.HRESULT __result = @this.SetNameOf(hwnd, pidlLocal, pszNameLocal, uFlags, ppidlOut);
Windows.Win32.UI_Shell_IShellItem_Extensions.g.cs (8)
24 internal static unsafe winmdroot.Foundation.HRESULT BindToHandler(this winmdroot.UI.Shell.IShellItem.Interface @this, winmdroot.System.Com.IBindCtx* pbc, in global::System.Guid bhid, in global::System.Guid riid, out void* ppv) 32 winmdroot.Foundation.HRESULT __result = @this.BindToHandler(pbc, bhidLocal, riidLocal, ppvLocal); 40 internal static unsafe winmdroot.Foundation.HRESULT GetDisplayName(this winmdroot.UI.Shell.IShellItem.Interface @this, winmdroot.UI.Shell.SIGDN sigdnName, out winmdroot.Foundation.PWSTR ppszName) 44 winmdroot.Foundation.HRESULT __result = @this.GetDisplayName(sigdnName, ppszNameLocal); 50 internal static unsafe winmdroot.Foundation.HRESULT GetAttributes(this winmdroot.UI.Shell.IShellItem.Interface @this, winmdroot.System.SystemServices.SFGAO_FLAGS sfgaoMask, out winmdroot.System.SystemServices.SFGAO_FLAGS psfgaoAttribs) 54 winmdroot.Foundation.HRESULT __result = @this.GetAttributes(sfgaoMask, psfgaoAttribsLocal); 60 internal static unsafe winmdroot.Foundation.HRESULT Compare(this winmdroot.UI.Shell.IShellItem.Interface @this, winmdroot.UI.Shell.IShellItem* psi, uint hint, out int piOrder) 64 winmdroot.Foundation.HRESULT __result = @this.Compare(psi, hint, piOrderLocal);
Windows.Win32.UI_Shell_IShellItemArray_Extensions.g.cs (10)
24 internal static unsafe winmdroot.Foundation.HRESULT BindToHandler(this winmdroot.UI.Shell.IShellItemArray.Interface @this, winmdroot.System.Com.IBindCtx* pbc, in global::System.Guid bhid, in global::System.Guid riid, out void* ppvOut) 32 winmdroot.Foundation.HRESULT __result = @this.BindToHandler(pbc, bhidLocal, riidLocal, ppvOutLocal); 40 internal static unsafe winmdroot.Foundation.HRESULT GetPropertyStore(this winmdroot.UI.Shell.IShellItemArray.Interface @this, winmdroot.UI.Shell.PropertiesSystem.GETPROPERTYSTOREFLAGS flags, in global::System.Guid riid, out void* ppv) 46 winmdroot.Foundation.HRESULT __result = @this.GetPropertyStore(flags, riidLocal, ppvLocal); 53 internal static unsafe winmdroot.Foundation.HRESULT GetPropertyDescriptionList(this winmdroot.UI.Shell.IShellItemArray.Interface @this, in winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY keyType, in global::System.Guid riid, out void* ppv) 61 winmdroot.Foundation.HRESULT __result = @this.GetPropertyDescriptionList(keyTypeLocal, riidLocal, ppvLocal); 69 internal static unsafe winmdroot.Foundation.HRESULT GetAttributes(this winmdroot.UI.Shell.IShellItemArray.Interface @this, winmdroot.UI.Shell.SIATTRIBFLAGS AttribFlags, winmdroot.System.SystemServices.SFGAO_FLAGS sfgaoMask, out winmdroot.System.SystemServices.SFGAO_FLAGS psfgaoAttribs) 73 winmdroot.Foundation.HRESULT __result = @this.GetAttributes(AttribFlags, sfgaoMask, psfgaoAttribsLocal); 79 internal static unsafe winmdroot.Foundation.HRESULT GetCount(this winmdroot.UI.Shell.IShellItemArray.Interface @this, out uint pdwNumItems) 83 winmdroot.Foundation.HRESULT __result = @this.GetCount(pdwNumItemsLocal);
Windows.Win32.UI_Shell_IShellItemFilter_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT GetEnumFlagsForItem(this winmdroot.UI.Shell.IShellItemFilter.Interface @this, winmdroot.UI.Shell.IShellItem* psi, out uint pgrfFlags) 28 winmdroot.Foundation.HRESULT __result = @this.GetEnumFlagsForItem(psi, pgrfFlagsLocal);
Windows.Win32.UI_Shell_IWebBrowser_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT Navigate(this winmdroot.UI.Shell.IWebBrowser.Interface @this, winmdroot.Foundation.BSTR URL, winmdroot.System.Variant.VARIANT? Flags, winmdroot.System.Variant.VARIANT? TargetFrameName, winmdroot.System.Variant.VARIANT? PostData, winmdroot.System.Variant.VARIANT? Headers) 30 winmdroot.Foundation.HRESULT __result = @this.Navigate(URL, Flags.HasValue ? &FlagsLocal : null, TargetFrameName.HasValue ? &TargetFrameNameLocal : null, PostData.HasValue ? &PostDataLocal : null, Headers.HasValue ? &HeadersLocal : null); 35 internal static unsafe winmdroot.Foundation.HRESULT Refresh2(this winmdroot.UI.Shell.IWebBrowser.Interface @this, winmdroot.System.Variant.VARIANT? Level) 38 winmdroot.Foundation.HRESULT __result = @this.Refresh2(Level.HasValue ? &LevelLocal : null); 43 internal static unsafe winmdroot.Foundation.HRESULT get_Busy(this winmdroot.UI.Shell.IWebBrowser.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pBool) 47 winmdroot.Foundation.HRESULT __result = @this.get_Busy(pBoolLocal);
Windows.Win32.UI_Shell_IWebBrowser2_Extensions.g.cs (26)
24 internal static unsafe winmdroot.Foundation.HRESULT Navigate(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, winmdroot.Foundation.BSTR URL, winmdroot.System.Variant.VARIANT? Flags, winmdroot.System.Variant.VARIANT? TargetFrameName, winmdroot.System.Variant.VARIANT? PostData, winmdroot.System.Variant.VARIANT? Headers) 30 winmdroot.Foundation.HRESULT __result = @this.Navigate(URL, Flags.HasValue ? &FlagsLocal : null, TargetFrameName.HasValue ? &TargetFrameNameLocal : null, PostData.HasValue ? &PostDataLocal : null, Headers.HasValue ? &HeadersLocal : null); 35 internal static unsafe winmdroot.Foundation.HRESULT Refresh2(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, winmdroot.System.Variant.VARIANT? Level) 38 winmdroot.Foundation.HRESULT __result = @this.Refresh2(Level.HasValue ? &LevelLocal : null); 43 internal static unsafe winmdroot.Foundation.HRESULT get_Busy(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pBool) 47 winmdroot.Foundation.HRESULT __result = @this.get_Busy(pBoolLocal); 53 internal static unsafe winmdroot.Foundation.HRESULT ClientToWindow(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, ref int pcx, ref int pcy) 59 winmdroot.Foundation.HRESULT __result = @this.ClientToWindow(pcxLocal, pcyLocal); 66 internal static unsafe winmdroot.Foundation.HRESULT GetProperty(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, winmdroot.Foundation.BSTR Property, out winmdroot.System.Variant.VARIANT pvtValue) 70 winmdroot.Foundation.HRESULT __result = @this.GetProperty(Property, pvtValueLocal); 76 internal static unsafe winmdroot.Foundation.HRESULT Navigate2(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, in winmdroot.System.Variant.VARIANT URL, winmdroot.System.Variant.VARIANT? Flags, winmdroot.System.Variant.VARIANT? TargetFrameName, winmdroot.System.Variant.VARIANT? PostData, winmdroot.System.Variant.VARIANT? Headers) 84 winmdroot.Foundation.HRESULT __result = @this.Navigate2(URLLocal, Flags.HasValue ? &FlagsLocal : null, TargetFrameName.HasValue ? &TargetFrameNameLocal : null, PostData.HasValue ? &PostDataLocal : null, Headers.HasValue ? &HeadersLocal : null); 90 internal static unsafe winmdroot.Foundation.HRESULT QueryStatusWB(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, winmdroot.System.Ole.OLECMDID cmdID, out winmdroot.System.Ole.OLECMDF pcmdf) 94 winmdroot.Foundation.HRESULT __result = @this.QueryStatusWB(cmdID, pcmdfLocal); 100 internal static unsafe winmdroot.Foundation.HRESULT ExecWB(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, winmdroot.System.Ole.OLECMDID cmdID, winmdroot.System.Ole.OLECMDEXECOPT cmdexecopt, winmdroot.System.Variant.VARIANT? pvaIn, winmdroot.System.Variant.VARIANT* pvaOut) 103 winmdroot.Foundation.HRESULT __result = @this.ExecWB(cmdID, cmdexecopt, pvaIn.HasValue ? &pvaInLocal : null, pvaOut); 108 internal static unsafe winmdroot.Foundation.HRESULT ShowBrowserBar(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, in winmdroot.System.Variant.VARIANT pvaClsid, winmdroot.System.Variant.VARIANT? pvarShow, winmdroot.System.Variant.VARIANT? pvarSize) 114 winmdroot.Foundation.HRESULT __result = @this.ShowBrowserBar(pvaClsidLocal, pvarShow.HasValue ? &pvarShowLocal : null, pvarSize.HasValue ? &pvarSizeLocal : null); 120 internal static unsafe winmdroot.Foundation.HRESULT get_ReadyState(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.System.Ole.READYSTATE plReadyState) 124 winmdroot.Foundation.HRESULT __result = @this.get_ReadyState(plReadyStateLocal); 130 internal static unsafe winmdroot.Foundation.HRESULT get_Offline(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pbOffline) 134 winmdroot.Foundation.HRESULT __result = @this.get_Offline(pbOfflineLocal); 140 internal static unsafe winmdroot.Foundation.HRESULT get_Silent(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pbSilent) 144 winmdroot.Foundation.HRESULT __result = @this.get_Silent(pbSilentLocal); 150 internal static unsafe winmdroot.Foundation.HRESULT get_RegisterAsDropTarget(this winmdroot.UI.Shell.IWebBrowser2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pbRegister) 154 winmdroot.Foundation.HRESULT __result = @this.get_RegisterAsDropTarget(pbRegisterLocal);
Windows.Win32.UI_Shell_IWebBrowserApp_Extensions.g.cs (10)
24 internal static unsafe winmdroot.Foundation.HRESULT Navigate(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, winmdroot.Foundation.BSTR URL, winmdroot.System.Variant.VARIANT? Flags, winmdroot.System.Variant.VARIANT? TargetFrameName, winmdroot.System.Variant.VARIANT? PostData, winmdroot.System.Variant.VARIANT? Headers) 30 winmdroot.Foundation.HRESULT __result = @this.Navigate(URL, Flags.HasValue ? &FlagsLocal : null, TargetFrameName.HasValue ? &TargetFrameNameLocal : null, PostData.HasValue ? &PostDataLocal : null, Headers.HasValue ? &HeadersLocal : null); 35 internal static unsafe winmdroot.Foundation.HRESULT Refresh2(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, winmdroot.System.Variant.VARIANT? Level) 38 winmdroot.Foundation.HRESULT __result = @this.Refresh2(Level.HasValue ? &LevelLocal : null); 43 internal static unsafe winmdroot.Foundation.HRESULT get_Busy(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pBool) 47 winmdroot.Foundation.HRESULT __result = @this.get_Busy(pBoolLocal); 53 internal static unsafe winmdroot.Foundation.HRESULT ClientToWindow(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, ref int pcx, ref int pcy) 59 winmdroot.Foundation.HRESULT __result = @this.ClientToWindow(pcxLocal, pcyLocal); 66 internal static unsafe winmdroot.Foundation.HRESULT GetProperty(this winmdroot.UI.Shell.IWebBrowserApp.Interface @this, winmdroot.Foundation.BSTR Property, out winmdroot.System.Variant.VARIANT pvtValue) 70 winmdroot.Foundation.HRESULT __result = @this.GetProperty(Property, pvtValueLocal);
Windows.Win32.UI_Shell_PropertiesSystem_IPropertyDescriptionList_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT GetCount(this winmdroot.UI.Shell.PropertiesSystem.IPropertyDescriptionList.Interface @this, out uint pcElem) 28 winmdroot.Foundation.HRESULT __result = @this.GetCount(pcElemLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetAt(this winmdroot.UI.Shell.PropertiesSystem.IPropertyDescriptionList.Interface @this, uint iElem, in global::System.Guid riid, out void* ppv) 40 winmdroot.Foundation.HRESULT __result = @this.GetAt(iElem, riidLocal, ppvLocal);
Windows.Win32.UI_Shell_PropertiesSystem_IPropertyStore_Extensions.g.cs (8)
24 internal static unsafe winmdroot.Foundation.HRESULT GetCount(this winmdroot.UI.Shell.PropertiesSystem.IPropertyStore.Interface @this, out uint cProps) 28 winmdroot.Foundation.HRESULT __result = @this.GetCount(cPropsLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT GetAt(this winmdroot.UI.Shell.PropertiesSystem.IPropertyStore.Interface @this, uint iProp, out winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY pkey) 38 winmdroot.Foundation.HRESULT __result = @this.GetAt(iProp, pkeyLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT GetValue(this winmdroot.UI.Shell.PropertiesSystem.IPropertyStore.Interface @this, in winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY key, out winmdroot.System.Com.StructuredStorage.PROPVARIANT pv) 50 winmdroot.Foundation.HRESULT __result = @this.GetValue(keyLocal, pvLocal); 57 internal static unsafe winmdroot.Foundation.HRESULT SetValue(this winmdroot.UI.Shell.PropertiesSystem.IPropertyStore.Interface @this, in winmdroot.UI.Shell.PropertiesSystem.PROPERTYKEY key, in winmdroot.System.Com.StructuredStorage.PROPVARIANT propvar) 63 winmdroot.Foundation.HRESULT __result = @this.SetValue(keyLocal, propvarLocal);
Windows.Win32.Web_MsHtml_IHTMLCurrentStyle_Extensions.g.cs (2)
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) 28 winmdroot.Foundation.HRESULT __result = @this.getAttribute(strAttributeName, lFlags, AttributeValueLocal);
Windows.Win32.Web_MsHtml_IHTMLDataTransfer_Extensions.g.cs (6)
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) 30 winmdroot.Foundation.HRESULT __result = @this.setData(format, dataLocal, pretLocal); 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) 41 winmdroot.Foundation.HRESULT __result = @this.getData(format, pvarRetLocal); 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) 51 winmdroot.Foundation.HRESULT __result = @this.clearData(format, pretLocal);
Windows.Win32.Web_MsHtml_IHTMLDocument2_Extensions.g.cs (24)
24 internal static unsafe winmdroot.Foundation.HRESULT get_alinkColor(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.System.Variant.VARIANT p) 28 winmdroot.Foundation.HRESULT __result = @this.get_alinkColor(pLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_bgColor(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.System.Variant.VARIANT p) 38 winmdroot.Foundation.HRESULT __result = @this.get_bgColor(pLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_fgColor(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.System.Variant.VARIANT p) 48 winmdroot.Foundation.HRESULT __result = @this.get_fgColor(pLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_linkColor(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.System.Variant.VARIANT p) 58 winmdroot.Foundation.HRESULT __result = @this.get_linkColor(pLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT get_vlinkColor(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, out winmdroot.System.Variant.VARIANT p) 68 winmdroot.Foundation.HRESULT __result = @this.get_vlinkColor(pLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT queryCommandSupported(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 78 winmdroot.Foundation.HRESULT __result = @this.queryCommandSupported(cmdID, pfRetLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT queryCommandEnabled(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 88 winmdroot.Foundation.HRESULT __result = @this.queryCommandEnabled(cmdID, pfRetLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT queryCommandState(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 98 winmdroot.Foundation.HRESULT __result = @this.queryCommandState(cmdID, pfRetLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT queryCommandIndeterm(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 108 winmdroot.Foundation.HRESULT __result = @this.queryCommandIndeterm(cmdID, pfRetLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT queryCommandValue(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.System.Variant.VARIANT pcmdValue) 118 winmdroot.Foundation.HRESULT __result = @this.queryCommandValue(cmdID, pcmdValueLocal); 124 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) 128 winmdroot.Foundation.HRESULT __result = @this.execCommand(cmdID, showUI, value, pfRetLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT execCommandShowHelp(this winmdroot.Web.MsHtml.IHTMLDocument2.Interface @this, winmdroot.Foundation.BSTR cmdID, out winmdroot.Foundation.VARIANT_BOOL pfRet) 138 winmdroot.Foundation.HRESULT __result = @this.execCommandShowHelp(cmdID, pfRetLocal);
Windows.Win32.Web_MsHtml_IHTMLDocument3_Extensions.g.cs (2)
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) 28 winmdroot.Foundation.HRESULT __result = @this.attachEvent(@event, pDisp, pfResultLocal);
Windows.Win32.Web_MsHtml_IHTMLDocument4_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT hasFocus(this winmdroot.Web.MsHtml.IHTMLDocument4.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pfFocus) 28 winmdroot.Foundation.HRESULT __result = @this.hasFocus(pfFocusLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT createEventObject(this winmdroot.Web.MsHtml.IHTMLDocument4.Interface @this, in winmdroot.System.Variant.VARIANT pvarEventObject, winmdroot.Web.MsHtml.IHTMLEventObj** ppEventObj) 38 winmdroot.Foundation.HRESULT __result = @this.createEventObject(pvarEventObjectLocal, ppEventObj); 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) 50 winmdroot.Foundation.HRESULT __result = @this.fireEvent(bstrEventName, pvarEventObjectLocal, pfCancelledLocal);
Windows.Win32.Web_MsHtml_IHTMLDOMNode_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT hasChildNodes(this winmdroot.Web.MsHtml.IHTMLDOMNode.Interface @this, out winmdroot.Foundation.VARIANT_BOOL fChildren) 28 winmdroot.Foundation.HRESULT __result = @this.hasChildNodes(fChildrenLocal);
Windows.Win32.Web_MsHtml_IHTMLElement_Extensions.g.cs (14)
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) 28 winmdroot.Foundation.HRESULT __result = @this.getAttribute(strAttributeName, lFlags, AttributeValueLocal); 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) 38 winmdroot.Foundation.HRESULT __result = @this.removeAttribute(strAttributeName, lFlags, pfSuccessLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT contains(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, winmdroot.Web.MsHtml.IHTMLElement* pChild, out winmdroot.Foundation.VARIANT_BOOL pfResult) 48 winmdroot.Foundation.HRESULT __result = @this.contains(pChild, pfResultLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_offsetLeft(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out int p) 58 winmdroot.Foundation.HRESULT __result = @this.get_offsetLeft(pLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT get_offsetTop(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out int p) 68 winmdroot.Foundation.HRESULT __result = @this.get_offsetTop(pLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT get_offsetWidth(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out int p) 78 winmdroot.Foundation.HRESULT __result = @this.get_offsetWidth(pLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT get_offsetHeight(this winmdroot.Web.MsHtml.IHTMLElement.Interface @this, out int p) 88 winmdroot.Foundation.HRESULT __result = @this.get_offsetHeight(pLocal);
Windows.Win32.Web_MsHtml_IHTMLElement2_Extensions.g.cs (30)
24 internal static unsafe winmdroot.Foundation.HRESULT getExpression(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR propname, out winmdroot.System.Variant.VARIANT expression) 28 winmdroot.Foundation.HRESULT __result = @this.getExpression(propname, expressionLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT removeExpression(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR propname, out winmdroot.Foundation.VARIANT_BOOL pfSuccess) 38 winmdroot.Foundation.HRESULT __result = @this.removeExpression(propname, pfSuccessLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT get_tabIndex(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out short p) 48 winmdroot.Foundation.HRESULT __result = @this.get_tabIndex(pLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT get_clientHeight(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 58 winmdroot.Foundation.HRESULT __result = @this.get_clientHeight(pLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT get_clientWidth(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 68 winmdroot.Foundation.HRESULT __result = @this.get_clientWidth(pLocal); 74 internal static unsafe winmdroot.Foundation.HRESULT get_clientTop(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 78 winmdroot.Foundation.HRESULT __result = @this.get_clientTop(pLocal); 84 internal static unsafe winmdroot.Foundation.HRESULT get_clientLeft(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 88 winmdroot.Foundation.HRESULT __result = @this.get_clientLeft(pLocal); 94 internal static unsafe winmdroot.Foundation.HRESULT attachEvent(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, winmdroot.Foundation.BSTR @event, winmdroot.System.Com.IDispatch* pDisp, out winmdroot.Foundation.VARIANT_BOOL pfResult) 98 winmdroot.Foundation.HRESULT __result = @this.attachEvent(@event, pDisp, pfResultLocal); 104 internal static unsafe winmdroot.Foundation.HRESULT get_scrollHeight(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 108 winmdroot.Foundation.HRESULT __result = @this.get_scrollHeight(pLocal); 114 internal static unsafe winmdroot.Foundation.HRESULT get_scrollWidth(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 118 winmdroot.Foundation.HRESULT __result = @this.get_scrollWidth(pLocal); 124 internal static unsafe winmdroot.Foundation.HRESULT get_scrollTop(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 128 winmdroot.Foundation.HRESULT __result = @this.get_scrollTop(pLocal); 134 internal static unsafe winmdroot.Foundation.HRESULT get_scrollLeft(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out int p) 138 winmdroot.Foundation.HRESULT __result = @this.get_scrollLeft(pLocal); 144 internal static unsafe winmdroot.Foundation.HRESULT get_canHaveChildren(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL p) 148 winmdroot.Foundation.HRESULT __result = @this.get_canHaveChildren(pLocal); 154 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) 160 winmdroot.Foundation.HRESULT __result = @this.addBehavior(bstrUrl, pvarFactoryLocal, pCookieLocal); 167 internal static unsafe winmdroot.Foundation.HRESULT removeBehavior(this winmdroot.Web.MsHtml.IHTMLElement2.Interface @this, int cookie, out winmdroot.Foundation.VARIANT_BOOL pfResult) 171 winmdroot.Foundation.HRESULT __result = @this.removeBehavior(cookie, pfResultLocal);
Windows.Win32.Web_MsHtml_IHTMLElement3_Extensions.g.cs (8)
24 internal static unsafe winmdroot.Foundation.HRESULT mergeAttributes(this winmdroot.Web.MsHtml.IHTMLElement3.Interface @this, winmdroot.Web.MsHtml.IHTMLElement* mergeThis, in winmdroot.System.Variant.VARIANT pvarFlags) 28 winmdroot.Foundation.HRESULT __result = @this.mergeAttributes(mergeThis, pvarFlagsLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_disabled(this winmdroot.Web.MsHtml.IHTMLElement3.Interface @this, out winmdroot.Foundation.VARIANT_BOOL p) 38 winmdroot.Foundation.HRESULT __result = @this.get_disabled(pLocal); 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) 50 winmdroot.Foundation.HRESULT __result = @this.fireEvent(bstrEventName, pvarEventObjectLocal, pfCancelledLocal); 57 internal static unsafe winmdroot.Foundation.HRESULT dragDrop(this winmdroot.Web.MsHtml.IHTMLElement3.Interface @this, out winmdroot.Foundation.VARIANT_BOOL pfRet) 61 winmdroot.Foundation.HRESULT __result = @this.dragDrop(pfRetLocal);
Windows.Win32.Web_MsHtml_IHTMLElementCollection_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT get_length(this winmdroot.Web.MsHtml.IHTMLElementCollection.Interface @this, out int p) 28 winmdroot.Foundation.HRESULT __result = @this.get_length(pLocal);
Windows.Win32.Web_MsHtml_IHTMLFiltersCollection_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT item(this winmdroot.Web.MsHtml.IHTMLFiltersCollection.Interface @this, in winmdroot.System.Variant.VARIANT pvarIndex, out winmdroot.System.Variant.VARIANT pvarResult) 30 winmdroot.Foundation.HRESULT __result = @this.item(pvarIndexLocal, pvarResultLocal);
Windows.Win32.Web_MsHtml_IHTMLFramesCollection2_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT item(this winmdroot.Web.MsHtml.IHTMLFramesCollection2.Interface @this, in winmdroot.System.Variant.VARIANT pvarIndex, out winmdroot.System.Variant.VARIANT pvarResult) 30 winmdroot.Foundation.HRESULT __result = @this.item(pvarIndexLocal, pvarResultLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT get_length(this winmdroot.Web.MsHtml.IHTMLFramesCollection2.Interface @this, out int p) 41 winmdroot.Foundation.HRESULT __result = @this.get_length(pLocal);
Windows.Win32.Web_MsHtml_IHTMLOpsProfile_Extensions.g.cs (10)
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) 28 winmdroot.Foundation.HRESULT __result = @this.addRequest(name, reserved, successLocal); 34 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) 38 winmdroot.Foundation.HRESULT __result = @this.setAttribute(name, value, prefs, successLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT commitChanges(this winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface @this, out winmdroot.Foundation.VARIANT_BOOL success) 48 winmdroot.Foundation.HRESULT __result = @this.commitChanges(successLocal); 54 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) 58 winmdroot.Foundation.HRESULT __result = @this.addReadRequest(name, reserved, successLocal); 64 internal static unsafe winmdroot.Foundation.HRESULT doWriteRequest(this winmdroot.Web.MsHtml.IHTMLOpsProfile.Interface @this, out winmdroot.Foundation.VARIANT_BOOL success) 68 winmdroot.Foundation.HRESULT __result = @this.doWriteRequest(successLocal);
Windows.Win32.Web_MsHtml_IHTMLRectCollection_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT item(this winmdroot.Web.MsHtml.IHTMLRectCollection.Interface @this, in winmdroot.System.Variant.VARIANT pvarIndex, out winmdroot.System.Variant.VARIANT pvarResult) 30 winmdroot.Foundation.HRESULT __result = @this.item(pvarIndexLocal, pvarResultLocal);
Windows.Win32.Web_MsHtml_IHTMLRuleStyle_Extensions.g.cs (4)
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) 28 winmdroot.Foundation.HRESULT __result = @this.getAttribute(strAttributeName, lFlags, AttributeValueLocal); 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) 38 winmdroot.Foundation.HRESULT __result = @this.removeAttribute(strAttributeName, lFlags, pfSuccessLocal);
Windows.Win32.Web_MsHtml_IHTMLStyle_Extensions.g.cs (4)
24 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) 28 winmdroot.Foundation.HRESULT __result = @this.getAttribute(strAttributeName, lFlags, AttributeValueLocal); 34 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) 38 winmdroot.Foundation.HRESULT __result = @this.removeAttribute(strAttributeName, lFlags, pfSuccessLocal);
Windows.Win32.Web_MsHtml_IHTMLStyleSheet_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT addImport(this winmdroot.Web.MsHtml.IHTMLStyleSheet.Interface @this, winmdroot.Foundation.BSTR bstrURL, int lIndex, out int plIndex) 28 winmdroot.Foundation.HRESULT __result = @this.addImport(bstrURL, lIndex, plIndexLocal); 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) 38 winmdroot.Foundation.HRESULT __result = @this.addRule(bstrSelector, bstrStyle, lIndex, plNewIndexLocal);
Windows.Win32.Web_MsHtml_IHTMLStyleSheetsCollection_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT item(this winmdroot.Web.MsHtml.IHTMLStyleSheetsCollection.Interface @this, in winmdroot.System.Variant.VARIANT pvarIndex, out winmdroot.System.Variant.VARIANT pvarResult) 30 winmdroot.Foundation.HRESULT __result = @this.item(pvarIndexLocal, pvarResultLocal);
Windows.Win32.Web_MsHtml_IHTMLWindow2_Extensions.g.cs (20)
24 internal static unsafe winmdroot.Foundation.HRESULT item(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, in winmdroot.System.Variant.VARIANT pvarIndex, out winmdroot.System.Variant.VARIANT pvarResult) 30 winmdroot.Foundation.HRESULT __result = @this.item(pvarIndexLocal, pvarResultLocal); 37 internal static unsafe winmdroot.Foundation.HRESULT get_length(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, out int p) 41 winmdroot.Foundation.HRESULT __result = @this.get_length(pLocal); 47 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) 53 winmdroot.Foundation.HRESULT __result = @this.setTimeout(expression, msec, languageLocal, timerIDLocal); 60 internal static unsafe winmdroot.Foundation.HRESULT confirm(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, winmdroot.Foundation.BSTR message, out winmdroot.Foundation.VARIANT_BOOL confirmed) 64 winmdroot.Foundation.HRESULT __result = @this.confirm(message, confirmedLocal); 70 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) 74 winmdroot.Foundation.HRESULT __result = @this.prompt(message, defstr, textdataLocal); 80 internal static unsafe winmdroot.Foundation.HRESULT get_opener(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, out winmdroot.System.Variant.VARIANT p) 84 winmdroot.Foundation.HRESULT __result = @this.get_opener(pLocal); 90 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) 98 winmdroot.Foundation.HRESULT __result = @this.showModalDialog(dialog, varArgInLocal, varOptionsLocal, varArgOutLocal); 106 internal static unsafe winmdroot.Foundation.HRESULT get_closed(this winmdroot.Web.MsHtml.IHTMLWindow2.Interface @this, out winmdroot.Foundation.VARIANT_BOOL p) 110 winmdroot.Foundation.HRESULT __result = @this.get_closed(pLocal); 116 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) 122 winmdroot.Foundation.HRESULT __result = @this.setInterval(expression, msec, languageLocal, timerIDLocal); 129 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) 133 winmdroot.Foundation.HRESULT __result = @this.execScript(code, language, pvarRetLocal);
Windows.Win32.Web_MsHtml_IHTMLWindow3_Extensions.g.cs (12)
24 internal static unsafe winmdroot.Foundation.HRESULT get_screenLeft(this winmdroot.Web.MsHtml.IHTMLWindow3.Interface @this, out int p) 28 winmdroot.Foundation.HRESULT __result = @this.get_screenLeft(pLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT get_screenTop(this winmdroot.Web.MsHtml.IHTMLWindow3.Interface @this, out int p) 38 winmdroot.Foundation.HRESULT __result = @this.get_screenTop(pLocal); 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) 48 winmdroot.Foundation.HRESULT __result = @this.attachEvent(@event, pDisp, pfResultLocal); 54 internal static unsafe winmdroot.Foundation.HRESULT setTimeout(this winmdroot.Web.MsHtml.IHTMLWindow3.Interface @this, in winmdroot.System.Variant.VARIANT expression, int msec, in winmdroot.System.Variant.VARIANT language, out int timerID) 62 winmdroot.Foundation.HRESULT __result = @this.setTimeout(expressionLocal, msec, languageLocal, timerIDLocal); 70 internal static unsafe winmdroot.Foundation.HRESULT setInterval(this winmdroot.Web.MsHtml.IHTMLWindow3.Interface @this, in winmdroot.System.Variant.VARIANT expression, int msec, in winmdroot.System.Variant.VARIANT language, out int timerID) 78 winmdroot.Foundation.HRESULT __result = @this.setInterval(expressionLocal, msec, languageLocal, timerIDLocal); 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) 92 winmdroot.Foundation.HRESULT __result = @this.showModelessDialog(url, varArgInLocal, optionsLocal, pDialog);
Windows.Win32.Web_MsHtml_IHTMLWindow4_Extensions.g.cs (2)
24 internal static unsafe winmdroot.Foundation.HRESULT createPopup(this winmdroot.Web.MsHtml.IHTMLWindow4.Interface @this, in winmdroot.System.Variant.VARIANT varArgIn, winmdroot.System.Com.IDispatch** ppPopup) 28 winmdroot.Foundation.HRESULT __result = @this.createPopup(varArgInLocal, ppPopup);
Windows.Win32.Web_MsHtml_IOmHistory_Extensions.g.cs (6)
24 internal static unsafe winmdroot.Foundation.HRESULT back(this winmdroot.Web.MsHtml.IOmHistory.Interface @this, in winmdroot.System.Variant.VARIANT pvargdistance) 28 winmdroot.Foundation.HRESULT __result = @this.back(pvargdistanceLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT forward(this winmdroot.Web.MsHtml.IOmHistory.Interface @this, in winmdroot.System.Variant.VARIANT pvargdistance) 38 winmdroot.Foundation.HRESULT __result = @this.forward(pvargdistanceLocal); 44 internal static unsafe winmdroot.Foundation.HRESULT go(this winmdroot.Web.MsHtml.IOmHistory.Interface @this, in winmdroot.System.Variant.VARIANT pvargdistance) 48 winmdroot.Foundation.HRESULT __result = @this.go(pvargdistanceLocal);
Windows.Win32.Web_MsHtml_IOmNavigator_Extensions.g.cs (4)
24 internal static unsafe winmdroot.Foundation.HRESULT javaEnabled(this winmdroot.Web.MsHtml.IOmNavigator.Interface @this, out winmdroot.Foundation.VARIANT_BOOL enabled) 28 winmdroot.Foundation.HRESULT __result = @this.javaEnabled(enabledLocal); 34 internal static unsafe winmdroot.Foundation.HRESULT taintEnabled(this winmdroot.Web.MsHtml.IOmNavigator.Interface @this, out winmdroot.Foundation.VARIANT_BOOL enabled) 38 winmdroot.Foundation.HRESULT __result = @this.taintEnabled(enabledLocal);
Windows\Win32\PInvoke.GetThemeFont.cs (2)
11public static unsafe HRESULT GetThemeFont<T>(T hTheme, HDC hdc, int iPartId, int iStateId, int iPropId, out LOGFONT pFont) 16HRESULT result = GetThemeFont(hTheme.Handle, hdc, iPartId, iStateId, iPropId, (LOGFONTW*)p);
Windows\Win32\PInvoke.ImageList.cs (2)
130public static HRESULT WriteEx<T>( 136HRESULT result = ImageList_WriteEx(himl.Handle, dwFlags, stream);
Windows\Win32\PInvoke.SHAutoComplete.cs (2)
9public static HRESULT SHAutoComplete<T>(T hwndEdit, SHELL_AUTOCOMPLETE_FLAGS flags) where T : IHandle<HWND> 11HRESULT result = SHAutoComplete(hwndEdit.Handle, flags);
Windows\Win32\PInvoke.SHCreateItemFromParsingName.cs (1)
13HRESULT hr = SHCreateItemFromParsingName(path, pbc: null, in IID.GetRef<IShellItem>(), out void* ppv);
Windows\Win32\PInvoke.UiaDisconnectProvider.cs (3)
17HRESULT result = UiaDisconnectProvider(providerScope); 24Debug.Assert(result == HRESULT.S_OK || result == HRESULT.E_INVALIDARG, $"UiaDisconnectProvider failed with {result}");
Windows\Win32\PInvoke.UiaHostProviderFromHwnd.cs (2)
11public static unsafe HRESULT UiaHostProviderFromHwnd<T>(T hwnd, out IRawElementProviderSimple* ppProvider) where T : IHandle<HWND> 14HRESULT result = UiaHostProviderFromHwnd(hwnd.Handle, &provider);
Windows\Win32\PInvoke.UiaRaiseNotificationEvent.cs (2)
12public static unsafe HRESULT UiaRaiseNotificationEvent( 30return HRESULT.E_FAIL;
Windows\Win32\System\Com\StandardDispatch.cs (57)
60HRESULT IDispatch.Interface.GetTypeInfoCount(uint* pctinfo) 64return HRESULT.E_POINTER; 68return HRESULT.S_OK; 71HRESULT IDispatch.Interface.GetTypeInfo(uint iTInfo, uint lcid, ITypeInfo** ppTInfo) 75return HRESULT.E_POINTER; 81return HRESULT.DISP_E_BADINDEX; 86return HRESULT.S_OK; 89HRESULT IDispatch.Interface.GetIDsOfNames(Guid* riid, PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) 94return HRESULT.DISP_E_UNKNOWNINTERFACE; 100HRESULT IDispatch.Interface.Invoke( 112return HRESULT.E_INVALIDARG; 115HRESULT hr = MapDotNetHRESULTs(Invoke( 124if (hr != HRESULT.DISP_E_MEMBERNOTFOUND) 134HRESULT IDispatchEx.Interface.GetDispID(BSTR bstrName, uint grfdex, int* pid) 135=> bstrName.IsNull || pid is null ? HRESULT.E_POINTER : GetDispID(bstrName, grfdex, pid); 137protected virtual HRESULT GetDispID(BSTR bstrName, uint grfdex, int* pid) => HRESULT.E_NOTIMPL; 139HRESULT IDispatchEx.Interface.GetMemberName(int id, BSTR* pbstrName) 140=> pbstrName is null ? HRESULT.E_POINTER : GetMemberName(id, pbstrName); 142protected virtual HRESULT GetMemberName(int id, BSTR* pbstrName) => HRESULT.E_NOTIMPL; 144HRESULT IDispatchEx.Interface.GetNextDispID(uint grfdex, int id, int* pid) 148return HRESULT.E_POINTER; 156protected virtual HRESULT GetNextDispID(uint grfdex, int id, int* pid) => HRESULT.E_NOTIMPL; 158HRESULT IDispatchEx.Interface.InvokeEx( 169return HRESULT.E_INVALIDARG; 172HRESULT hr = MapDotNetHRESULTs(Invoke( 181if (hr != HRESULT.DISP_E_MEMBERNOTFOUND) 191protected virtual HRESULT Invoke( 199=> HRESULT.DISP_E_MEMBERNOTFOUND; 201HRESULT IDispatchEx.Interface.GetMemberProperties(int id, uint grfdexFetch, FDEX_PROP_FLAGS* pgrfdex) 205return HRESULT.E_POINTER; 210return HRESULT.E_INVALIDARG; 215HRESULT hr = GetMemberProperties(id, out FDEX_PROP_FLAGS properties); 229protected virtual HRESULT GetMemberProperties(int dispId, out FDEX_PROP_FLAGS properties) 232return HRESULT.E_NOTIMPL; 237HRESULT IDispatchEx.Interface.DeleteMemberByName(BSTR bstrName, uint grfdex) => HRESULT.E_NOTIMPL; 238HRESULT IDispatchEx.Interface.DeleteMemberByDispID(int id) => HRESULT.E_NOTIMPL; 240HRESULT IDispatchEx.Interface.GetNameSpaceParent(IUnknown** ppunk) 244return HRESULT.E_POINTER; 248return HRESULT.E_NOTIMPL; 260private static HRESULT MapDotNetHRESULTs(HRESULT hr) 264if (hr == HRESULT.COR_E_OVERFLOW) 266return HRESULT.DISP_E_OVERFLOW; 268else if (hr == HRESULT.COR_E_INVALIDOLEVARIANTTYPE) 270return HRESULT.DISP_E_BADVARTYPE; 272else if (hr == HRESULT.COR_E_ARGUMENT) 274return HRESULT.E_INVALIDARG; 276else if (hr == HRESULT.COR_E_SAFEARRAYTYPEMISMATCH) 278return HRESULT.DISP_E_TYPEMISMATCH; 280else if (hr == HRESULT.COR_E_MISSINGMEMBER || hr == HRESULT.COR_E_MISSINGMETHOD) 282return HRESULT.DISP_E_MEMBERNOTFOUND;
Windows\Win32\System\Com\StructuredStorage\PropertyBagExtensions.cs (2)
11internal static unsafe HRESULT Read(this IPropertyBag.Interface @this, string pszPropName, VARIANT* pVar, IErrorLog* pErrorLog) 20internal static unsafe HRESULT Write(this IPropertyBag.Interface @this, string pszPropName, VARIANT* pVar)
Windows\Win32\System\Ole\ClassPropertyDispatchAdapter.cs (8)
145public HRESULT Invoke( 154HRESULT hr = prior.Invoke(dispId, lcid, flags, parameters, result); 163return HRESULT.DISP_E_MEMBERNOTFOUND; 168return HRESULT.COR_E_OBJECTDISPOSED; 200return HRESULT.DISP_E_BADPARAMCOUNT; 216return (HRESULT)ex.HResult; 240return (HRESULT)ex.HResult; 244return HRESULT.S_OK;
System.Windows.Forms.Primitives.Tests (248)
Interop\Oleaut32\DECIMALTests.cs (3)
33HRESULT hr = VarDecFromR8(value, out DECIMAL dec); 34Assert.Equal(HRESULT.S_OK, hr); 39private static extern HRESULT VarDecFromR8(double dblIn, out DECIMAL pdecOut);
Interop\Oleaut32\ITypeInfoTests.cs (8)
25HRESULT hr = typeInfo.Value->AddressOfMember(6, INVOKEKIND.INVOKE_FUNC, &pvObj); 26Assert.Equal(HRESULT.TYPE_E_BADMODULEKIND, hr); 39HRESULT hr = typeInfo.Value->CreateInstance(null, IID.Get<IPictureDisp>(), &pvObj); 40Assert.Equal(HRESULT.TYPE_E_BADMODULEKIND, hr); 72HRESULT hr = typeInfo.Value->GetDllEntry(6, INVOKEKIND.INVOKE_FUNC, &dllName, &name, &wOrdinal); 73Assert.Equal(HRESULT.TYPE_E_BADMODULEKIND, hr); 333HRESULT hr = typeInfo.Value->Invoke( 342hr.Should().Be(HRESULT.DISP_E_MEMBERNOTFOUND);
Interop\Oleaut32\SAFEARRAYTests.cs (49)
74HRESULT hr = PInvokeCore.SafeArrayGetVartype(psa, &arrayVt); 75Assert.Equal(HRESULT.S_OK, hr); 80HRESULT hr = PInvokeCore.SafeArrayDestroy(psa); 81Assert.Equal(HRESULT.S_OK, hr); 110HRESULT hr = PInvokeCore.SafeArrayGetVartype(psa, &arrayVt); 111Assert.Equal(HRESULT.S_OK, hr); 116HRESULT hr = PInvokeCore.SafeArrayDestroy(psa); 117Assert.Equal(HRESULT.S_OK, hr); 125public HRESULT RecordInit(void* pvNew) => throw new NotImplementedException(); 127public HRESULT RecordClear(void* pvExisting) => throw new NotImplementedException(); 129public HRESULT RecordCopy(void* pvExisting, void* pvNew) => throw new NotImplementedException(); 131public Func<(Guid, HRESULT)> GetGuidAction { get; set; } 133public HRESULT GetGuid(Guid* pguid) 135(Guid guid, HRESULT hr) = GetGuidAction(); 140public HRESULT GetName(BSTR* pbstrName) => throw new NotImplementedException(); 142public HRESULT GetSize(uint* pcbSize) 145return HRESULT.S_OK; 148public HRESULT GetTypeInfo(ITypeInfo** ppTypeInfo) => throw new NotImplementedException(); 150public HRESULT GetField(void* pvData, PCWSTR szFieldName, VARIANT* pvarField) => throw new NotImplementedException(); 152public HRESULT GetFieldNoCopy(void* pvData, PCWSTR szFieldName, VARIANT* pvarField, void** ppvDataCArray) => throw new NotImplementedException(); 154public HRESULT PutField(uint wFlags, void* pvData, PCWSTR szFieldName, VARIANT* pvarField) => throw new NotImplementedException(); 156public HRESULT PutFieldNoCopy(uint wFlags, void* pvData, PCWSTR szFieldName, VARIANT* pvarField) => throw new NotImplementedException(); 158public HRESULT GetFieldNames(uint* pcNames, BSTR* rgBstrNames) => throw new NotImplementedException(); 164public HRESULT RecordCreateCopy(void* pvSource, void** ppvDest) => throw new NotImplementedException(); 166public HRESULT RecordDestroy(void* pvRecord) => throw new NotImplementedException(); 201HRESULT hr = PInvokeCore.SafeArrayGetVartype(psa, &arrayVt); 202Assert.Equal(HRESULT.S_OK, hr); 207HRESULT hr = PInvokeCore.SafeArrayDestroy(psa); 208Assert.Equal(HRESULT.S_OK, hr); 233HRESULT hr = PInvokeCore.SafeArrayPutElement(psa, pIndices1, &value1); 234Assert.Equal(HRESULT.S_OK, hr); 238Assert.Equal(HRESULT.S_OK, hr); 242Assert.Equal(HRESULT.S_OK, hr); 246Assert.Equal(HRESULT.S_OK, hr); 280HRESULT hr = PInvokeCore.SafeArrayPutElement(psa, pIndices1, &value1); 281Assert.Equal(HRESULT.S_OK, hr); 285Assert.Equal(HRESULT.S_OK, hr); 289Assert.Equal(HRESULT.S_OK, hr); 293Assert.Equal(HRESULT.S_OK, hr); 334HRESULT hr = PInvokeCore.SafeArrayPutElement(psa, pIndices1, &value1); 335Assert.Equal(HRESULT.S_OK, hr); 339Assert.Equal(HRESULT.S_OK, hr); 343Assert.Equal(HRESULT.S_OK, hr); 347Assert.Equal(HRESULT.S_OK, hr); 388HRESULT hr = PInvokeCore.SafeArrayPutElement(psa, pIndices1, &value1); 389Assert.Equal(HRESULT.S_OK, hr); 393Assert.Equal(HRESULT.S_OK, hr); 397Assert.Equal(HRESULT.S_OK, hr); 401Assert.Equal(HRESULT.S_OK, hr);
Interop\Oleaut32\VARIANTTests.cs (116)
722HRESULT hr = InitPropVariantFromFileTime(&ft, &variant); 723Assert.Equal(HRESULT.S_OK, hr); 754HRESULT hr = InitVariantFromFileTime(&ft, &variant); 755Assert.Equal(HRESULT.S_OK, hr); 1115HRESULT hr = InitPropVariantFromCLSID(&guid, &variant); 1116Assert.Equal(HRESULT.S_OK, hr); 1212HRESULT hr = InitPropVariantFromBuffer(pResult, (uint)result.Length, &variant); 1213Assert.Equal(HRESULT.S_OK, hr); 1247HRESULT hr = InitPropVariantFromBuffer(pResult, (uint)result.Length, &variant); 1248Assert.Equal(HRESULT.S_OK, hr); 1275HRESULT hr = InitPropVariantFromInt16Vector(pResult, (uint)result.Length, &variant); 1276Assert.Equal(HRESULT.S_OK, hr); 1303HRESULT hr = InitPropVariantFromUInt16Vector(pResult, (uint)result.Length, &variant); 1304Assert.Equal(HRESULT.S_OK, hr); 1332HRESULT hr = InitPropVariantFromBooleanVector(pResult, (uint)boolResult.Length, &variant); 1333Assert.Equal(HRESULT.S_OK, hr); 1360HRESULT hr = InitPropVariantFromInt32Vector(pResult, (uint)result.Length, &variant); 1361Assert.Equal(HRESULT.S_OK, hr); 1388HRESULT hr = InitPropVariantFromUInt32Vector(pResult, (uint)result.Length, &variant); 1389Assert.Equal(HRESULT.S_OK, hr); 1418HRESULT hr = InitPropVariantFromInt32Vector(pResult, (uint)result.Length, &variant); 1419Assert.Equal(HRESULT.S_OK, hr); 1455HRESULT hr = InitPropVariantFromUInt32Vector(pResult, (uint)result.Length, &variant); 1456Assert.Equal(HRESULT.S_OK, hr); 1490HRESULT hr = InitPropVariantFromInt64Vector(pResult, (uint)result.Length, &variant); 1491Assert.Equal(HRESULT.S_OK, hr); 1518HRESULT hr = InitPropVariantFromUInt64Vector(pResult, (uint)result.Length, &variant); 1519Assert.Equal(HRESULT.S_OK, hr); 1548HRESULT hr = InitPropVariantFromInt32Vector(pResult, (uint)result.Length, &variant); 1549Assert.Equal(HRESULT.S_OK, hr); 1583HRESULT hr = InitPropVariantFromDoubleVector(pResult, (uint)result.Length, &variant); 1584Assert.Equal(HRESULT.S_OK, hr); 1613HRESULT hr = InitPropVariantFromUInt32Vector(pResult, (uint)result.Length, &variant); 1614Assert.Equal(HRESULT.S_OK, hr); 1650HRESULT hr = InitPropVariantFromInt64Vector(pResult, (uint)result.Length, &variant); 1651Assert.Equal(HRESULT.S_OK, hr); 1691HRESULT hr = InitPropVariantFromDoubleVector(pResult, (uint)result.Length, &variant); 1692Assert.Equal(HRESULT.S_OK, hr); 1731HRESULT hr = InitPropVariantFromFileTimeVector(pResult, (uint)fileTimeResult.Length, &variant); 1732Assert.Equal(HRESULT.S_OK, hr); 1761HRESULT hr = InitPropVariantFromBuffer(pResult, (uint)(result.Length * sizeof(Guid)), &variant); 1762Assert.Equal(HRESULT.S_OK, hr); 1797HRESULT hr = InitPropVariantFromInt32Vector(pResult, (uint)result.Length, &variant); 1798Assert.Equal(HRESULT.S_OK, hr); 1803HRESULT hr = InitPropVariantFromInt64Vector(pResult, (uint)result.Length, &variant); 1804Assert.Equal(HRESULT.S_OK, hr); 1839HRESULT hr = InitPropVariantFromInt32Vector(pResult, (uint)result.Length, &variant); 1840Assert.Equal(HRESULT.S_OK, hr); 1845HRESULT hr = InitPropVariantFromInt64Vector(pResult, (uint)result.Length, &variant); 1846Assert.Equal(HRESULT.S_OK, hr); 1881HRESULT hr = InitPropVariantFromInt32Vector(pResult, (uint)result.Length, &variant); 1882Assert.Equal(HRESULT.S_OK, hr); 1887HRESULT hr = InitPropVariantFromInt64Vector(pResult, (uint)result.Length, &variant); 1888Assert.Equal(HRESULT.S_OK, hr); 1923HRESULT hr = InitPropVariantFromBuffer(pResult, (uint)(result.Length * sizeof(VARIANT)), &variant); 1924Assert.Equal(HRESULT.S_OK, hr); 5424HRESULT hr = PInvokeCore.SafeArrayGetVartype(psa, &arrayVt); 5425Assert.Equal(HRESULT.S_OK, hr); 5438Assert.Equal(HRESULT.S_OK, hr); 5463HRESULT hr = PInvokeCore.SafeArrayGetVartype(psa, &arrayVt); 5464Assert.Equal(HRESULT.S_OK, hr); 5481Assert.Equal(HRESULT.S_OK, hr); 5496GetGuidAction = () => (typeof(int).GUID, HRESULT.S_OK) 5541GetGuidAction = () => (Guid.Empty, HRESULT.DISP_E_DIVBYZERO) 5559GetGuidAction = () => (Guid.Empty, HRESULT.DISP_E_DIVBYZERO) 5583GetGuidAction = () => (guid, HRESULT.S_OK) 5599GetGuidAction = () => (guid, HRESULT.S_OK) 5613GetGuidAction = () => (typeof(int).GUID, HRESULT.S_OK) 5653GetGuidAction = () => (Guid.Empty, HRESULT.DISP_E_DIVBYZERO) 5679GetGuidAction = () => (guid, HRESULT.S_OK) 5692public HRESULT RecordInit(void* pvNew) => HRESULT.E_NOTIMPL; 5694public HRESULT RecordClear(void* pvExisting) => HRESULT.E_NOTIMPL; 5696public HRESULT RecordCopy(void* pvExisting, void* pvNew) => HRESULT.E_NOTIMPL; 5698public Func<(Guid, HRESULT)> GetGuidAction { get; set; } 5700public HRESULT GetGuid(Guid* pguid) 5702(Guid guid, HRESULT hr) = GetGuidAction(); 5707public HRESULT GetName(BSTR* pbstrName) => HRESULT.E_NOTIMPL; 5709public HRESULT GetSize(uint* pcbSize) 5712return HRESULT.S_OK; 5715public HRESULT GetTypeInfo(ITypeInfo** ppTypeInfo) => HRESULT.E_NOTIMPL; 5717public HRESULT GetField(void* pvData, PCWSTR szFieldName, VARIANT* pvarField) => HRESULT.E_NOTIMPL; 5719public HRESULT GetFieldNoCopy(void* pvData, PCWSTR szFieldName, VARIANT* pvarField, void** ppvDataCArray) => HRESULT.E_NOTIMPL; 5721public HRESULT PutField(uint wFlags, void* pvData, PCWSTR szFieldName, VARIANT* pvarField) => HRESULT.E_NOTIMPL; 5723public HRESULT PutFieldNoCopy(uint wFlags, void* pvData, PCWSTR szFieldName, VARIANT* pvarField) => HRESULT.E_NOTIMPL; 5725public HRESULT GetFieldNames(uint* pcNames, BSTR* rgBstrNames) => HRESULT.E_NOTIMPL; 5731public HRESULT RecordCreateCopy(void* pvSource, void** ppvDest) => HRESULT.E_NOTIMPL; 5733public HRESULT RecordDestroy(void* pvRecord) => HRESULT.E_NOTIMPL; 5748HRESULT hr = PInvokeCore.SafeArrayGetVartype(psa, &arrayVt); 5749Assert.Equal(HRESULT.S_OK, hr); 5822private static extern unsafe HRESULT InitPropVariantFromCLSID(Guid* clsid, VARIANT* ppropvar); 5825private static extern unsafe HRESULT InitPropVariantFromFileTime(FILETIME* pftIn, VARIANT* ppropvar); 5828private static extern unsafe HRESULT InitVariantFromFileTime(FILETIME* pftIn, VARIANT* ppropvar); 5831private static extern unsafe HRESULT InitPropVariantFromBuffer(void* pv, uint cb, VARIANT* ppropvar); 5834private static extern unsafe HRESULT InitPropVariantFromInt16Vector(void* pv, uint cb, VARIANT* ppropvar); 5837private static extern unsafe HRESULT InitPropVariantFromUInt16Vector(void* pv, uint cb, VARIANT* ppropvar); 5840private static extern unsafe HRESULT InitPropVariantFromBooleanVector(void* pv, uint cb, VARIANT* ppropvar); 5843private static extern unsafe HRESULT InitPropVariantFromInt32Vector(void* pv, uint cb, VARIANT* ppropvar); 5846private static extern unsafe HRESULT InitPropVariantFromUInt32Vector(void* pv, uint cb, VARIANT* ppropvar); 5849private static extern unsafe HRESULT InitPropVariantFromInt64Vector(void* pv, uint cb, VARIANT* ppropvar); 5852private static extern unsafe HRESULT InitPropVariantFromUInt64Vector(void* pv, uint cb, VARIANT* ppropvar); 5855private static extern unsafe HRESULT InitPropVariantFromDoubleVector(void* pv, uint cb, VARIANT* ppropvar); 5858private static extern unsafe HRESULT InitPropVariantFromFileTimeVector(void* pv, uint cb, VARIANT* ppropvar); 5861private static extern HRESULT VarDecFromI8(long i64In, out DECIMAL pdecOut); 5864private static extern HRESULT VarDecFromR8(double dblIn, out DECIMAL pdecOut);
Interop\Shell32\ShellItemTests.cs (2)
16HRESULT result = PInvoke.SHParseDisplayName(path, pbc: null, out ITEMIDLIST* ppidl, 0, &rgflnOut); 19Assert.Equal(HRESULT.S_OK, result);
System\Windows\Forms\Automation\UiaTextRangeTests.cs (7)
1333HRESULT IRawElementProviderSimple.Interface.get_ProviderOptions(ProviderOptions* pRetVal) => throw new NotImplementedException(); 1335public HRESULT GetPatternProvider(UIA_PATTERN_ID patternId, IUnknown** pRetVal) => HRESULT.E_NOTIMPL; 1336public HRESULT GetPropertyValue(UIA_PROPERTY_ID propertyId, VARIANT* pRetVal) 1341return HRESULT.S_OK; 1344return HRESULT.E_NOTIMPL; 1347HRESULT IRawElementProviderSimple.Interface.get_HostRawElementProvider(IRawElementProviderSimple** pRetVal) => throw new NotImplementedException();
Windows\Win32\GlobalInterfaceTableTests.cs (12)
14using var stream = ComHelpers.TryGetComScope<IStream>(new MyStream(), out HRESULT hr); 39public unsafe HRESULT Read(void* pv, uint cb, [Optional] uint* pcbRead) => throw new NotImplementedException(); 40public unsafe HRESULT Write(void* pv, uint cb, [Optional] uint* pcbWritten) => throw new NotImplementedException(); 41public unsafe HRESULT Seek(long dlibMove, SeekOrigin dwOrigin, [Optional] ulong* plibNewPosition) => throw new NotImplementedException(); 42public HRESULT SetSize(ulong libNewSize) => throw new NotImplementedException(); 43public unsafe HRESULT CopyTo(IStream* pstm, ulong cb, [Optional] ulong* pcbRead, [Optional] ulong* pcbWritten) => throw new NotImplementedException(); 44public HRESULT Commit(uint grfCommitFlags) => throw new NotImplementedException(); 45public HRESULT Revert() => throw new NotImplementedException(); 46public HRESULT LockRegion(ulong libOffset, ulong cb, uint dwLockType) => throw new NotImplementedException(); 47public HRESULT UnlockRegion(ulong libOffset, ulong cb, uint dwLockType) => throw new NotImplementedException(); 48public unsafe HRESULT Stat(STATSTG* pstatstg, uint grfStatFlag) => throw new NotImplementedException(); 49public unsafe HRESULT Clone(IStream** ppstm) => throw new NotImplementedException();
Windows\Win32\System\Com\ComSafeArrayScopeTests.cs (4)
38public HRESULT get_ProviderOptions(ProviderOptions* pRetVal) => throw new NotImplementedException(); 39public HRESULT GetPatternProvider(UIA_PATTERN_ID patternId, IUnknown** pRetVal) => throw new NotImplementedException(); 40public HRESULT GetPropertyValue(UIA_PROPERTY_ID propertyId, VARIANT* pRetVal) => throw new NotImplementedException(); 41public HRESULT get_HostRawElementProvider(IRawElementProviderSimple** pRetVal) => throw new NotImplementedException();
Windows\Win32\System\Com\ComScopeTests.cs (1)
38internal delegate* unmanaged[Stdcall]<ITestObject*, Guid*, void**, HRESULT> QueryInterface_1;
Windows\Win32\System\Com\IDispatchTests.cs (2)
68HRESULT hr = ((IDispatch*)picture.Value)->TryGetProperty( 72Assert.Equal(HRESULT.S_OK, hr);
Windows\Win32\System\Ole\ClassPropertyDispatchAdapterTests.cs (1)
32HRESULT hr = adapter.Invoke(result, 0, Com.DISPATCH_FLAGS.DISPATCH_PROPERTYPUT, &dispParams, null);
Windows\Win32\UI\Accessibility\AccessibleDispatchTests.cs (43)
18dispatch.Value->GetIDOfName("accChildCount", out int dispId).Should().Be(HRESULT.S_OK); 27HRESULT IAccessible.Interface.get_accParent(IDispatch** ppdispParent) => HRESULT.E_NOTIMPL; 28HRESULT IAccessible.Interface.get_accChildCount(int* pcountChildren) 31return HRESULT.S_OK; 34HRESULT IAccessible.Interface.get_accChild(VARIANT varChild, IDispatch** ppdispChild) => HRESULT.E_NOTIMPL; 35HRESULT IAccessible.Interface.get_accName(VARIANT varChild, BSTR* pszName) => HRESULT.E_NOTIMPL; 36HRESULT IAccessible.Interface.get_accValue(VARIANT varChild, BSTR* pszValue) => HRESULT.E_NOTIMPL; 37HRESULT IAccessible.Interface.get_accDescription(VARIANT varChild, BSTR* pszDescription) => HRESULT.E_NOTIMPL; 38HRESULT IAccessible.Interface.get_accRole(VARIANT varChild, VARIANT* pvarRole) => HRESULT.E_NOTIMPL; 39HRESULT IAccessible.Interface.get_accState(VARIANT varChild, VARIANT* pvarState) => HRESULT.E_NOTIMPL; 40HRESULT IAccessible.Interface.get_accHelp(VARIANT varChild, BSTR* pszHelp) => HRESULT.E_NOTIMPL; 41HRESULT IAccessible.Interface.get_accHelpTopic(BSTR* pszHelpFile, VARIANT varChild, int* pidTopic) => HRESULT.E_NOTIMPL; 42HRESULT IAccessible.Interface.get_accKeyboardShortcut(VARIANT varChild, BSTR* pszKeyboardShortcut) => HRESULT.E_NOTIMPL; 43HRESULT IAccessible.Interface.get_accFocus(VARIANT* pvarChild) => HRESULT.E_NOTIMPL; 44HRESULT IAccessible.Interface.get_accSelection(VARIANT* pvarChildren) => HRESULT.E_NOTIMPL; 45HRESULT IAccessible.Interface.get_accDefaultAction(VARIANT varChild, BSTR* pszDefaultAction) => HRESULT.E_NOTIMPL; 46HRESULT IAccessible.Interface.accSelect(int flagsSelect, VARIANT varChild) => HRESULT.E_NOTIMPL; 47HRESULT IAccessible.Interface.accLocation(int* pxLeft, int* pyTop, int* pcxWidth, int* pcyHeight, VARIANT varChild) => HRESULT.E_NOTIMPL; 48HRESULT IAccessible.Interface.accNavigate(int navDir, VARIANT varStart, VARIANT* pvarEndUpAt) => HRESULT.E_NOTIMPL; 49HRESULT IAccessible.Interface.accHitTest(int xLeft, int yTop, VARIANT* pvarChild) => HRESULT.E_NOTIMPL; 50HRESULT IAccessible.Interface.accDoDefaultAction(VARIANT varChild) => HRESULT.E_NOTIMPL; 51HRESULT IAccessible.Interface.put_accName(VARIANT varChild, BSTR szName) => HRESULT.E_NOTIMPL; 52HRESULT IAccessible.Interface.put_accValue(VARIANT varChild, BSTR szValue) => HRESULT.E_NOTIMPL;
System.Windows.Forms.Primitives.TestUtilities (8)
Windows\Win32\System\Com\ComClassFactory.cs (4)
43((delegate* unmanaged<Guid*, Guid*, void**, HRESULT>)proc.Value)( 49internal HRESULT CreateInstance(out IUnknown* unknown) 58internal HRESULT CreateInstance(out object unknown) 60HRESULT result = CreateInstance(out IUnknown* punk);
Windows\Win32\System\Ole\DropTargetMock.cs (4)
11public virtual HRESULT DragEnter(IDataObject* pDataObj, MODIFIERKEYS_FLAGS grfKeyState, POINTL pt, DROPEFFECT* pdwEffect) 16public virtual HRESULT DragOver(MODIFIERKEYS_FLAGS grfKeyState, POINTL pt, DROPEFFECT* pdwEffect) 21public virtual HRESULT DragLeave() 26public virtual HRESULT Drop(IDataObject* pDataObj, MODIFIERKEYS_FLAGS grfKeyState, POINTL pt, DROPEFFECT* pdwEffect)
System.Windows.Forms.Tests (226)
System\Windows\Forms\AccessibleObjects\AccessibleObjectTests.cs (9)
2610internal static extern unsafe HRESULT AccessibleObjectFromPoint( 2631var result = AccessibleObjectFromPoint( 2636Assert.Equal(HRESULT.S_OK, result); 2662var result = AccessibleObjectFromPoint( 2667Assert.Equal(HRESULT.S_OK, result); 2746HRESULT result = ((UIA.IAccessibleEx.Interface)accessibleObject).GetIAccessiblePair(accessible, &idChild); 2749Assert.Equal(HRESULT.S_OK, result); 2760HRESULT result = ((UIA.IAccessibleEx.Interface)accessibleObject).GetIAccessiblePair(accessible, pidChild: null); 2762Assert.Equal(HRESULT.E_POINTER, result);
System\Windows\Forms\Application.ComponentManagerTests.cs (2)
32Assert.Equal(HRESULT.E_NOINTERFACE, manager.QueryService(null, null, null)); 36Assert.Equal(HRESULT.E_NOINTERFACE, manager.QueryService(null, null, &obj));
System\Windows\Forms\AxHost.ConnectionPointCookieTests.cs (2)
95public HRESULT OnChanged(int dispID) => throw new NotImplementedException(); 97public HRESULT OnRequestEdit(int dispID) => throw new NotImplementedException();
System\Windows\Forms\AxHost.PropertyBagStreamTests.cs (3)
20HRESULT hr = bag.Write("Integer", (VARIANT)42); // CodeQL[SM02229] : Testing legacy feature. This is a safe use of VARIANT because the data is trusted and the types are controlled and validated. 52HRESULT hr = bag.Write("Integer", (VARIANT)42); // CodeQL[SM02229] : Testing legacy feature. This is a safe use of VARIANT because the data is trusted and the types are controlled and validated. 75HRESULT hr = bag.Write(value.GetType().FullName!, variant); // CodeQL[SM02229] : Testing legacy feature. This is a safe use of VARIANT because the data is trusted and the types are controlled and validated.
System\Windows\Forms\AxHostTests.cs (2)
1594iPicture.get_CurDC(out HDC hdc).Should().Be(HRESULT.E_FAIL); 1708iPicture.get_CurDC(out HDC _).Should().Be(HRESULT.E_FAIL);
System\Windows\Forms\ClipboardTests.cs (2)
1335PInvokeCore.OleSetClipboard(iDataObject).Should().Be(HRESULT.S_OK); 1338PInvokeCore.OleGetClipboard(receivedIDataObject).Should().Be(HRESULT.S_OK);
System\Windows\Forms\ComponentModel\Com2Interop\COM2FontConverterTests.cs (5)
141HRESULT IDispatch.Interface.GetTypeInfoCount(uint* pctinfo) => throw new NotImplementedException(); 143HRESULT IDispatch.Interface.GetTypeInfo(uint iTInfo, uint lcid, ITypeInfo** ppTInfo) => throw new NotImplementedException(); 145HRESULT IDispatch.Interface.GetIDsOfNames(Guid* riid, PWSTR* rgszNames, uint cNames, uint lcid, int* rgDispId) => throw new NotImplementedException(); 147HRESULT IDispatch.Interface.Invoke( 158return HRESULT.S_OK;
System\Windows\Forms\ComponentModel\Com2Interop\COM2PictureConverterTests.cs (34)
43public override unsafe HRESULT get_Handle(OLE_HANDLE* pHandle) 47return HRESULT.E_POINTER; 51return HRESULT.S_OK; 54public override unsafe HRESULT get_Type(PICTYPE* pType) 58return HRESULT.E_POINTER; 62return HRESULT.S_OK; 193public virtual HRESULT get_Handle(OLE_HANDLE* pHandle) => HRESULT.S_OK; 194public virtual HRESULT get_Type(PICTYPE* pType) => HRESULT.S_OK; 195public HRESULT get_Width(int* pWidth) => HRESULT.S_OK; 196public HRESULT get_Height(int* pHeight) => HRESULT.S_OK; 197public HRESULT get_CurDC(HDC* phDC) => HRESULT.S_OK; 198public HRESULT get_KeepOriginalFormat(BOOL* pKeep) => HRESULT.S_OK; 199public HRESULT put_KeepOriginalFormat(BOOL keep) => HRESULT.S_OK; 200public HRESULT get_Attributes(uint* pDwAttr) => HRESULT.S_OK; 201public HRESULT get_hPal(OLE_HANDLE* phPal) => HRESULT.S_OK; 202public HRESULT Render(HDC hDC, int x, int y, int cx, int cy, int xSrc, int ySrc, int cxSrc, int cySrc, RECT* pRcWBounds) => HRESULT.S_OK; 203public HRESULT set_hPal(OLE_HANDLE hPal) => HRESULT.S_OK; 204public HRESULT SelectPicture(HDC hDCIn, HDC* phDCOut, OLE_HANDLE* phBmpOut) => HRESULT.S_OK; 205public HRESULT PictureChanged() => HRESULT.S_OK; 206public HRESULT SaveAsFile(IStream* pStream, BOOL fSaveMemCopy, int* pCbSize) => HRESULT.S_OK;
System\Windows\Forms\ComponentModel\Com2Interop\ComNativeDescriptorTests.cs (65)
96HRESULT hr = PInvokeCore.CoCreateInstance( 102Assert.Equal(HRESULT.S_OK, hr); 114HRESULT hr = PInvokeCore.CoCreateInstance( 121Assert.Equal(HRESULT.S_OK, hr); 163HRESULT hr = PInvoke.CreateStdAccessibleObject( 243HRESULT IProvideMultipleClassInfo.Interface.GetClassInfo(ITypeInfo** ppTI) => HRESULT.E_NOTIMPL; 245HRESULT IProvideMultipleClassInfo.Interface.GetGUID(uint dwGuidKind, Guid* pGUID) => HRESULT.E_NOTIMPL; 247HRESULT IProvideMultipleClassInfo.Interface.GetMultiTypeInfoCount(uint* pcti) 251return HRESULT.E_POINTER; 255return HRESULT.S_OK; 258HRESULT IProvideMultipleClassInfo.Interface.GetInfoOfIndex( 269return HRESULT.E_POINTER; 274return HRESULT.E_NOTIMPL; 280HRESULT IAccessible.Interface.get_accChildCount(int* pcountChildren) 284return HRESULT.E_POINTER; 288return HRESULT.S_OK; 291HRESULT IAccessible.Interface.get_accFocus(VARIANT* pvarChild) 295return HRESULT.E_POINTER; 299return HRESULT.S_OK; 302HRESULT IProvideClassInfo2.Interface.GetClassInfo(ITypeInfo** ppTI) => HRESULT.E_NOTIMPL; 303HRESULT IProvideClassInfo2.Interface.GetGUID(uint dwGuidKind, Guid* pGUID) => HRESULT.E_NOTIMPL; 304HRESULT IProvideClassInfo.Interface.GetClassInfo(ITypeInfo** ppTI) => HRESULT.E_NOTIMPL; 305HRESULT IAccessible.Interface.get_accParent(IDispatch** ppdispParent) => HRESULT.E_NOTIMPL; 306HRESULT IAccessible.Interface.get_accChild(VARIANT varChild, IDispatch** ppdispChild) => HRESULT.E_NOTIMPL; 307HRESULT IAccessible.Interface.get_accName(VARIANT varChild, BSTR* pszName) => HRESULT.E_NOTIMPL; 308HRESULT IAccessible.Interface.get_accValue(VARIANT varChild, BSTR* pszValue) => HRESULT.E_NOTIMPL; 309HRESULT IAccessible.Interface.get_accDescription(VARIANT varChild, BSTR* pszDescription) => HRESULT.E_NOTIMPL; 310HRESULT IAccessible.Interface.get_accRole(VARIANT varChild, VARIANT* pvarRole) => HRESULT.E_NOTIMPL; 311HRESULT IAccessible.Interface.get_accState(VARIANT varChild, VARIANT* pvarState) => HRESULT.E_NOTIMPL; 312HRESULT IAccessible.Interface.get_accHelp(VARIANT varChild, BSTR* pszHelp) => HRESULT.E_NOTIMPL; 313HRESULT IAccessible.Interface.get_accHelpTopic(BSTR* pszHelpFile, VARIANT varChild, int* pidTopic) => HRESULT.E_NOTIMPL; 314HRESULT IAccessible.Interface.get_accKeyboardShortcut(VARIANT varChild, BSTR* pszKeyboardShortcut) => HRESULT.E_NOTIMPL; 315HRESULT IAccessible.Interface.get_accSelection(VARIANT* pvarChildren) => HRESULT.E_NOTIMPL; 316HRESULT IAccessible.Interface.get_accDefaultAction(VARIANT varChild, BSTR* pszDefaultAction) => HRESULT.E_NOTIMPL; 317HRESULT IAccessible.Interface.accSelect(int flagsSelect, VARIANT varChild) => HRESULT.E_NOTIMPL; 318HRESULT IAccessible.Interface.accLocation(int* pxLeft, int* pyTop, int* pcxWidth, int* pcyHeight, VARIANT varChild) => HRESULT.E_NOTIMPL; 319HRESULT IAccessible.Interface.accNavigate(int navDir, VARIANT varStart, VARIANT* pvarEndUpAt) => HRESULT.E_NOTIMPL; 320HRESULT IAccessible.Interface.accHitTest(int xLeft, int yTop, VARIANT* pvarChild) => HRESULT.E_NOTIMPL; 321HRESULT IAccessible.Interface.accDoDefaultAction(VARIANT varChild) => HRESULT.E_NOTIMPL; 322HRESULT IAccessible.Interface.put_accName(VARIANT varChild, BSTR szName) => HRESULT.E_NOTIMPL; 323HRESULT IAccessible.Interface.put_accValue(VARIANT varChild, BSTR szValue) => HRESULT.E_NOTIMPL;
System\Windows\Forms\Control.ActiveXImplTests.cs (2)
23HRESULT hr = persistStream.Save(istream.Value, fClearDirty: BOOL.FALSE); 65HRESULT hr = persistStream.Save(istream.Value, fClearDirty: BOOL.FALSE);
System\Windows\Forms\ControlTests.Properties.cs (1)
255Assert.Equal(HRESULT.S_OK, PInvokeCore.RegisterDragDrop(control, dropTarget));
System\Windows\Forms\DataObjectTests.cs (89)
1942return (int)HRESULT.DV_E_FORMATETC; 1976((HRESULT)comDataObject.DAdvise(ref formatetc, advf, adviseSink, out int connection)).Should().Be(HRESULT.E_NOTIMPL); 2035((HRESULT)comDataObject.EnumDAdvise(out IEnumSTATDATA enumAdvise)).Should().Be(HRESULT.OLE_E_ADVISENOTSUPPORTED); 2092enumerator.Next(celt, result, fetched).Should().Be((int)HRESULT.S_FALSE); 2096enumerator.Next(celt, null, null).Should().Be((int)HRESULT.S_FALSE); 2098enumerator.Reset().Should().Be((int)HRESULT.S_OK); 2148((HRESULT)enumerator.Next(0, result, fetched)).Should().Be(HRESULT.S_FALSE); 2151((HRESULT)enumerator.Next(0, null, null)).Should().Be(HRESULT.S_FALSE); 2154((HRESULT)enumerator.Next(-1, result, fetched)).Should().Be(HRESULT.S_FALSE); 2157((HRESULT)enumerator.Next(-1, null, null)).Should().Be(HRESULT.S_FALSE); 2163((HRESULT)enumerator.Next(i + 1, result, fetched)).Should().Be(HRESULT.S_OK); 2173((HRESULT)enumerator.Next(i + 1, result, fetched)).Should().Be(HRESULT.S_OK); 2183((HRESULT)enumerator.Next(1, null, null)).Should().Be(HRESULT.S_FALSE); 2184((HRESULT)enumerator.Next(1, null, null)).Should().Be(HRESULT.S_FALSE); 2187((HRESULT)enumerator.Reset()).Should().Be(HRESULT.S_OK); 2209((HRESULT)enumerator.Next(celt, result, fetched)).Should().Be(HRESULT.S_FALSE); 2213((HRESULT)enumerator.Next(celt, null, null)).Should().Be(HRESULT.S_FALSE); 2215((HRESULT)enumerator.Reset()).Should().Be(HRESULT.S_OK); 2231((HRESULT)enumerator.Skip(celt)).Should().Be(HRESULT.S_FALSE); 2232((HRESULT)enumerator.Next(1, result, fetched)).Should().Be(HRESULT.S_FALSE); 2235((HRESULT)enumerator.Skip(-1)).Should().Be(HRESULT.S_OK); 2255((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_OK); 2256((HRESULT)enumerator.Next(1, result, fetched)).Should().Be(HRESULT.S_OK); 2265((HRESULT)enumerator.Skip(-2)).Should().Be(HRESULT.S_OK); 2266((HRESULT)enumerator.Next(1, result, fetched)).Should().Be(HRESULT.S_OK); 2275((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_OK); 2276((HRESULT)enumerator.Next(1, result, fetched)).Should().Be(HRESULT.S_OK); 2284((HRESULT)enumerator.Skip(0)).Should().Be(HRESULT.S_FALSE); 2285((HRESULT)enumerator.Skip(1)).Should().Be(HRESULT.S_FALSE); 2288((HRESULT)enumerator.Skip(-4)).Should().Be(HRESULT.S_OK); 2308((HRESULT)enumerator.Next(celt, result, fetched)).Should().Be(HRESULT.S_FALSE); 2312((HRESULT)enumerator.Next(celt, null, null)).Should().Be(HRESULT.S_FALSE); 2314((HRESULT)enumerator.Reset()).Should().Be(HRESULT.S_OK); 2338((HRESULT)enumerator.Next(0, result, fetched)).Should().Be(HRESULT.S_FALSE); 2341((HRESULT)enumerator.Next(0, null, null)).Should().Be(HRESULT.S_FALSE); 2344((HRESULT)enumerator.Next(-1, result, fetched)).Should().Be(HRESULT.S_FALSE); 2347((HRESULT)enumerator.Next(-1, null, null)).Should().Be(HRESULT.S_FALSE); 2353((HRESULT)enumerator.Next(i + 1, result, fetched)).Should().Be(HRESULT.S_OK); 2363((HRESULT)enumerator.Next(i + 1, result, fetched)).Should().Be(HRESULT.S_OK); 2373((HRESULT)enumerator.Next(1, null, null)).Should().Be(HRESULT.S_FALSE); 2374((HRESULT)enumerator.Next(1, null, null)).Should().Be(HRESULT.S_FALSE); 2377((HRESULT)enumerator.Reset()).Should().Be(HRESULT.S_OK); 2400((HRESULT)enumerator.Next(celt, result, fetched)).Should().Be(HRESULT.S_FALSE); 2404((HRESULT)enumerator.Next(celt, null, null)).Should().Be(HRESULT.S_FALSE); 2406((HRESULT)enumerator.Reset()).Should().Be(HRESULT.S_OK); 2718.Where(e => e.HResult == HRESULT.DV_E_TYMED); 2744.Where(e => e.HResult == HRESULT.DV_E_FORMATETC); 2924HRESULT result = comDataObject.Value->GetData(formatetc, out Com.STGMEDIUM medium);
System\Windows\Forms\HtmlDocumentTests.cs (2)
1515Assert.Equal(HRESULT.DISP_E_UNKNOWNNAME, (HRESULT)ex.HResult);
System\Windows\Forms\HtmlElementTests.cs (4)
1710Assert.Equal(HRESULT.DISP_E_UNKNOWNNAME, (HRESULT)ex.HResult); 2490Assert.Equal(HRESULT.DISP_E_UNKNOWNNAME, (HRESULT)ex.HResult);
System\Windows\Forms\HtmlToClrEventProxyTest.cs (1)
79HRESULT hr = dispatch.Value->Invoke(0, IID.NULL(), locale, DISPATCH_FLAGS.DISPATCH_METHOD, &dispParams, &result, default, default);
System\Windows\Forms\RichTextBoxTests.cs (2)
316Assert.Equal(HRESULT.DRAGDROP_E_ALREADYREGISTERED, PInvokeCore.RegisterDragDrop(control, dropTarget)); 1268Assert.Equal(HRESULT.DRAGDROP_E_ALREADYREGISTERED, PInvokeCore.RegisterDragDrop(control, dropTarget));
System\Windows\Forms\ToolStripTests.cs (1)
463Assert.Equal(HRESULT.S_OK, PInvokeCore.RegisterDragDrop(control, dropTarget));
System.Windows.Forms.UI.IntegrationTests (5)
DragDropTests.cs (4)
176Assert.Equal(HRESULT.S_OK, uiAutomation.Value->GetFocusedElement(uiAutomationElement)); 186Assert.Equal(HRESULT.S_OK, uiAutomationElement.Value->GetClickablePoint(out Point clickable, out BOOL gotClickable)); 210Assert.Equal(HRESULT.S_OK, uiAutomationElement.Value->SetFocus()); 602HRESULT hr = PInvokeCore.CoCreateInstance(
RichTextBoxTests.cs (1)
217using var textDocument = richEdit.TryQuery<ITextDocument>(out HRESULT hr);